aboutsummaryrefslogtreecommitdiff
path: root/Config.in
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2014-08-18 19:10:45 -0500
committerRob Landley <rob@landley.net>2014-08-18 19:10:45 -0500
commita8bee46cfebcf1ae9c3749b820c483054be81295 (patch)
treed6286350a097b5a4829c0817a7228d61d5b45946 /Config.in
parent5cf4bd1922e6a87b5d0e14403e55cce2ab74bb12 (diff)
downloadtoybox-a8bee46cfebcf1ae9c3749b820c483054be81295.tar.gz
Cleanups on useradd/groupadd/groupdel, and put TOYBOX_UID_SYS and TOYBOX_UID_USR in the top level Config.
Diffstat (limited to 'Config.in')
-rw-r--r--Config.in16
1 files changed, 15 insertions, 1 deletions
diff --git a/Config.in b/Config.in
index 1bf228d2..de6a2c51 100644
--- a/Config.in
+++ b/Config.in
@@ -8,6 +8,7 @@ comment ""
menu "Toybox global settings"
+# This entry controls the multiplexer, disabled for single command builds
config TOYBOX
bool
default y
@@ -74,6 +75,19 @@ config TOYBOX_DEBUG
bool "Debugging tests"
default n
help
- Enable extra checks for debugging purposes.
+ Enable extra checks for debugging purposes. All of them catch
+ things that can only go wrong at development time, not runtime.
+
+config TOYBOX_UID_SYS
+ int "First system UID"
+ default 100
+ help
+ When commands like useradd/groupadd allocate system IDs, start here.
+
+config TOYBOX_UID_USR
+ int "First user UID"
+ default 500
+ help
+ When commands like useradd/groupadd allocate user IDs, start here.
endmenu