Implement two types of suid/sgid support for BusyBox:
[oweals/busybox.git] / sysdeps / linux / config.in
1 #
2 # For a description of the syntax of this configuration file,
3 # see scripts/kbuild/config-language.txt.
4 #
5 mainmenu_name "BusyBox Configuration"
6
7 mainmenu_option next_comment
8 comment 'BusyBox general settings'
9 choice 'Buffer allocation policy' \
10     "use_malloc CONFIG_FEATURE_BUFFERS_USE_MALLOC \
11          on_stack       CONFIG_FEATURE_BUFFERS_GO_ON_STACK \
12          in_bss         CONFIG_FEATURE_BUFFERS_GO_IN_BSS" use_malloc
13 bool 'Show verbose applet usage messages'                               CONFIG_FEATURE_VERBOSE_USAGE
14 bool 'Support --install [-s] to install applet links at runtime'        CONFIG_FEATURE_INSTALLER
15 bool 'Enable locale support (system needs locale for this to work)'     CONFIG_LOCALE_SUPPORT
16 bool 'Support for devfs'                                                CONFIG_FEATURE_DEVFS
17 bool 'Support compress format (.Z) in unzip operations'                 CONFIG_FEATURE_UNCOMPRESS 
18 bool 'Clean up all memory before exiting (usually not needed)'          CONFIG_FEATURE_CLEAN_UP
19 bool 'Support for SUID/SGID handling'                                   CONFIG_FEATURE_SUID
20 if [ "$CONFIG_FEATURE_SUID" = "y" ]; then
21   bool '  Runtime configuration via /etc/busybox.conf'                  CONFIG_FEATURE_SUID_CONFIG
22 fi
23 bool 'Use busybox password and group functions'                         CONFIG_USE_BB_PWD_GRP
24 if [ "$CONFIG_USE_BB_PWD_GRP" = "y" ]; then
25    bool '  Use busybox shadow password functions'                       CONFIG_USE_BB_SHADOW
26 fi
27 endmenu
28
29 source archival/config.in
30 source console-tools/config.in
31 source editors/config.in
32 source fileutils/config.in
33 source findutils/config.in
34 source init/config.in
35 source miscutils/config.in
36 source modutils/config.in
37 source networking/config.in
38 source loginutils/config.in
39 source procps/config.in
40 source shell/config.in
41 source shellutils/config.in
42 source sysklogd/config.in
43 source textutils/config.in
44 source util-linux/config.in
45