Abstract read and seek in unarchiving code, convert bunzip to file descriptors, suppo...
[oweals/busybox.git] / loginutils / config.in
1 #
2 # For a description of the syntax of this configuration file,
3 # see scripts/kbuild/config-language.txt.
4 #
5
6 mainmenu_option next_comment
7 comment 'Login/Password Management Utilities'
8
9
10 bool 'Use internal password and group functions instead of the system functions'        CONFIG_USE_BB_PWD_GRP
11 bool 'addgroup'                 CONFIG_ADDGROUP
12 bool 'delgroup'                 CONFIG_DELGROUP
13 bool 'adduser'                  CONFIG_ADDUSER
14 bool 'deluser'                  CONFIG_DELUSER
15 bool 'getty'                    CONFIG_GETTY
16 bool 'login'                    CONFIG_LOGIN
17 if [ "$CONFIG_LOGIN" = "y" ]; then
18         bool '  Support for /etc/securetty'             CONFIG_FEATURE_SECURETTY
19 fi
20 bool 'passwd'                   CONFIG_PASSWD
21 bool 'su'                       CONFIG_SU
22 if [ "$CONFIG_ADDUSER" = "y" -o "$CONFIG_DELUSER" = "y" -o "$CONFIG_LOGIN" = "y" -o "$CONFIG_SU" = "y" ]; then
23     bool '  Support for shadow passwords'               CONFIG_FEATURE_SHADOWPASSWDS
24     if [ "$CONFIG_USE_BB_PWD_GRP" = "y" -a  "$CONFIG_FEATURE_SHADOWPASSWDS" = "y" ]; then
25        bool '  Use busybox shadow password functions'                   CONFIG_USE_BB_SHADOW
26     fi
27 fi
28 bool 'sulogin'                  CONFIG_SULOGIN
29 bool 'vlock'                    CONFIG_VLOCK
30
31 endmenu
32