blob: d33a9826da1b11efc589b1fe98a56b15d2a1e10c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
#
# For a description of the syntax of this configuration file,
# see scripts/kbuild/config-language.txt.
#
mainmenu_name "BusyBox Configuration"
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
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
if [ "$CONFIG_FEATURE_DEVFS" = "y" ]; then
define_bool CONFIG_FEATURE_DEVPTS y
else
bool ' Support for Unix98 PTY filesystem' CONFIG_FEATURE_DEVPTS
fi
bool 'Clean up all memory before exiting (usually not needed)' CONFIG_FEATURE_CLEAN_UP
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
if [ "$CONFIG_FEATURE_SUID_CONFIG" = "y" ]; then
bool ' Suppress message if config file is not readable' CONFIG_FEATURE_SUID_CONFIG_QUIET
fi
endmenu
source archival/config.in
source console-tools/config.in
source debianutils/config.in
source editors/config.in
source fileutils/config.in
source findutils/config.in
source init/config.in
source loginutils/config.in
source miscutils/config.in
source modutils/config.in
source networking/config.in
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
|