aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-06-15 20:14:26 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-06-15 20:14:26 +0000
commit1dba30f2def3a9d2d476a6035a4d8fc4fa2281f0 (patch)
tree2ae4c4203da8115567b6da860251e06eff770171
parentf54a088429a382b48d34529e228e4900879ce826 (diff)
downloadbusybox-w32-1dba30f2def3a9d2d476a6035a4d8fc4fa2281f0.tar.gz
busybox-w32-1dba30f2def3a9d2d476a6035a4d8fc4fa2281f0.tar.bz2
busybox-w32-1dba30f2def3a9d2d476a6035a4d8fc4fa2281f0.zip
fix config help text
-rw-r--r--loginutils/Config.in28
1 files changed, 16 insertions, 12 deletions
diff --git a/loginutils/Config.in b/loginutils/Config.in
index 89b2b1098..fcdc318c8 100644
--- a/loginutils/Config.in
+++ b/loginutils/Config.in
@@ -36,10 +36,10 @@ config USE_BB_PWD_GRP
36 (e.g. if user/group database is NOT stored in /etc/passwd etc), 36 (e.g. if user/group database is NOT stored in /etc/passwd etc),
37 you must NOT use this option. 37 you must NOT use this option.
38 38
39 If you enable this option, it will add about 1.5k to busybox. 39 If you enable this option, it will add about 1.5k.
40 40
41config USE_BB_SHADOW 41config USE_BB_SHADOW
42 bool "Use busybox shadow password functions" 42 bool "Use internal shadow password functions"
43 default y 43 default y
44 depends on USE_BB_PWD_GRP && FEATURE_SHADOWPASSWDS 44 depends on USE_BB_PWD_GRP && FEATURE_SHADOWPASSWDS
45 help 45 help
@@ -52,28 +52,32 @@ config USE_BB_SHADOW
52 52
53 Enabling this option will cause busybox to directly access the 53 Enabling this option will cause busybox to directly access the
54 system's /etc/shadow file when handling shadow passwords. This 54 system's /etc/shadow file when handling shadow passwords. This
55 makes your system smaller and I will get fewer emails asking about 55 makes your system smaller (and I will get fewer emails asking about
56 how glibc NSS works). When this option is enabled, you will not be 56 how glibc NSS works). When this option is enabled, you will not be
57 able to use PAM to access shadow passwords from remote LDAP 57 able to use PAM to access shadow passwords from remote LDAP
58 password servers and whatnot. 58 password servers and whatnot.
59 59
60config USE_BB_CRYPT 60config USE_BB_CRYPT
61 bool "Use internal DES and MD5 crypt functions rather than system functions" 61 bool "Use internal DES and MD5 crypt functions"
62 default y 62 default y
63 help 63 help
64 Busybox has internal DES and MD5 crypt functions.
65 They produce results which are identical to corresponding
66 standard C library functions.
67
64 If you leave this disabled, busybox will use the system's 68 If you leave this disabled, busybox will use the system's
65 crypt functions. Most C libraries use large (~70k) 69 crypt functions. Most C libraries use large (~70k)
66 static buffers in these functions, and also combine them 70 static buffers there, and also combine them with more general
67 with more general DES encryption/decryption routines. 71 DES encryption/decryption.
68 For busybox, having large static buffers is undesirable,
69 especially on NOMMU machines.
70 72
71 These functions produce results which are identical 73 For busybox, having large static buffers is undesirable,
72 to corresponding C library functions. 74 especially so on NOMMU machines. Busybox also doesn't
75 need DES encryption/decryption and can do with smaller code.
73 76
74 If you enable this option, it will add about 4.8k to busybox 77 If you enable this option, it will add about 4.8k of code
75 if you are building dynamically linked executable. 78 if you are building dynamically linked executable.
76 In static build, it makes executable _smaller_ by about 1.2k. 79 In static build, it makes code _smaller_ by about 1.2k,
80 and likely many kilobytes less of bss.
77 81
78config ADDGROUP 82config ADDGROUP
79 bool "addgroup" 83 bool "addgroup"