2005-03-06 05:34:52 +02:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see scripts/kbuild/config-language.txt.
|
|
|
|
#
|
|
|
|
|
|
|
|
|
2007-01-01 20:28:03 +02:00
|
|
|
config BUSYBOX_CONFIG_HAVE_DOT_CONFIG
|
2005-03-06 05:34:52 +02:00
|
|
|
bool
|
|
|
|
default y
|
|
|
|
|
2006-04-04 22:24:40 +03:00
|
|
|
menu "Busybox Settings"
|
|
|
|
|
2005-03-06 05:34:52 +02:00
|
|
|
menu "General Configuration"
|
|
|
|
|
2007-01-01 20:28:03 +02:00
|
|
|
config BUSYBOX_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
|
|
|
|
desktop machine with common Linux distro, not on an embedded box.
|
|
|
|
|
2009-05-25 16:52:31 +03:00
|
|
|
config BUSYBOX_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
|
|
|
|
some GNU extensions in libc. You probably only need this option
|
|
|
|
if you plan to run busybox on desktop.
|
|
|
|
|
2010-04-03 03:58:46 +03:00
|
|
|
config BUSYBOX_CONFIG_INCLUDE_SUSv2
|
|
|
|
bool "Enable obsolete features removed before SUSv3"
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
This option will enable backwards compatibility with SuSv2,
|
|
|
|
specifically, old-style numeric options ('command -1 <file>')
|
|
|
|
will be supported in head, tail, and fold. (Note: should
|
|
|
|
affect renice too.)
|
|
|
|
|
|
|
|
config BUSYBOX_CONFIG_USE_PORTABLE_CODE
|
|
|
|
bool "Avoid using GCC-specific code constructs"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Use this option if you are trying to compile busybox with
|
|
|
|
compiler other than gcc.
|
|
|
|
If you do use gcc, this option may needlessly increase code size.
|
|
|
|
|
2011-04-03 21:31:00 +03:00
|
|
|
config BUSYBOX_CONFIG_PLATFORM_LINUX
|
|
|
|
bool "Enable Linux-specific applets and features"
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
For the most part, busybox requires only POSIX compatibility
|
|
|
|
from the target system, but some applets and features use
|
|
|
|
Linux-specific interfaces.
|
|
|
|
|
|
|
|
Answering 'N' here will disable such applets and hide the
|
|
|
|
corresponding configuration options.
|
|
|
|
|
2005-03-06 05:34:52 +02:00
|
|
|
choice
|
|
|
|
prompt "Buffer allocation policy"
|
|
|
|
default BUSYBOX_CONFIG_FEATURE_BUFFERS_GO_ON_STACK
|
|
|
|
help
|
|
|
|
There are 3 ways BusyBox can handle buffer allocations:
|
|
|
|
- Use malloc. This costs code size for the call to xmalloc.
|
|
|
|
- Put them on stack. For some very small machines with limited stack
|
2009-05-25 16:52:31 +03:00
|
|
|
space, this can be deadly. For most folks, this works just fine.
|
2005-03-06 05:34:52 +02:00
|
|
|
- Put them in BSS. This works beautifully for computers with a real
|
|
|
|
MMU (and OS support), but wastes runtime RAM for uCLinux. This
|
|
|
|
behavior was the only one available for BusyBox versions 0.48 and
|
|
|
|
earlier.
|
|
|
|
|
|
|
|
config BUSYBOX_CONFIG_FEATURE_BUFFERS_USE_MALLOC
|
|
|
|
bool "Allocate with Malloc"
|
|
|
|
|
|
|
|
config BUSYBOX_CONFIG_FEATURE_BUFFERS_GO_ON_STACK
|
|
|
|
bool "Allocate on the Stack"
|
|
|
|
|
|
|
|
config BUSYBOX_CONFIG_FEATURE_BUFFERS_GO_IN_BSS
|
|
|
|
bool "Allocate in the .bss section"
|
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
2006-08-08 13:27:25 +03:00
|
|
|
config BUSYBOX_CONFIG_SHOW_USAGE
|
|
|
|
bool "Show terse applet usage messages"
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
All BusyBox applets will show help messages when invoked with
|
|
|
|
wrong arguments. You can turn off printing these terse usage
|
|
|
|
messages if you say no here.
|
|
|
|
This will save you up to 7k.
|
|
|
|
|
2005-03-06 05:34:52 +02:00
|
|
|
config BUSYBOX_CONFIG_FEATURE_VERBOSE_USAGE
|
|
|
|
bool "Show verbose applet usage messages"
|
|
|
|
default y
|
2010-08-15 23:28:05 +03:00
|
|
|
depends on BUSYBOX_CONFIG_SHOW_USAGE
|
2005-03-06 05:34:52 +02:00
|
|
|
help
|
|
|
|
All BusyBox applets will show more verbose help messages when
|
2009-05-25 16:52:31 +03:00
|
|
|
busybox is invoked with --help. This will add a lot of text to the
|
|
|
|
busybox binary. In the default configuration, this will add about
|
2005-03-06 05:34:52 +02:00
|
|
|
13k, but it can add much more depending on your configuration.
|
|
|
|
|
2006-08-08 13:27:25 +03:00
|
|
|
config BUSYBOX_CONFIG_FEATURE_COMPRESS_USAGE
|
|
|
|
bool "Store applet usage messages in compressed form"
|
2007-01-01 20:28:03 +02:00
|
|
|
default y
|
|
|
|
depends on BUSYBOX_CONFIG_SHOW_USAGE
|
2006-08-08 13:27:25 +03:00
|
|
|
help
|
|
|
|
Store usage messages in compressed form, uncompress them on-the-fly
|
|
|
|
when <applet> --help is called.
|
|
|
|
|
|
|
|
If you have a really tiny busybox with few applets enabled (and
|
|
|
|
bunzip2 isn't one of them), the overhead of the decompressor might
|
2009-05-25 16:52:31 +03:00
|
|
|
be noticeable. Also, if you run executables directly from ROM
|
|
|
|
and have very little memory, this might not be a win. Otherwise,
|
2006-08-08 13:27:25 +03:00
|
|
|
you probably want this.
|
|
|
|
|
2005-03-06 05:34:52 +02:00
|
|
|
config BUSYBOX_CONFIG_FEATURE_INSTALLER
|
|
|
|
bool "Support --install [-s] to install applet links at runtime"
|
|
|
|
default n
|
|
|
|
help
|
2009-05-25 16:52:31 +03:00
|
|
|
Enable 'busybox --install [-s]' support. This will allow you to use
|
2005-03-06 05:34:52 +02:00
|
|
|
busybox at runtime to create hard links or symlinks for all the
|
2007-10-05 03:27:49 +03:00
|
|
|
applets that are compiled into busybox.
|
2005-03-06 05:34:52 +02:00
|
|
|
|
2011-04-03 21:31:00 +03:00
|
|
|
config BUSYBOX_CONFIG_INSTALL_NO_USR
|
|
|
|
bool "Don't use /usr"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Disable use of /usr. busybox --install and "make install"
|
|
|
|
will install applets only to /bin and /sbin,
|
|
|
|
never to /usr/bin or /usr/sbin.
|
|
|
|
|
2005-03-06 05:34:52 +02:00
|
|
|
config BUSYBOX_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.
|
|
|
|
|
2010-08-15 23:28:05 +03:00
|
|
|
config BUSYBOX_CONFIG_UNICODE_SUPPORT
|
2009-12-07 18:56:04 +02:00
|
|
|
bool "Support Unicode"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
This makes various applets aware that one byte is not
|
|
|
|
one character on screen.
|
|
|
|
|
|
|
|
Busybox aims to eventually work correctly with Unicode displays.
|
|
|
|
Any older encodings are not guaranteed to work.
|
|
|
|
Probably by the time when busybox will be fully Unicode-clean,
|
|
|
|
other encodings will be mainly of historic interest.
|
|
|
|
|
2010-08-15 23:28:05 +03:00
|
|
|
config BUSYBOX_CONFIG_UNICODE_USING_LOCALE
|
|
|
|
bool "Use libc routines for Unicode (else uses internal ones)"
|
|
|
|
default n
|
|
|
|
depends on BUSYBOX_CONFIG_UNICODE_SUPPORT && BUSYBOX_CONFIG_LOCALE_SUPPORT
|
|
|
|
help
|
|
|
|
With this option on, Unicode support is implemented using libc
|
|
|
|
routines. Otherwise, internal implementation is used.
|
2011-04-03 21:31:00 +03:00
|
|
|
Internal implementation is smaller.
|
2010-08-15 23:28:05 +03:00
|
|
|
|
2009-12-07 18:56:04 +02:00
|
|
|
config BUSYBOX_CONFIG_FEATURE_CHECK_UNICODE_IN_ENV
|
|
|
|
bool "Check $LANG environment variable"
|
|
|
|
default n
|
2010-08-15 23:28:05 +03:00
|
|
|
depends on BUSYBOX_CONFIG_UNICODE_SUPPORT && !BUSYBOX_CONFIG_UNICODE_USING_LOCALE
|
2009-12-07 18:56:04 +02:00
|
|
|
help
|
|
|
|
With this option on, Unicode support is activated
|
|
|
|
only if LANG variable has the value of the form "xxxx.utf8"
|
|
|
|
|
|
|
|
Otherwise, Unicode support will be always enabled and active.
|
|
|
|
|
2010-08-15 23:28:05 +03:00
|
|
|
config BUSYBOX_CONFIG_SUBST_WCHAR
|
|
|
|
int "Character code to substitute unprintable characters with"
|
|
|
|
depends on BUSYBOX_CONFIG_UNICODE_SUPPORT
|
|
|
|
default 63
|
|
|
|
help
|
|
|
|
Typical values are 63 for '?' (works with any output device),
|
|
|
|
30 for ASCII substitute control code,
|
|
|
|
65533 (0xfffd) for Unicode replacement character.
|
|
|
|
|
|
|
|
config BUSYBOX_CONFIG_LAST_SUPPORTED_WCHAR
|
|
|
|
int "Range of supported Unicode characters"
|
|
|
|
depends on BUSYBOX_CONFIG_UNICODE_SUPPORT
|
|
|
|
default 767
|
|
|
|
help
|
|
|
|
Any character with Unicode value bigger than this is assumed
|
|
|
|
to be non-printable on output device. Many applets replace
|
|
|
|
such chars with substitution character.
|
|
|
|
|
|
|
|
The idea is that many valid printable Unicode chars are
|
|
|
|
nevertheless are not displayed correctly. Think about
|
|
|
|
combining charachers, double-wide hieroglyphs, obscure
|
|
|
|
characters in dozens of ancient scripts...
|
|
|
|
Many terminals, terminal emulators, xterms etc will fail
|
|
|
|
to handle them correctly. Choose the smallest value
|
|
|
|
which suits your needs.
|
|
|
|
|
|
|
|
Typical values are:
|
|
|
|
126 - ASCII only
|
|
|
|
767 (0x2ff) - there are no combining chars in [0..767] range
|
|
|
|
(the range includes Latin 1, Latin Ext. A and B),
|
|
|
|
code is ~700 bytes smaller for this case.
|
|
|
|
4351 (0x10ff) - there are no double-wide chars in [0..4351] range,
|
|
|
|
code is ~300 bytes smaller for this case.
|
|
|
|
12799 (0x31ff) - nearly all non-ideographic characters are
|
|
|
|
available in [0..12799] range, including
|
|
|
|
East Asian scripts like katakana, hiragana, hangul,
|
|
|
|
bopomofo...
|
|
|
|
0 - off, any valid printable Unicode character will be printed.
|
|
|
|
|
|
|
|
config BUSYBOX_CONFIG_UNICODE_COMBINING_WCHARS
|
|
|
|
bool "Allow zero-width Unicode characters on output"
|
|
|
|
default n
|
|
|
|
depends on BUSYBOX_CONFIG_UNICODE_SUPPORT
|
|
|
|
help
|
|
|
|
With this option off, any Unicode char with width of 0
|
|
|
|
is substituted on output.
|
|
|
|
|
|
|
|
config BUSYBOX_CONFIG_UNICODE_WIDE_WCHARS
|
|
|
|
bool "Allow wide Unicode characters on output"
|
|
|
|
default n
|
|
|
|
depends on BUSYBOX_CONFIG_UNICODE_SUPPORT
|
|
|
|
help
|
|
|
|
With this option off, any Unicode char with width > 1
|
|
|
|
is substituted on output.
|
|
|
|
|
|
|
|
config BUSYBOX_CONFIG_UNICODE_BIDI_SUPPORT
|
|
|
|
bool "Bidirectional character-aware line input"
|
|
|
|
default n
|
|
|
|
depends on BUSYBOX_CONFIG_UNICODE_SUPPORT && !BUSYBOX_CONFIG_UNICODE_USING_LOCALE
|
|
|
|
help
|
|
|
|
With this option on, right-to-left Unicode characters
|
|
|
|
are treated differently on input (e.g. cursor movement).
|
|
|
|
|
|
|
|
config BUSYBOX_CONFIG_UNICODE_NEUTRAL_TABLE
|
|
|
|
bool "In bidi input, support non-ASCII neutral chars too"
|
|
|
|
default n
|
|
|
|
depends on BUSYBOX_CONFIG_UNICODE_BIDI_SUPPORT
|
|
|
|
help
|
|
|
|
In most cases it's enough to treat only ASCII non-letters
|
|
|
|
(i.e. punctuation, numbers and space) as characters
|
|
|
|
with neutral directionality.
|
|
|
|
With this option on, more extensive (and bigger) table
|
|
|
|
of neutral chars will be used.
|
|
|
|
|
|
|
|
config BUSYBOX_CONFIG_UNICODE_PRESERVE_BROKEN
|
|
|
|
bool "Make it possible to enter sequences of chars which are not Unicode"
|
|
|
|
default n
|
|
|
|
depends on BUSYBOX_CONFIG_UNICODE_SUPPORT
|
|
|
|
help
|
2011-10-22 02:08:45 +03:00
|
|
|
With this option on, on line-editing input (such as used by shells)
|
|
|
|
invalid UTF-8 bytes are not substituted with the selected
|
|
|
|
substitution character.
|
2010-08-15 23:28:05 +03:00
|
|
|
For example, this means that entering 'l', 's', ' ', 0xff, [Enter]
|
|
|
|
at shell prompt will list file named 0xff (single char name
|
|
|
|
with char value 255), not file named '?'.
|
|
|
|
|
2009-12-07 18:56:04 +02:00
|
|
|
config BUSYBOX_CONFIG_LONG_OPTS
|
2008-08-20 17:00:34 +03:00
|
|
|
bool "Support for --long-options"
|
2005-03-06 05:34:52 +02:00
|
|
|
default y
|
2007-01-01 20:28:03 +02:00
|
|
|
help
|
|
|
|
Enable this if you want busybox applets to use the gnu --long-option
|
|
|
|
style, in addition to single character -a -b -c style options.
|
2005-03-06 05:34:52 +02:00
|
|
|
|
|
|
|
config BUSYBOX_CONFIG_FEATURE_DEVPTS
|
|
|
|
bool "Use the devpts filesystem for Unix98 PTYs"
|
2006-08-08 13:27:25 +03:00
|
|
|
default y
|
2005-03-06 05:34:52 +02:00
|
|
|
help
|
|
|
|
Enable if you want BusyBox to use Unix98 PTY support. If enabled,
|
|
|
|
busybox will use /dev/ptmx for the master side of the pseudoterminal
|
2009-05-25 16:52:31 +03:00
|
|
|
and /dev/pts/<number> for the slave side. Otherwise, BSD style
|
2005-03-06 05:34:52 +02:00
|
|
|
/dev/ttyp<number> will be used. To use this option, you should have
|
2006-08-08 13:27:25 +03:00
|
|
|
devpts mounted.
|
2005-03-06 05:34:52 +02:00
|
|
|
|
|
|
|
config BUSYBOX_CONFIG_FEATURE_CLEAN_UP
|
|
|
|
bool "Clean up all memory before exiting (usually not needed)"
|
|
|
|
default n
|
|
|
|
help
|
2006-04-04 22:24:40 +03:00
|
|
|
As a size optimization, busybox normally exits without explicitly
|
2009-05-25 16:52:31 +03:00
|
|
|
freeing dynamically allocated memory or closing files. This saves
|
2006-04-04 22:24:40 +03:00
|
|
|
space since the OS will clean up for us, but it can confuse debuggers
|
|
|
|
like valgrind, which report tons of memory and resource leaks.
|
|
|
|
|
|
|
|
Don't enable this unless you have a really good reason to clean
|
2005-03-06 05:34:52 +02:00
|
|
|
things up manually.
|
|
|
|
|
2011-10-22 02:08:45 +03:00
|
|
|
config BUSYBOX_CONFIG_FEATURE_UTMP
|
|
|
|
bool "Support utmp file"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
The file /var/run/utmp is used to track who is currently logged in.
|
|
|
|
With this option on, certain applets (getty, login, telnetd etc)
|
|
|
|
will create and delete entries there.
|
|
|
|
"who" applet requires this option.
|
|
|
|
|
2010-08-15 23:28:05 +03:00
|
|
|
config BUSYBOX_CONFIG_FEATURE_WTMP
|
|
|
|
bool "Support wtmp file"
|
|
|
|
default n
|
2011-10-22 02:08:45 +03:00
|
|
|
depends on BUSYBOX_CONFIG_FEATURE_UTMP
|
2010-08-15 23:28:05 +03:00
|
|
|
help
|
|
|
|
The file /var/run/wtmp is used to track when users have logged into
|
|
|
|
and logged out of the system.
|
|
|
|
With this option on, certain applets (getty, login, telnetd etc)
|
|
|
|
will append new entries there.
|
|
|
|
"last" applet requires this option.
|
|
|
|
|
2007-10-05 03:27:49 +03:00
|
|
|
config BUSYBOX_CONFIG_FEATURE_PIDFILE
|
|
|
|
bool "Support writing pidfiles"
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
This option makes some applets (e.g. crond, syslogd, inetd) write
|
|
|
|
a pidfile in /var/run. Some applications rely on them.
|
|
|
|
|
2005-03-06 05:34:52 +02:00
|
|
|
config BUSYBOX_CONFIG_FEATURE_SUID
|
|
|
|
bool "Support for SUID/SGID handling"
|
|
|
|
default y
|
|
|
|
help
|
2006-08-08 13:27:25 +03:00
|
|
|
With this option you can install the busybox binary belonging
|
2011-04-03 21:31:00 +03:00
|
|
|
to root with the suid bit set, enabling some applets to perform
|
|
|
|
root-level operations even when run by ordinary users
|
|
|
|
(for example, mounting of user mounts in fstab needs this).
|
|
|
|
|
|
|
|
Busybox will automatically drop priviledges for applets
|
|
|
|
that don't need root access.
|
2006-08-08 13:27:25 +03:00
|
|
|
|
2009-05-25 20:15:39 +03:00
|
|
|
If you are really paranoid and don't want to do this, build two
|
2006-08-08 13:27:25 +03:00
|
|
|
busybox binaries with different applets in them (and the appropriate
|
|
|
|
symlinks pointing to each binary), and only set the suid bit on the
|
2011-04-03 21:31:00 +03:00
|
|
|
one that needs it.
|
|
|
|
|
2011-10-22 02:08:45 +03:00
|
|
|
The applets which require root rights (need suid bit or
|
|
|
|
to be run by root) and will refuse to execute otherwise:
|
|
|
|
crontab, login, passwd, su, vlock, wall.
|
2009-05-25 20:15:39 +03:00
|
|
|
|
2011-10-22 02:08:45 +03:00
|
|
|
The applets which will use root rights if they have them
|
|
|
|
(via suid bit, or because run by root), but would try to work
|
|
|
|
without root right nevertheless:
|
|
|
|
findfs, ping[6], traceroute[6], mount.
|
|
|
|
|
|
|
|
Note that if you DONT select this option, but DO make busybox
|
|
|
|
suid root, ALL applets will run under root, which is a huge
|
|
|
|
security hole (think "cp /some/file /etc/passwd").
|
2005-03-06 05:34:52 +02:00
|
|
|
|
|
|
|
config BUSYBOX_CONFIG_FEATURE_SUID_CONFIG
|
|
|
|
bool "Runtime SUID/SGID configuration via /etc/busybox.conf"
|
2011-10-22 02:08:45 +03:00
|
|
|
default n
|
2005-03-06 05:34:52 +02:00
|
|
|
depends on BUSYBOX_CONFIG_FEATURE_SUID
|
|
|
|
help
|
2006-08-08 13:27:25 +03:00
|
|
|
Allow the SUID / SGID state of an applet to be determined at runtime
|
2009-05-25 16:52:31 +03:00
|
|
|
by checking /etc/busybox.conf. (This is sort of a poor man's sudo.)
|
2006-08-08 13:27:25 +03:00
|
|
|
The format of this file is as follows:
|
2005-03-06 05:34:52 +02:00
|
|
|
|
2011-10-22 02:08:45 +03:00
|
|
|
APPLET = [Ssx-][Ssx-][x-] [USER.GROUP]
|
|
|
|
|
|
|
|
s: USER or GROUP is allowed to execute APPLET.
|
|
|
|
APPLET will run under USER or GROUP
|
|
|
|
(reagardless of who's running it).
|
|
|
|
S: USER or GROUP is NOT allowed to execute APPLET.
|
|
|
|
APPLET will run under USER or GROUP.
|
|
|
|
This option is not very sensical.
|
|
|
|
x: USER/GROUP/others are allowed to execute APPLET.
|
|
|
|
No UID/GID change will be done when it is run.
|
|
|
|
-: USER/GROUP/others are not allowed to execute APPLET.
|
2006-04-04 22:24:40 +03:00
|
|
|
|
2005-03-06 05:34:52 +02:00
|
|
|
An example might help:
|
|
|
|
|
|
|
|
[SUID]
|
2009-05-25 16:52:31 +03:00
|
|
|
su = ssx root.0 # applet su can be run by anyone and runs with
|
|
|
|
# euid=0/egid=0
|
2005-03-06 05:34:52 +02:00
|
|
|
su = ssx # exactly the same
|
|
|
|
|
2009-05-25 16:52:31 +03:00
|
|
|
mount = sx- root.disk # applet mount can be run by root and members
|
2011-10-22 02:08:45 +03:00
|
|
|
# of group disk (but not anyone else)
|
|
|
|
# and runs with euid=0 (egid is not changed)
|
2005-03-06 05:34:52 +02:00
|
|
|
|
|
|
|
cp = --- # disable applet cp for everyone
|
|
|
|
|
2006-04-04 22:24:40 +03:00
|
|
|
The file has to be owned by user root, group root and has to be
|
|
|
|
writeable only by root:
|
2007-11-10 18:51:11 +02:00
|
|
|
(chown 0.0 /etc/busybox.conf; chmod 600 /etc/busybox.conf)
|
2006-04-04 22:24:40 +03:00
|
|
|
The busybox executable has to be owned by user root, group
|
|
|
|
root and has to be setuid root for this to work:
|
2007-11-10 18:51:11 +02:00
|
|
|
(chown 0.0 /bin/busybox; chmod 4755 /bin/busybox)
|
2006-04-04 22:24:40 +03:00
|
|
|
|
2005-03-06 05:34:52 +02:00
|
|
|
Robert 'sandman' Griebl has more information here:
|
|
|
|
<url: http://www.softforge.de/bb/suid.html >.
|
|
|
|
|
|
|
|
config BUSYBOX_CONFIG_FEATURE_SUID_CONFIG_QUIET
|
|
|
|
bool "Suppress warning message if /etc/busybox.conf is not readable"
|
|
|
|
default n
|
|
|
|
depends on BUSYBOX_CONFIG_FEATURE_SUID_CONFIG
|
|
|
|
help
|
2009-05-25 16:52:31 +03:00
|
|
|
/etc/busybox.conf should be readable by the user needing the SUID,
|
|
|
|
check this option to avoid users to be notified about missing
|
|
|
|
permissions.
|
2005-03-06 05:34:52 +02:00
|
|
|
|
|
|
|
config BUSYBOX_CONFIG_SELINUX
|
|
|
|
bool "Support NSA Security Enhanced Linux"
|
|
|
|
default n
|
2011-10-22 02:08:45 +03:00
|
|
|
select BUSYBOX_CONFIG_PLATFORM_LINUX
|
2005-03-06 05:34:52 +02:00
|
|
|
help
|
2009-05-25 16:52:31 +03:00
|
|
|
Enable support for SELinux in applets ls, ps, and id. Also provide
|
2006-08-08 13:27:25 +03:00
|
|
|
the option of compiling in SELinux applets.
|
2005-03-06 05:34:52 +02:00
|
|
|
|
2006-08-08 13:27:25 +03:00
|
|
|
If you do not have a complete SELinux userland installed, this stuff
|
|
|
|
will not compile. Go visit
|
2005-03-06 05:34:52 +02:00
|
|
|
http://www.nsa.gov/selinux/index.html
|
2006-08-08 13:27:25 +03:00
|
|
|
to download the necessary stuff to allow busybox to compile with
|
|
|
|
this option enabled. Specifially, libselinux 1.28 or better is
|
|
|
|
directly required by busybox. If the installation is located in a
|
|
|
|
non-standard directory, provide it by invoking make as follows:
|
|
|
|
CFLAGS=-I<libselinux-include-path> \
|
|
|
|
LDFLAGS=-L<libselinux-lib-path> \
|
|
|
|
make
|
2005-03-06 05:34:52 +02:00
|
|
|
|
|
|
|
Most people will leave this set to 'N'.
|
|
|
|
|
2007-10-05 03:27:49 +03:00
|
|
|
config BUSYBOX_CONFIG_FEATURE_PREFER_APPLETS
|
|
|
|
bool "exec prefers applets"
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
This is an experimental option which directs applets about to
|
|
|
|
call 'exec' to try and find an applicable busybox applet before
|
|
|
|
searching the PATH. This is typically done by exec'ing
|
|
|
|
/proc/self/exe.
|
|
|
|
This may affect shell, find -exec, xargs and similar applets.
|
|
|
|
They will use applets even if /bin/<applet> -> busybox link
|
|
|
|
is missing (or is not a link to busybox). However, this causes
|
|
|
|
problems in chroot jails without mounted /proc and with ps/top
|
|
|
|
(command name can be shown as 'exe' for applets started this way).
|
|
|
|
|
2006-08-08 13:27:25 +03:00
|
|
|
config BUSYBOX_CONFIG_BUSYBOX_EXEC_PATH
|
|
|
|
string "Path to BusyBox executable"
|
|
|
|
default "/proc/self/exe"
|
|
|
|
help
|
|
|
|
When Busybox applets need to run other busybox applets, BusyBox
|
2009-05-25 16:52:31 +03:00
|
|
|
sometimes needs to exec() itself. When the /proc filesystem is
|
2006-08-08 13:27:25 +03:00
|
|
|
mounted, /proc/self/exe always points to the currently running
|
2009-05-25 16:52:31 +03:00
|
|
|
executable. If you haven't got /proc, set this to wherever you
|
2006-08-08 13:27:25 +03:00
|
|
|
want to run BusyBox from.
|
|
|
|
|
2007-10-05 03:27:49 +03:00
|
|
|
# These are auto-selected by other options
|
|
|
|
|
|
|
|
config BUSYBOX_CONFIG_FEATURE_SYSLOG
|
2009-05-25 20:15:39 +03:00
|
|
|
bool #No description makes it a hidden option
|
2007-10-05 03:27:49 +03:00
|
|
|
default y
|
2009-05-25 20:15:39 +03:00
|
|
|
#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.
|
2007-10-05 03:27:49 +03:00
|
|
|
|
|
|
|
config BUSYBOX_CONFIG_FEATURE_HAVE_RPC
|
2009-05-25 20:15:39 +03:00
|
|
|
bool #No description makes it a hidden option
|
2011-02-13 04:52:40 +02:00
|
|
|
default n
|
2009-05-25 20:15:39 +03:00
|
|
|
#help
|
|
|
|
# This is automatically selected if any of enabled applets need it.
|
|
|
|
# You do not need to select it manually.
|
2007-10-05 03:27:49 +03:00
|
|
|
|
2005-03-06 05:34:52 +02:00
|
|
|
endmenu
|
|
|
|
|
|
|
|
menu 'Build Options'
|
|
|
|
|
|
|
|
config BUSYBOX_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.
|
|
|
|
This can cause BusyBox to be considerably larger, so you should
|
|
|
|
leave this option false unless you have a good reason (i.e.
|
|
|
|
your target platform does not support shared libraries, or
|
|
|
|
you are building an initrd which doesn't need anything but
|
|
|
|
BusyBox, etc).
|
|
|
|
|
|
|
|
Most people will leave this set to 'N'.
|
|
|
|
|
2008-08-20 17:00:34 +03:00
|
|
|
config BUSYBOX_CONFIG_PIE
|
|
|
|
bool "Build BusyBox as a position independent executable"
|
|
|
|
default n
|
|
|
|
depends on !BUSYBOX_CONFIG_STATIC
|
|
|
|
help
|
2011-10-22 02:08:45 +03:00
|
|
|
Hardened code option. PIE binaries are loaded at a different
|
|
|
|
address at each invocation. This has some overhead,
|
|
|
|
particularly on x86-32 which is short on registers.
|
|
|
|
|
2008-08-20 17:00:34 +03:00
|
|
|
Most people will leave this set to 'N'.
|
|
|
|
|
|
|
|
config BUSYBOX_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,
|
|
|
|
or if you want to build NOMMU version of busybox for testing,
|
|
|
|
you may force NOMMU build here.
|
|
|
|
|
|
|
|
Most people will leave this set to 'N'.
|
|
|
|
|
|
|
|
# PIE can be made to work with BUILD_LIBBUSYBOX, but currently
|
|
|
|
# build system does not support that
|
2006-04-04 22:24:40 +03:00
|
|
|
config BUSYBOX_CONFIG_BUILD_LIBBUSYBOX
|
|
|
|
bool "Build shared libbusybox"
|
|
|
|
default n
|
2008-08-20 17:00:34 +03:00
|
|
|
depends on !BUSYBOX_CONFIG_FEATURE_PREFER_APPLETS && !BUSYBOX_CONFIG_PIE && !BUSYBOX_CONFIG_STATIC
|
2007-11-10 18:51:11 +02:00
|
|
|
help
|
|
|
|
Build a shared library libbusybox.so.N.N.N which contains all
|
|
|
|
busybox code.
|
|
|
|
|
|
|
|
This feature allows every applet to be built as a tiny
|
2009-05-25 16:52:31 +03:00
|
|
|
separate executable. Enabling it for "one big busybox binary"
|
2007-11-10 18:51:11 +02:00
|
|
|
approach serves no purpose and increases code size.
|
|
|
|
You should almost certainly say "no" to this.
|
|
|
|
|
|
|
|
### 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
|
|
|
|
### the actually selected config.
|
|
|
|
###
|
|
|
|
### Normally, libbusybox will only contain the features which are
|
|
|
|
### used by busybox itself. If you plan to write a separate
|
|
|
|
### standalone application which uses libbusybox say 'Y'.
|
|
|
|
###
|
|
|
|
### Note: libbusybox is GPL, not LGPL, and exports no stable API that
|
2009-05-25 16:52:31 +03:00
|
|
|
### might act as a copyright barrier. We can and will modify the
|
2007-11-10 18:51:11 +02:00
|
|
|
### exported function set between releases (even minor version number
|
|
|
|
### changes), and happily break out-of-tree features.
|
|
|
|
###
|
|
|
|
### Say 'N' if in doubt.
|
|
|
|
|
|
|
|
config BUSYBOX_CONFIG_FEATURE_INDIVIDUAL
|
|
|
|
bool "Produce a binary for each applet, linked against libbusybox"
|
|
|
|
default n
|
2009-05-25 16:52:31 +03:00
|
|
|
depends on BUSYBOX_CONFIG_BUILD_LIBBUSYBOX
|
2006-04-04 22:24:40 +03:00
|
|
|
help
|
2007-11-10 18:51:11 +02:00
|
|
|
If your CPU architecture doesn't allow for sharing text/rodata
|
|
|
|
sections of running binaries, but allows for runtime dynamic
|
|
|
|
libraries, this option will allow you to reduce memory footprint
|
|
|
|
when you have many different applets running at once.
|
2006-04-04 22:24:40 +03:00
|
|
|
|
2007-11-10 18:51:11 +02:00
|
|
|
If your CPU architecture allows for sharing text/rodata,
|
|
|
|
having single binary is more optimal.
|
2006-04-04 22:24:40 +03:00
|
|
|
|
2007-11-10 18:51:11 +02:00
|
|
|
Each applet will be a tiny program, dynamically linked
|
|
|
|
against libbusybox.so.N.N.N.
|
2006-04-04 22:24:40 +03:00
|
|
|
|
2007-11-10 18:51:11 +02:00
|
|
|
You need to have a working dynamic linker.
|
2006-04-04 22:24:40 +03:00
|
|
|
|
|
|
|
config BUSYBOX_CONFIG_FEATURE_SHARED_BUSYBOX
|
2007-11-10 18:51:11 +02:00
|
|
|
bool "Produce additional busybox binary linked against libbusybox"
|
|
|
|
default n
|
2009-05-25 16:52:31 +03:00
|
|
|
depends on BUSYBOX_CONFIG_BUILD_LIBBUSYBOX
|
2006-04-04 22:24:40 +03:00
|
|
|
help
|
2007-11-10 18:51:11 +02:00
|
|
|
Build busybox, dynamically linked against libbusybox.so.N.N.N.
|
|
|
|
|
|
|
|
You need to have a working dynamic linker.
|
|
|
|
|
|
|
|
### 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.
|
|
|
|
### If you set this option, all sources are compiled at once.
|
|
|
|
### This gives the compiler more opportunities to optimize which can
|
|
|
|
### result in smaller and/or faster binaries.
|
|
|
|
###
|
|
|
|
### Setting this option will consume alot of memory, e.g. if you
|
|
|
|
### enable all applets with all features, gcc uses more than 300MB
|
|
|
|
### RAM during compilation of busybox.
|
|
|
|
###
|
|
|
|
### This option is most likely only beneficial for newer compilers
|
|
|
|
### such as gcc-4.1 and above.
|
|
|
|
###
|
|
|
|
### Say 'N' unless you know what you are doing.
|
2006-04-04 22:24:40 +03:00
|
|
|
|
2005-03-06 05:34:52 +02:00
|
|
|
config BUSYBOX_CONFIG_LFS
|
2007-10-05 03:27:49 +03:00
|
|
|
bool
|
2005-03-06 05:34:52 +02:00
|
|
|
default y
|
|
|
|
help
|
|
|
|
If you want to build BusyBox with large file support, then enable
|
2009-05-25 16:52:31 +03:00
|
|
|
this option. This will have no effect if your kernel or your C
|
|
|
|
library lacks large file support for large files. Some of the
|
2005-03-06 05:34:52 +02:00
|
|
|
programs that can benefit from large file support include dd, gzip,
|
2009-05-25 16:52:31 +03:00
|
|
|
cp, mount, tar, and many others. If you want to access files larger
|
|
|
|
than 2 Gigabytes, enable this option. Otherwise, leave it set to 'N'.
|
2005-03-06 05:34:52 +02:00
|
|
|
|
2008-08-20 17:00:34 +03:00
|
|
|
config BUSYBOX_CONFIG_CROSS_COMPILER_PREFIX
|
|
|
|
string "Cross Compiler prefix"
|
|
|
|
default ""
|
|
|
|
help
|
|
|
|
If you want to build BusyBox with a cross compiler, then you
|
|
|
|
will need to set this to the cross-compiler prefix, for example,
|
2009-05-25 20:15:39 +03:00
|
|
|
"i386-uclibc-".
|
|
|
|
|
|
|
|
Note that CROSS_COMPILE environment variable or
|
|
|
|
"make CROSS_COMPILE=xxx ..." will override this selection.
|
|
|
|
|
|
|
|
Native builds leave this empty.
|
2008-08-20 17:00:34 +03:00
|
|
|
|
2009-09-28 15:38:46 +03:00
|
|
|
config BUSYBOX_CONFIG_EXTRA_CFLAGS
|
|
|
|
string "Additional CFLAGS"
|
|
|
|
default ""
|
|
|
|
help
|
|
|
|
Additional CFLAGS to pass to the compiler verbatim.
|
|
|
|
|
2005-03-06 05:34:52 +02:00
|
|
|
endmenu
|
|
|
|
|
|
|
|
menu 'Debugging Options'
|
|
|
|
|
|
|
|
config BUSYBOX_CONFIG_DEBUG
|
2006-08-08 13:27:25 +03:00
|
|
|
bool "Build BusyBox with extra Debugging symbols"
|
2005-03-06 05:34:52 +02:00
|
|
|
default n
|
|
|
|
help
|
2006-08-08 13:27:25 +03:00
|
|
|
Say Y here if you wish to examine BusyBox internals while applets are
|
2009-05-25 16:52:31 +03:00
|
|
|
running. This increases the size of the binary considerably, and
|
|
|
|
should only be used when doing development. If you are doing
|
2006-08-08 13:27:25 +03:00
|
|
|
development and want to debug BusyBox, answer Y.
|
2005-03-06 05:34:52 +02:00
|
|
|
|
|
|
|
Most people should answer N.
|
|
|
|
|
2008-08-20 17:00:34 +03:00
|
|
|
config BUSYBOX_CONFIG_DEBUG_PESSIMIZE
|
2009-05-25 16:52:31 +03:00
|
|
|
bool "Disable compiler optimizations"
|
2008-08-20 17:00:34 +03:00
|
|
|
default n
|
|
|
|
depends on BUSYBOX_CONFIG_DEBUG
|
|
|
|
help
|
|
|
|
The compiler's optimization of source code can eliminate and reorder
|
|
|
|
code, resulting in an executable that's hard to understand when
|
2009-05-25 16:52:31 +03:00
|
|
|
stepping through it with a debugger. This switches it off, resulting
|
2008-08-20 17:00:34 +03:00
|
|
|
in a much bigger executable that more closely matches the source
|
|
|
|
code.
|
|
|
|
|
2007-10-05 03:27:49 +03:00
|
|
|
config BUSYBOX_CONFIG_WERROR
|
|
|
|
bool "Abort compilation on any warning"
|
2006-08-08 13:27:25 +03:00
|
|
|
default n
|
|
|
|
help
|
2007-10-05 03:27:49 +03:00
|
|
|
Selecting this will add -Werror to gcc command line.
|
|
|
|
|
|
|
|
Most people should answer N.
|
|
|
|
|
2005-03-06 05:34:52 +02:00
|
|
|
choice
|
|
|
|
prompt "Additional debugging library"
|
|
|
|
default BUSYBOX_CONFIG_NO_DEBUG_LIB
|
|
|
|
help
|
|
|
|
Using an additional debugging library will make BusyBox become
|
2009-05-25 16:52:31 +03:00
|
|
|
considerable larger and will cause it to run more slowly. You
|
2005-03-06 05:34:52 +02:00
|
|
|
should always leave this option disabled for production use.
|
|
|
|
|
|
|
|
dmalloc support:
|
|
|
|
----------------
|
|
|
|
This enables compiling with dmalloc ( http://dmalloc.com/ )
|
|
|
|
which is an excellent public domain mem leak and malloc problem
|
2009-05-25 16:52:31 +03:00
|
|
|
detector. To enable dmalloc, before running busybox you will
|
2005-03-06 05:34:52 +02:00
|
|
|
want to properly set your environment, for example:
|
|
|
|
export DMALLOC_OPTIONS=debug=0x34f47d83,inter=100,log=logfile
|
|
|
|
The 'debug=' value is generated using the following command
|
2009-05-25 16:52:31 +03:00
|
|
|
dmalloc -p log-stats -p log-non-free -p log-bad-space \
|
|
|
|
-p log-elapsed-time -p check-fence -p check-heap \
|
|
|
|
-p check-lists -p check-blank -p check-funcs -p realloc-copy \
|
|
|
|
-p allow-free-null
|
2005-03-06 05:34:52 +02:00
|
|
|
|
|
|
|
Electric-fence support:
|
|
|
|
-----------------------
|
2009-05-25 16:52:31 +03:00
|
|
|
This enables compiling with Electric-fence support. Electric
|
2005-03-06 05:34:52 +02:00
|
|
|
fence is another very useful malloc debugging library which uses
|
|
|
|
your computer's virtual memory hardware to detect illegal memory
|
2009-05-25 16:52:31 +03:00
|
|
|
accesses. This support will make BusyBox be considerable larger
|
2005-03-06 05:34:52 +02:00
|
|
|
and run slower, so you should leave this option disabled unless
|
|
|
|
you are hunting a hard to find memory problem.
|
|
|
|
|
|
|
|
|
|
|
|
config BUSYBOX_CONFIG_NO_DEBUG_LIB
|
|
|
|
bool "None"
|
|
|
|
|
|
|
|
config BUSYBOX_CONFIG_DMALLOC
|
|
|
|
bool "Dmalloc"
|
|
|
|
|
|
|
|
config BUSYBOX_CONFIG_EFENCE
|
|
|
|
bool "Electric-fence"
|
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
2006-04-04 22:24:40 +03:00
|
|
|
endmenu
|
|
|
|
|
2011-04-03 21:31:00 +03:00
|
|
|
menu 'Installation Options ("make install" behavior)'
|
2006-04-04 22:24:40 +03:00
|
|
|
|
|
|
|
choice
|
2011-04-03 21:31:00 +03:00
|
|
|
prompt "What kind of applet links to install"
|
2007-10-05 03:27:49 +03:00
|
|
|
default BUSYBOX_CONFIG_INSTALL_APPLET_SYMLINKS
|
|
|
|
help
|
2011-04-03 21:31:00 +03:00
|
|
|
Choose what kind of links to applets are created by "make install".
|
2006-04-04 22:24:40 +03:00
|
|
|
|
|
|
|
config BUSYBOX_CONFIG_INSTALL_APPLET_SYMLINKS
|
2007-10-05 03:27:49 +03:00
|
|
|
bool "as soft-links"
|
|
|
|
help
|
|
|
|
Install applets as soft-links to the busybox binary. This needs some
|
|
|
|
free inodes on the filesystem, but might help with filesystem
|
|
|
|
generators that can't cope with hard-links.
|
2006-04-04 22:24:40 +03:00
|
|
|
|
|
|
|
config BUSYBOX_CONFIG_INSTALL_APPLET_HARDLINKS
|
2007-10-05 03:27:49 +03:00
|
|
|
bool "as hard-links"
|
|
|
|
help
|
2009-05-25 16:52:31 +03:00
|
|
|
Install applets as hard-links to the busybox binary. This might
|
|
|
|
count on a filesystem with few inodes.
|
2006-04-04 22:24:40 +03:00
|
|
|
|
2007-11-10 18:51:11 +02:00
|
|
|
config BUSYBOX_CONFIG_INSTALL_APPLET_SCRIPT_WRAPPERS
|
|
|
|
bool "as script wrappers"
|
|
|
|
help
|
|
|
|
Install applets as script wrappers that call the busybox binary.
|
|
|
|
|
2006-04-04 22:24:40 +03:00
|
|
|
config BUSYBOX_CONFIG_INSTALL_APPLET_DONT
|
2007-10-05 03:27:49 +03:00
|
|
|
bool "not installed"
|
|
|
|
help
|
2011-04-03 21:31:00 +03:00
|
|
|
Do not install applet links. Useful when you plan to use
|
|
|
|
busybox --install for installing links, or plan to use
|
|
|
|
a standalone shell and thus don't need applet links.
|
2006-04-04 22:24:40 +03:00
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
2007-11-10 18:51:11 +02:00
|
|
|
choice
|
|
|
|
prompt "/bin/sh applet link"
|
|
|
|
default BUSYBOX_CONFIG_INSTALL_SH_APPLET_SYMLINK
|
|
|
|
depends on BUSYBOX_CONFIG_INSTALL_APPLET_SCRIPT_WRAPPERS
|
|
|
|
help
|
|
|
|
Choose how you install /bin/sh applet link.
|
|
|
|
|
|
|
|
config BUSYBOX_CONFIG_INSTALL_SH_APPLET_SYMLINK
|
|
|
|
bool "as soft-link"
|
|
|
|
help
|
|
|
|
Install /bin/sh applet as soft-link to the busybox binary.
|
|
|
|
|
|
|
|
config BUSYBOX_CONFIG_INSTALL_SH_APPLET_HARDLINK
|
|
|
|
bool "as hard-link"
|
|
|
|
help
|
|
|
|
Install /bin/sh applet as hard-link to the busybox binary.
|
|
|
|
|
|
|
|
config BUSYBOX_CONFIG_INSTALL_SH_APPLET_SCRIPT_WRAPPER
|
|
|
|
bool "as script wrapper"
|
|
|
|
help
|
2011-04-03 21:31:00 +03:00
|
|
|
Install /bin/sh applet as script wrapper that calls
|
|
|
|
the busybox binary.
|
2007-11-10 18:51:11 +02:00
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
2007-01-01 20:28:03 +02:00
|
|
|
config BUSYBOX_CONFIG_PREFIX
|
|
|
|
string "BusyBox installation prefix"
|
2006-04-04 22:24:40 +03:00
|
|
|
default "./_install"
|
|
|
|
help
|
|
|
|
Define your directory to install BusyBox files/subdirs in.
|
|
|
|
|
|
|
|
endmenu
|
|
|
|
|
|
|
|
source package/busybox/config/libbb/Config.in
|
2005-03-06 05:34:52 +02:00
|
|
|
|
|
|
|
endmenu
|
|
|
|
|
2006-04-04 22:24:40 +03:00
|
|
|
comment "Applets"
|
|
|
|
|
|
|
|
source package/busybox/config/archival/Config.in
|
|
|
|
source package/busybox/config/coreutils/Config.in
|
|
|
|
source package/busybox/config/console-tools/Config.in
|
|
|
|
source package/busybox/config/debianutils/Config.in
|
|
|
|
source package/busybox/config/editors/Config.in
|
|
|
|
source package/busybox/config/findutils/Config.in
|
|
|
|
source package/busybox/config/init/Config.in
|
|
|
|
source package/busybox/config/loginutils/Config.in
|
|
|
|
source package/busybox/config/e2fsprogs/Config.in
|
|
|
|
source package/busybox/config/modutils/Config.in
|
|
|
|
source package/busybox/config/util-linux/Config.in
|
|
|
|
source package/busybox/config/miscutils/Config.in
|
|
|
|
source package/busybox/config/networking/Config.in
|
2009-05-25 20:15:39 +03:00
|
|
|
source package/busybox/config/printutils/Config.in
|
|
|
|
source package/busybox/config/mailutils/Config.in
|
2006-04-04 22:24:40 +03:00
|
|
|
source package/busybox/config/procps/Config.in
|
2007-01-01 20:28:03 +02:00
|
|
|
source package/busybox/config/runit/Config.in
|
2007-10-05 03:27:49 +03:00
|
|
|
source package/busybox/config/selinux/Config.in
|
2009-05-25 20:15:39 +03:00
|
|
|
source package/busybox/config/shell/Config.in
|
|
|
|
source package/busybox/config/sysklogd/Config.in
|