aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2005-12-21 16:33:41 +0000
committerRob Landley <rob@landley.net>2005-12-21 16:33:41 +0000
commitbeb665a376d60493617ed7913531cb937a5aee4d (patch)
treedfea76ce9c9947ecb5143f56920b852a6af83c1e
parent17329745fc31fb23e6647ddf4ed41c0a8a0f90c1 (diff)
downloadbusybox-w32-beb665a376d60493617ed7913531cb937a5aee4d.tar.gz
busybox-w32-beb665a376d60493617ed7913531cb937a5aee4d.tar.bz2
busybox-w32-beb665a376d60493617ed7913531cb937a5aee4d.zip
Second attempt to simplify the login menu. Shadow password stuff at the top,
with no dependencies (since depending on 9 of the 13 apps in the menu gets a bit silly). And fix my attempt to make internal shadow password support automatically depend on internal password support plus shadow password support.
-rw-r--r--loginutils/Config.in3
1 files changed, 1 insertions, 2 deletions
diff --git a/loginutils/Config.in b/loginutils/Config.in
index 9aa6b4937..89f699850 100644
--- a/loginutils/Config.in
+++ b/loginutils/Config.in
@@ -8,14 +8,13 @@ menu "Login/Password Management Utilities"
8config CONFIG_FEATURE_SHADOWPASSWDS 8config CONFIG_FEATURE_SHADOWPASSWDS
9 bool "Support for shadow passwords" 9 bool "Support for shadow passwords"
10 default n 10 default n
11 depends on CONFIG_ADDUSER || CONFIG_DELUSER || CONFIG_LOGIN || CONFIG_SU || CONFIG_VLOCK
12 help 11 help
13 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
14 readable by root and thus the encrypted passwords are no longer 13 readable by root and thus the encrypted passwords are no longer
15 publicly readable. 14 publicly readable.
16 15
17config CONFIG_USE_BB_SHADOW 16config CONFIG_USE_BB_SHADOW
18# bool " Use busybox shadow password functions" 17 bool #" Use busybox shadow password functions"
19 default y 18 default y
20 depends on CONFIG_USE_BB_PWD_GRP && CONFIG_FEATURE_SHADOWPASSWDS 19 depends on CONFIG_USE_BB_PWD_GRP && CONFIG_FEATURE_SHADOWPASSWDS
21 help 20 help