aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-07-15 07:15:03 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-07-15 07:15:03 +0000
commit44fb0da401e6ab8c132e2850376c8be8a4ac1e07 (patch)
tree766fee2abe26127a8956e05ce114a21274692e59
parentd36f1b929cd493936774a94393c0803877a94876 (diff)
downloadbusybox-w32-44fb0da401e6ab8c132e2850376c8be8a4ac1e07.tar.gz
busybox-w32-44fb0da401e6ab8c132e2850376c8be8a4ac1e07.tar.bz2
busybox-w32-44fb0da401e6ab8c132e2850376c8be8a4ac1e07.zip
Document CONFIG_USE_BB_PWD_GRP
git-svn-id: svn://busybox.net/trunk/busybox@7068 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--loginutils/Config.in18
1 files changed, 17 insertions, 1 deletions
diff --git a/loginutils/Config.in b/loginutils/Config.in
index d24a40f0e..494ddbd6b 100644
--- a/loginutils/Config.in
+++ b/loginutils/Config.in
@@ -9,7 +9,23 @@ config CONFIG_USE_BB_PWD_GRP
9 bool "Use internal password and group functions rather than system functions" 9 bool "Use internal password and group functions rather than system functions"
10 default n 10 default n
11 help 11 help
12 Please submit a patch to add help text for this item. 12 If you leave this disabled, busybox will use the system's password
13 and group functions. And if you are using the GNU C library
14 (glibc), you will then need to install the /etc/nsswitch.conf
15 configuration file and the required /lib/libnss_* libraries in
16 order for the password and group functions to work. This generally
17 makes your embedded system quite a bit larger.
18
19 Enabling this option will cause busybox to directly access the
20 system's /etc/password, /etc/group files (and your system will be
21 smaller, and I will get fewer emails asking about how glibc NSS
22 works). When this option is enabled, you will not be able to use
23 PAM to access remote LDAP password servers and whatnot. And if you
24 want hostname resolution to work with glibc, you still need the
25 /lib/libnss_* libraries.
26
27 If you enable this option, it will add about 1.5k to busybox.
28
13 29
14config CONFIG_ADDGROUP 30config CONFIG_ADDGROUP
15 bool "addgroup" 31 bool "addgroup"