summaryrefslogtreecommitdiff
path: root/busybox.kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'busybox.kconfig')
-rw-r--r--busybox.kconfig29
1 files changed, 0 insertions, 29 deletions
diff --git a/busybox.kconfig b/busybox.kconfig
index 4fd9d11..a553edd 100644
--- a/busybox.kconfig
+++ b/busybox.kconfig
@@ -15,7 +15,6 @@ menu "General Configuration"
config DESKTOP
bool "Enable options for full-blown desktop systems"
- default n
help
Enable options and features which are not essential.
Select this only if you plan to use busybox on full-blown
@@ -23,7 +22,6 @@ config DESKTOP
config EXTRA_COMPAT
bool "Provide compatible behavior for rare corner cases (bigger code)"
- default n
help
This option makes grep, sed etc handle rare corner cases
(embedded NUL bytes and such). This makes code bigger and uses
@@ -32,7 +30,6 @@ config EXTRA_COMPAT
config FEATURE_ASSUME_UNICODE
bool "Assume that 1:1 char/glyph correspondence is not true"
- default n
help
This makes various applets aware that one byte is not
one character on screen.
@@ -44,7 +41,6 @@ config FEATURE_ASSUME_UNICODE
choice
prompt "Buffer allocation policy"
- default FEATURE_BUFFERS_USE_MALLOC
help
There are 3 ways BusyBox can handle buffer allocations:
- Use malloc. This costs code size for the call to xmalloc.
@@ -77,7 +73,6 @@ config SHOW_USAGE
config FEATURE_VERBOSE_USAGE
bool "Show verbose applet usage messages"
- default n
select SHOW_USAGE
help
All BusyBox applets will show more verbose help messages when
@@ -101,7 +96,6 @@ config FEATURE_COMPRESS_USAGE
config FEATURE_INSTALLER
bool "Support --install [-s] to install applet links at runtime"
- default n
help
Enable 'busybox --install [-s]' support. This will allow you to use
busybox at runtime to create hard links or symlinks for all the
@@ -109,7 +103,6 @@ config FEATURE_INSTALLER
config LOCALE_SUPPORT
bool "Enable locale support (system needs locale for this to work)"
- default n
help
Enable this if your system has locale support and you would like
busybox to support locale settings.
@@ -133,7 +126,6 @@ config FEATURE_DEVPTS
config FEATURE_CLEAN_UP
bool "Clean up all memory before exiting (usually not needed)"
- default n
help
As a size optimization, busybox normally exits without explicitly
freeing dynamically allocated memory or closing files. This saves
@@ -145,14 +137,12 @@ config FEATURE_CLEAN_UP
config FEATURE_PIDFILE
bool "Support writing pidfiles"
- default n
help
This option makes some applets (e.g. crond, syslogd, inetd) write
a pidfile in /var/run. Some applications rely on them.
config FEATURE_SUID
bool "Support for SUID/SGID handling"
- default n
help
With this option you can install the busybox binary belonging
to root with the suid bit set, and it will automatically drop
@@ -169,7 +159,6 @@ config FEATURE_SUID
config FEATURE_SUID_CONFIG
bool "Runtime SUID/SGID configuration via /etc/busybox.conf"
- default n if FEATURE_SUID
depends on FEATURE_SUID
help
Allow the SUID / SGID state of an applet to be determined at runtime
@@ -211,7 +200,6 @@ config FEATURE_SUID_CONFIG_QUIET
config SELINUX
bool "Support NSA Security Enhanced Linux"
- default n
help
Enable support for SELinux in applets ls, ps, and id. Also provide
the option of compiling in SELinux applets.
@@ -231,7 +219,6 @@ config SELINUX
config FEATURE_PREFER_APPLETS
bool "exec prefers applets"
- default n
help
This is an experimental option which directs applets about to
call 'exec' to try and find an applicable busybox applet before
@@ -257,14 +244,12 @@ config BUSYBOX_EXEC_PATH
config FEATURE_SYSLOG
bool #No description makes it a hidden option
- default n
#help
# This option is auto-selected when you select any applet which may
# send its output to syslog. You do not need to select it manually.
config FEATURE_HAVE_RPC
bool #No description makes it a hidden option
- default n
#help
# This is automatically selected if any of enabled applets need it.
# You do not need to select it manually.
@@ -275,7 +260,6 @@ menu 'Build Options'
config STATIC
bool "Build BusyBox as a static binary (no shared libs)"
- default n
help
If you want to build a static BusyBox binary, which does not
use or require any shared libraries, then enable this option.
@@ -289,7 +273,6 @@ config STATIC
config PIE
bool "Build BusyBox as a position independent executable"
- default n
depends on !STATIC
help
(TODO: what is it and why/when is it useful?)
@@ -297,7 +280,6 @@ config PIE
config NOMMU
bool "Force NOMMU build"
- default n
help
Busybox tries to detect whether architecture it is being
built against supports MMU or not. If this detection fails,
@@ -310,7 +292,6 @@ config NOMMU
# build system does not support that
config BUILD_LIBBUSYBOX
bool "Build shared libbusybox"
- default n
depends on !FEATURE_PREFER_APPLETS && !PIE && !STATIC
help
Build a shared library libbusybox.so.N.N.N which contains all
@@ -323,7 +304,6 @@ config BUILD_LIBBUSYBOX
### config FEATURE_FULL_LIBBUSYBOX
### bool "Feature-complete libbusybox"
-### default n if !FEATURE_SHARED_BUSYBOX
### depends on BUILD_LIBBUSYBOX
### help
### Build a libbusybox with the complete feature-set, disregarding
@@ -369,7 +349,6 @@ config FEATURE_SHARED_BUSYBOX
### config BUILD_AT_ONCE
### bool "Compile all sources at once"
-### default n
### help
### Normally each source-file is compiled with one invocation of
### the compiler.
@@ -388,7 +367,6 @@ config FEATURE_SHARED_BUSYBOX
config LFS
bool "Build with Large File Support (for accessing files > 2 GB)"
- default n
select FDISK_SUPPORT_LARGE_DISKS
help
If you want to build BusyBox with large file support, then enable
@@ -417,7 +395,6 @@ menu 'Debugging Options'
config DEBUG
bool "Build BusyBox with extra Debugging symbols"
- default n
help
Say Y here if you wish to examine BusyBox internals while applets are
running. This increases the size of the binary considerably, and
@@ -428,7 +405,6 @@ config DEBUG
config DEBUG_PESSIMIZE
bool "Disable compiler optimizations"
- default n
depends on DEBUG
help
The compiler's optimization of source code can eliminate and reorder
@@ -439,7 +415,6 @@ config DEBUG_PESSIMIZE
config WERROR
bool "Abort compilation on any warning"
- default n
help
Selecting this will add -Werror to gcc command line.
@@ -447,7 +422,6 @@ config WERROR
choice
prompt "Additional debugging library"
- default NO_DEBUG_LIB
help
Using an additional debugging library will make BusyBox become
considerable larger and will cause it to run more slowly. You
@@ -505,14 +479,12 @@ menu 'Installation Options'
config INSTALL_NO_USR
bool "Don't use /usr"
- default n
help
Disable use of /usr. Don't activate this option if you don't know
that you really want this behaviour.
choice
prompt "Applets links"
- default INSTALL_APPLET_SYMLINKS
help
Choose how you install applets links.
@@ -545,7 +517,6 @@ endchoice
choice
prompt "/bin/sh applet link"
- default INSTALL_SH_APPLET_SYMLINK
depends on INSTALL_APPLET_SCRIPT_WRAPPERS
help
Choose how you install /bin/sh applet link.