2001-10-24 10:30:29 +05:30
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see scripts/kbuild/config-language.txt.
|
|
|
|
#
|
|
|
|
mainmenu_name "BusyBox Configuration"
|
|
|
|
|
2001-11-10 16:13:09 +05:30
|
|
|
mainmenu_option next_comment
|
|
|
|
comment 'BusyBox general settings'
|
|
|
|
choice 'Buffer allocation policy' \
|
|
|
|
"use_malloc CONFIG_FEATURE_BUFFERS_USE_MALLOC \
|
|
|
|
on_stack CONFIG_FEATURE_BUFFERS_GO_ON_STACK \
|
|
|
|
in_bss CONFIG_FEATURE_BUFFERS_GO_IN_BSS" use_malloc
|
2001-11-10 17:37:24 +05:30
|
|
|
bool 'Show verbose applet usage messages' CONFIG_FEATURE_VERBOSE_USAGE
|
|
|
|
bool 'Support --install [-s] to install applet links at runtime' CONFIG_FEATURE_INSTALLER
|
|
|
|
bool 'Enable locale support (system needs locale for this to work)' CONFIG_LOCALE_SUPPORT
|
|
|
|
bool 'Support for devfs' CONFIG_FEATURE_DEVFS
|
|
|
|
bool 'Clean up all memory before exiting (usually not needed)' CONFIG_FEATURE_CLEAN_UP
|
2002-06-05 01:36:25 +05:30
|
|
|
bool 'Support for SUID/SGID handling' CONFIG_FEATURE_SUID
|
|
|
|
if [ "$CONFIG_FEATURE_SUID" = "y" ]; then
|
|
|
|
bool ' Runtime configuration via /etc/busybox.conf' CONFIG_FEATURE_SUID_CONFIG
|
|
|
|
fi
|
2002-07-19 05:29:17 +05:30
|
|
|
if [ "$CONFIG_FEATURE_SUID_CONFIG" = "y" ]; then
|
|
|
|
bool ' Suppress message if config file is not readable' CONFIG_FEATURE_SUID_CONFIG_QUIET
|
|
|
|
fi
|
2001-11-10 16:13:09 +05:30
|
|
|
endmenu
|
2001-10-24 10:30:29 +05:30
|
|
|
|
|
|
|
source archival/config.in
|
|
|
|
source console-tools/config.in
|
|
|
|
source editors/config.in
|
|
|
|
source findutils/config.in
|
|
|
|
source init/config.in
|
|
|
|
source miscutils/config.in
|
|
|
|
source modutils/config.in
|
|
|
|
source networking/config.in
|
2002-06-05 01:36:25 +05:30
|
|
|
source loginutils/config.in
|
2001-10-24 10:30:29 +05:30
|
|
|
source procps/config.in
|
|
|
|
source shell/config.in
|
|
|
|
source shellutils/config.in
|
|
|
|
source sysklogd/config.in
|
|
|
|
source textutils/config.in
|
|
|
|
source util-linux/config.in
|
2002-09-01 12:15:55 +05:30
|
|
|
source fileutils/config.in
|
2001-10-24 10:30:29 +05:30
|
|
|
|