aboutsummaryrefslogtreecommitdiff
path: root/loginutils/Config.src
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-06-06 04:14:28 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2010-06-06 04:14:28 +0200
commit2f32bf8be63f70125049402ba43101d8c6083d46 (patch)
tree8d01d287b58308bbb0bc6748c27357fae0a7aa12 /loginutils/Config.src
parentf0f94700610eba964441ce4a112134e03c76eb89 (diff)
downloadbusybox-w32-2f32bf8be63f70125049402ba43101d8c6083d46.tar.gz
busybox-w32-2f32bf8be63f70125049402ba43101d8c6083d46.tar.bz2
busybox-w32-2f32bf8be63f70125049402ba43101d8c6083d46.zip
remove defconfig. Now "make defconfig" simply uses defaults from Config.in
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'loginutils/Config.src')
-rw-r--r--loginutils/Config.src40
1 files changed, 20 insertions, 20 deletions
diff --git a/loginutils/Config.src b/loginutils/Config.src
index a9b5f5a9f..982d5d669 100644
--- a/loginutils/Config.src
+++ b/loginutils/Config.src
@@ -7,7 +7,7 @@ menu "Login/Password Management Utilities"
7 7
8config FEATURE_SHADOWPASSWDS 8config FEATURE_SHADOWPASSWDS
9 bool "Support for shadow passwords" 9 bool "Support for shadow passwords"
10 default n 10 default y
11 help 11 help
12 Build support for shadow password in /etc/shadow. This file is only 12 Build support for shadow password in /etc/shadow. This file is only
13 readable by root and thus the encrypted passwords are no longer 13 readable by root and thus the encrypted passwords are no longer
@@ -15,7 +15,7 @@ config FEATURE_SHADOWPASSWDS
15 15
16config USE_BB_PWD_GRP 16config USE_BB_PWD_GRP
17 bool "Use internal password and group functions rather than system functions" 17 bool "Use internal password and group functions rather than system functions"
18 default n 18 default y
19 help 19 help
20 If you leave this disabled, busybox will use the system's password 20 If you leave this disabled, busybox will use the system's password
21 and group functions. And if you are using the GNU C library 21 and group functions. And if you are using the GNU C library
@@ -81,7 +81,7 @@ config USE_BB_CRYPT
81 81
82config USE_BB_CRYPT_SHA 82config USE_BB_CRYPT_SHA
83 bool "Enable SHA256/512 crypt functions" 83 bool "Enable SHA256/512 crypt functions"
84 default n 84 default y
85 depends on USE_BB_CRYPT 85 depends on USE_BB_CRYPT
86 help 86 help
87 Enable this if you have passwords starting with "$5$" or "$6$" 87 Enable this if you have passwords starting with "$5$" or "$6$"
@@ -93,20 +93,20 @@ config USE_BB_CRYPT_SHA
93 93
94config ADDGROUP 94config ADDGROUP
95 bool "addgroup" 95 bool "addgroup"
96 default n 96 default y
97 help 97 help
98 Utility for creating a new group account. 98 Utility for creating a new group account.
99 99
100config FEATURE_ADDGROUP_LONG_OPTIONS 100config FEATURE_ADDGROUP_LONG_OPTIONS
101 bool "Enable long options" 101 bool "Enable long options"
102 default n 102 default y
103 depends on ADDGROUP && LONG_OPTS 103 depends on ADDGROUP && LONG_OPTS
104 help 104 help
105 Support long options for the addgroup applet. 105 Support long options for the addgroup applet.
106 106
107config FEATURE_ADDUSER_TO_GROUP 107config FEATURE_ADDUSER_TO_GROUP
108 bool "Support for adding users to groups" 108 bool "Support for adding users to groups"
109 default n 109 default y
110 depends on ADDGROUP 110 depends on ADDGROUP
111 help 111 help
112 If called with two non-option arguments, 112 If called with two non-option arguments,
@@ -115,13 +115,13 @@ config FEATURE_ADDUSER_TO_GROUP
115 115
116config DELGROUP 116config DELGROUP
117 bool "delgroup" 117 bool "delgroup"
118 default n 118 default y
119 help 119 help
120 Utility for deleting a group account. 120 Utility for deleting a group account.
121 121
122config FEATURE_DEL_USER_FROM_GROUP 122config FEATURE_DEL_USER_FROM_GROUP
123 bool "Support for removing users from groups" 123 bool "Support for removing users from groups"
124 default n 124 default y
125 depends on DELGROUP 125 depends on DELGROUP
126 help 126 help
127 If called with two non-option arguments, deluser 127 If called with two non-option arguments, deluser
@@ -141,13 +141,13 @@ config FEATURE_CHECK_NAMES
141 141
142config ADDUSER 142config ADDUSER
143 bool "adduser" 143 bool "adduser"
144 default n 144 default y
145 help 145 help
146 Utility for creating a new user account. 146 Utility for creating a new user account.
147 147
148config FEATURE_ADDUSER_LONG_OPTIONS 148config FEATURE_ADDUSER_LONG_OPTIONS
149 bool "Enable long options" 149 bool "Enable long options"
150 default n 150 default y
151 depends on ADDUSER && LONG_OPTS 151 depends on ADDUSER && LONG_OPTS
152 help 152 help
153 Support long options for the adduser applet. 153 Support long options for the adduser applet.
@@ -170,20 +170,20 @@ config LAST_SYSTEM_ID
170 170
171config DELUSER 171config DELUSER
172 bool "deluser" 172 bool "deluser"
173 default n 173 default y
174 help 174 help
175 Utility for deleting a user account. 175 Utility for deleting a user account.
176 176
177config GETTY 177config GETTY
178 bool "getty" 178 bool "getty"
179 default n 179 default y
180 select FEATURE_SYSLOG 180 select FEATURE_SYSLOG
181 help 181 help
182 getty lets you log in on a tty, it is normally invoked by init. 182 getty lets you log in on a tty, it is normally invoked by init.
183 183
184config LOGIN 184config LOGIN
185 bool "login" 185 bool "login"
186 default n 186 default y
187 select FEATURE_SUID 187 select FEATURE_SUID
188 select FEATURE_SYSLOG 188 select FEATURE_SYSLOG
189 help 189 help
@@ -202,7 +202,7 @@ config PAM
202config LOGIN_SCRIPTS 202config LOGIN_SCRIPTS
203 bool "Support for login scripts" 203 bool "Support for login scripts"
204 depends on LOGIN 204 depends on LOGIN
205 default n 205 default y
206 help 206 help
207 Enable this if you want login to execute $LOGIN_PRE_SUID_SCRIPT 207 Enable this if you want login to execute $LOGIN_PRE_SUID_SCRIPT
208 just prior to switching from root to logged-in user. 208 just prior to switching from root to logged-in user.
@@ -226,7 +226,7 @@ config FEATURE_SECURETTY
226 226
227config PASSWD 227config PASSWD
228 bool "passwd" 228 bool "passwd"
229 default n 229 default y
230 select FEATURE_SUID 230 select FEATURE_SUID
231 select FEATURE_SYSLOG 231 select FEATURE_SYSLOG
232 help 232 help
@@ -247,7 +247,7 @@ config FEATURE_PASSWD_WEAK_CHECK
247 247
248config CRYPTPW 248config CRYPTPW
249 bool "cryptpw" 249 bool "cryptpw"
250 default n 250 default y
251 help 251 help
252 Encrypts the given password with the crypt(3) libc function 252 Encrypts the given password with the crypt(3) libc function
253 using the given salt. Debian has this utility under mkpasswd 253 using the given salt. Debian has this utility under mkpasswd
@@ -255,14 +255,14 @@ config CRYPTPW
255 255
256config CHPASSWD 256config CHPASSWD
257 bool "chpasswd" 257 bool "chpasswd"
258 default n 258 default y
259 help 259 help
260 Reads a file of user name and password pairs from standard input 260 Reads a file of user name and password pairs from standard input
261 and uses this information to update a group of existing users. 261 and uses this information to update a group of existing users.
262 262
263config SU 263config SU
264 bool "su" 264 bool "su"
265 default n 265 default y
266 select FEATURE_SUID 266 select FEATURE_SUID
267 select FEATURE_SYSLOG 267 select FEATURE_SYSLOG
268 help 268 help
@@ -284,7 +284,7 @@ config FEATURE_SU_CHECKS_SHELLS
284 284
285config SULOGIN 285config SULOGIN
286 bool "sulogin" 286 bool "sulogin"
287 default n 287 default y
288 select FEATURE_SYSLOG 288 select FEATURE_SYSLOG
289 help 289 help
290 sulogin is invoked when the system goes into single user 290 sulogin is invoked when the system goes into single user
@@ -292,7 +292,7 @@ config SULOGIN
292 292
293config VLOCK 293config VLOCK
294 bool "vlock" 294 bool "vlock"
295 default n 295 default y
296 select FEATURE_SUID 296 select FEATURE_SUID
297 help 297 help
298 Build the "vlock" applet which allows you to lock (virtual) terminals. 298 Build the "vlock" applet which allows you to lock (virtual) terminals.