2002-06-05 02:15:46 +05:30
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see scripts/kbuild/config-language.txt.
|
|
|
|
#
|
|
|
|
|
|
|
|
mainmenu_option next_comment
|
|
|
|
comment 'Login/Password Management Utilities'
|
|
|
|
|
|
|
|
|
2002-07-03 10:17:43 +05:30
|
|
|
bool 'Use internal password and group functions instead of the system functions' CONFIG_USE_BB_PWD_GRP
|
2002-06-23 09:54:25 +05:30
|
|
|
bool 'addgroup' CONFIG_ADDGROUP
|
2002-07-04 01:20:23 +05:30
|
|
|
bool 'delgroup' CONFIG_DELGROUP
|
2002-06-23 09:54:25 +05:30
|
|
|
bool 'adduser' CONFIG_ADDUSER
|
|
|
|
bool 'deluser' CONFIG_DELUSER
|
|
|
|
bool 'getty' CONFIG_GETTY
|
2002-06-05 02:15:46 +05:30
|
|
|
bool 'login' CONFIG_LOGIN
|
|
|
|
if [ "$CONFIG_LOGIN" = "y" ]; then
|
|
|
|
bool ' Support for /etc/securetty' CONFIG_FEATURE_SECURETTY
|
|
|
|
fi
|
2002-06-23 09:54:25 +05:30
|
|
|
bool 'passwd' CONFIG_PASSWD
|
|
|
|
bool 'su' CONFIG_SU
|
2002-06-05 02:15:46 +05:30
|
|
|
if [ "$CONFIG_ADDUSER" = "y" -o "$CONFIG_DELUSER" = "y" -o "$CONFIG_LOGIN" = "y" -o "$CONFIG_SU" = "y" ]; then
|
2002-06-23 09:54:25 +05:30
|
|
|
bool ' Support for shadow passwords' CONFIG_FEATURE_SHADOWPASSWDS
|
2002-07-03 10:17:43 +05:30
|
|
|
if [ "$CONFIG_USE_BB_PWD_GRP" = "y" -a "$CONFIG_FEATURE_SHADOWPASSWDS" = "y" ]; then
|
|
|
|
bool ' Use busybox shadow password functions' CONFIG_USE_BB_SHADOW
|
|
|
|
fi
|
2002-06-05 02:15:46 +05:30
|
|
|
fi
|
2002-06-23 09:54:25 +05:30
|
|
|
bool 'sulogin' CONFIG_SULOGIN
|
|
|
|
bool 'vlock' CONFIG_VLOCK
|
2002-06-05 02:15:46 +05:30
|
|
|
|
|
|
|
endmenu
|
|
|
|
|