2002-06-04 20:45:46 +00:00
|
|
|
#
|
|
|
|
# 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 04:47:43 +00:00
|
|
|
bool 'Use internal password and group functions instead of the system functions' CONFIG_USE_BB_PWD_GRP
|
2002-06-23 04:24:25 +00:00
|
|
|
bool 'addgroup' CONFIG_ADDGROUP
|
2002-07-03 19:50:23 +00:00
|
|
|
bool 'delgroup' CONFIG_DELGROUP
|
2002-06-23 04:24:25 +00:00
|
|
|
bool 'adduser' CONFIG_ADDUSER
|
|
|
|
bool 'deluser' CONFIG_DELUSER
|
|
|
|
bool 'getty' CONFIG_GETTY
|
2002-06-04 20:45:46 +00:00
|
|
|
bool 'login' CONFIG_LOGIN
|
|
|
|
if [ "$CONFIG_LOGIN" = "y" ]; then
|
|
|
|
bool ' Support for /etc/securetty' CONFIG_FEATURE_SECURETTY
|
|
|
|
fi
|
2002-06-23 04:24:25 +00:00
|
|
|
bool 'passwd' CONFIG_PASSWD
|
|
|
|
bool 'su' CONFIG_SU
|
2002-06-04 20:45:46 +00:00
|
|
|
if [ "$CONFIG_ADDUSER" = "y" -o "$CONFIG_DELUSER" = "y" -o "$CONFIG_LOGIN" = "y" -o "$CONFIG_SU" = "y" ]; then
|
2002-06-23 04:24:25 +00:00
|
|
|
bool ' Support for shadow passwords' CONFIG_FEATURE_SHADOWPASSWDS
|
2002-07-03 04:47:43 +00:00
|
|
|
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-04 20:45:46 +00:00
|
|
|
fi
|
2002-06-23 04:24:25 +00:00
|
|
|
bool 'sulogin' CONFIG_SULOGIN
|
|
|
|
bool 'vlock' CONFIG_VLOCK
|
2002-06-04 20:45:46 +00:00
|
|
|
|
|
|
|
endmenu
|
|
|
|
|