diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-07-22 09:59:34 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-07-22 09:59:34 +0000 |
commit | 9c3c38da5575b1eca8690855a2e4894d4cab34e2 (patch) | |
tree | d01448ecbe7f0a238dad86a93fb0c8e1d50f3c45 /loginutils | |
parent | 6fd0e31e872b366231bf0c9de1a0bafdd738a78e (diff) | |
download | busybox-w32-9c3c38da5575b1eca8690855a2e4894d4cab34e2.tar.gz busybox-w32-9c3c38da5575b1eca8690855a2e4894d4cab34e2.tar.bz2 busybox-w32-9c3c38da5575b1eca8690855a2e4894d4cab34e2.zip |
Patch from Terje Kvernes adding quite a lot of missing documentation
Diffstat (limited to 'loginutils')
-rw-r--r-- | loginutils/Config.in | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/loginutils/Config.in b/loginutils/Config.in index 494ddbd6b..9b40871e6 100644 --- a/loginutils/Config.in +++ b/loginutils/Config.in | |||
@@ -55,7 +55,7 @@ config CONFIG_GETTY | |||
55 | bool "getty" | 55 | bool "getty" |
56 | default n | 56 | default n |
57 | help | 57 | help |
58 | Please submit a patch to add help text for this item. | 58 | Getty lets you log in on a tty, it is normally invoked by init. |
59 | 59 | ||
60 | config CONFIG_LOGIN | 60 | config CONFIG_LOGIN |
61 | bool "login" | 61 | bool "login" |
@@ -99,7 +99,7 @@ config CONFIG_VLOCK | |||
99 | bool "vlock" | 99 | bool "vlock" |
100 | default n | 100 | default n |
101 | help | 101 | help |
102 | Please submit a patch to add help text for this item. | 102 | Build the "vlock" applet, that allows you to lock (virtual) terminals. |
103 | 103 | ||
104 | comment "Common options for adduser, deluser, login, su" | 104 | comment "Common options for adduser, deluser, login, su" |
105 | depends on CONFIG_ADDUSER || CONFIG_DELUSER || CONFIG_LOGIN || CONFIG_SU | 105 | depends on CONFIG_ADDUSER || CONFIG_DELUSER || CONFIG_LOGIN || CONFIG_SU |
@@ -109,14 +109,28 @@ config CONFIG_FEATURE_SHADOWPASSWDS | |||
109 | default n | 109 | default n |
110 | depends on CONFIG_ADDUSER || CONFIG_DELUSER || CONFIG_LOGIN || CONFIG_SU | 110 | depends on CONFIG_ADDUSER || CONFIG_DELUSER || CONFIG_LOGIN || CONFIG_SU |
111 | help | 111 | help |
112 | Please submit a patch to add help text for this item. | 112 | Build support for shadow password in /etc/shadow. This file is only |
113 | only readable by root and thus the encrypted passwords are no longer | ||
114 | publicly readable. | ||
113 | 115 | ||
114 | config CONFIG_USE_BB_SHADOW | 116 | config CONFIG_USE_BB_SHADOW |
115 | bool " Use busybox shadow password functions" | 117 | bool " Use busybox shadow password functions" |
116 | default n | 118 | default n |
117 | depends on CONFIG_USE_BB_PWD_GRP && CONFIG_FEATURE_SHADOWPASSWDS | 119 | depends on CONFIG_USE_BB_PWD_GRP && CONFIG_FEATURE_SHADOWPASSWDS |
118 | help | 120 | help |
119 | Please submit a patch to add help text for this item. | 121 | If you leave this disabled, busybox will use the system's shadow |
122 | password handling functions. And if you are using the GNU C library | ||
123 | (glibc), you will then need to install the /etc/nsswitch.conf | ||
124 | configuration file and the required /lib/libnss_* libraries in | ||
125 | order for the shadow password functions to work. This generally | ||
126 | makes your embedded system quite a bit larger. | ||
127 | |||
128 | Enabling this option will cause busybox to directly access the | ||
129 | system's /etc/shadow file when handling shadow passwords. This | ||
130 | makes your system smaller and I will get fewer emails asking about | ||
131 | how glibc NSS works). When this option is enabled, you will not be | ||
132 | able to use PAM to access shadow passwords from remote LDAP | ||
133 | password servers and whatnot. | ||
120 | 134 | ||
121 | endmenu | 135 | endmenu |
122 | 136 | ||