aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-12-21 16:33:41 +0000
committerlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-12-21 16:33:41 +0000
commit604bfb0f89aec21241e633fd8a1601f8e9249d3e (patch)
treedfea76ce9c9947ecb5143f56920b852a6af83c1e
parente3c7a6d593558f695096397994b2b05685eeac4f (diff)
downloadbusybox-w32-604bfb0f89aec21241e633fd8a1601f8e9249d3e.tar.gz
busybox-w32-604bfb0f89aec21241e633fd8a1601f8e9249d3e.tar.bz2
busybox-w32-604bfb0f89aec21241e633fd8a1601f8e9249d3e.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. git-svn-id: svn://busybox.net/trunk/busybox@12969 69ca8d6d-28ef-0310-b511-8ec308f3f277
-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