top: add -m ("memory") option
[oweals/busybox.git] / loginutils / Config.in
index 6efca7edfc5f38136068c38b2f98a49c1cf5d9d6..f6c0e2e64d6146d1907af33dd60b4eed2ca6c644 100644 (file)
@@ -97,6 +97,13 @@ config ADDGROUP
        help
          Utility for creating a new group account.
 
+config FEATURE_ADDGROUP_LONG_OPTIONS
+       bool "Enable long options"
+       default n
+       depends on ADDGROUP && LONG_OPTS
+       help
+         Support long options for the addgroup applet.
+
 config FEATURE_ADDUSER_TO_GROUP
        bool "Support for adding users to groups"
        default n
@@ -141,10 +148,26 @@ config ADDUSER
 config FEATURE_ADDUSER_LONG_OPTIONS
        bool "Enable long options"
        default n
-       depends on ADDUSER && GETOPT_LONG
+       depends on ADDUSER && LONG_OPTS
        help
          Support long options for the adduser applet.
 
+config FIRST_SYSTEM_ID
+       int "First valid system uid or gid for adduser and addgroup"
+       depends on ADDUSER || ADDGROUP
+       range 0 64900
+       default 100
+       help
+         First valid system uid or gid for adduser and addgroup
+
+config LAST_SYSTEM_ID
+       int "Last valid system uid or gid for adduser and addgroup"
+       depends on ADDUSER || ADDGROUP
+       range 0 64900
+       default 999
+       help
+         Last valid system uid or gid for adduser and addgroup
+
 config DELUSER
        bool "deluser"
        default n
@@ -242,22 +265,16 @@ config CRYPTPW
        bool "cryptpw"
        default n
        help
-         Applet for crypting a string.
+         Encrypts the given password with the crypt(3) libc function
+         using the given salt. Debian has this utility under mkpasswd
+         name. Busybox provides mkpasswd as an alias for cryptpw.
 
 config CHPASSWD
        bool "chpasswd"
        default n
        help
-         chpasswd reads a file of user name and password pairs from
-         standard input and uses this information to update a group of
-         existing users.
-
-config MKPASSWD
-       bool "mkpasswd"
-       default n
-       help
-         mkpasswd encrypts the given password with the crypt(3) libc function
-         using the given salt.
+         Reads a file of user name and password pairs from standard input
+         and uses this information to update a group of existing users.
 
 config SU
        bool "su"