summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--config/busybox-1.4.2/Config.in114
-rwxr-xr-xconfig/busybox-1.4.2/Extract2
-rw-r--r--config/busybox-1.4.2/archival/Config.in100
-rw-r--r--config/busybox-1.4.2/console-tools/Config.in32
-rw-r--r--config/busybox-1.4.2/coreutils/Config.in300
-rw-r--r--config/busybox-1.4.2/debianutils/Config.in28
-rw-r--r--config/busybox-1.4.2/e2fsprogs/Config.in6
-rw-r--r--config/busybox-1.4.2/e2fsprogs/old_e2fsprogs/Config.in20
-rw-r--r--config/busybox-1.4.2/editors/Config.in58
-rw-r--r--config/busybox-1.4.2/findutils/Config.in70
-rw-r--r--config/busybox-1.4.2/init/Config.in32
-rw-r--r--config/busybox-1.4.2/libbb/Config.in4
-rw-r--r--config/busybox-1.4.2/loginutils/Config.in76
-rw-r--r--config/busybox-1.4.2/miscutils/Config.in140
-rw-r--r--config/busybox-1.4.2/modutils/Config.in58
-rw-r--r--config/busybox-1.4.2/networking/Config.in322
-rw-r--r--config/busybox-1.4.2/networking/udhcp/Config.in22
-rw-r--r--config/busybox-1.4.2/procps/Config.in42
-rw-r--r--config/busybox-1.4.2/runit/Config.in18
-rw-r--r--config/busybox-1.4.2/shell/Config.in148
-rw-r--r--config/busybox-1.4.2/sysklogd/Config.in36
-rw-r--r--config/busybox-1.4.2/util-linux/Config.in158
-rw-r--r--rules/busybox.make6
-rw-r--r--rules/coreutils.in16
-rw-r--r--rules/dropbear.in2
-rw-r--r--rules/e2fsprogs.in12
-rw-r--r--rules/findutils.in10
-rw-r--r--rules/hdparm.in4
-rw-r--r--rules/inetutils.in8
-rw-r--r--rules/module-init-tools.in16
-rw-r--r--rules/ntpclient.in4
-rw-r--r--rules/procps.in12
-rw-r--r--rules/rootfs.in2
-rw-r--r--rules/rootfs.make2
-rw-r--r--rules/rootfs_configfiles.in8
-rw-r--r--rules/rootfs_init_d_files.in18
-rw-r--r--rules/utelnetd.in2
-rw-r--r--rules/util-linux.in28
38 files changed, 967 insertions, 969 deletions
diff --git a/config/busybox-1.4.2/Config.in b/config/busybox-1.4.2/Config.in
index c0bf819d2..ba9eb0c2c 100644
--- a/config/busybox-1.4.2/Config.in
+++ b/config/busybox-1.4.2/Config.in
@@ -5,7 +5,7 @@
# mainmenu "BusyBox Configuration"
-config BB_HAVE_DOT_CONFIG
+config BB_CONFIG_HAVE_DOT_CONFIG
bool
default y
@@ -15,7 +15,7 @@ menu "Busybox Settings"
menu "General Configuration"
depends on BUSYBOX
-config BB_NITPICK
+config BB_CONFIG_NITPICK
bool "See lots more (probably unnecessary) configuration options."
default n
help
@@ -31,7 +31,7 @@ config BB_NITPICK
You have been warned.
-config BB_DESKTOP
+config BB_CONFIG_DESKTOP
bool "Enable options for full-blown desktop systems"
default n
help
@@ -41,8 +41,8 @@ config BB_DESKTOP
choice
prompt "Buffer allocation policy"
- default BB_FEATURE_BUFFERS_USE_MALLOC
- depends on BB_NITPICK
+ default BB_CONFIG_FEATURE_BUFFERS_USE_MALLOC
+ depends on BB_CONFIG_NITPICK
help
There are 3 ways BusyBox can handle buffer allocations:
- Use malloc. This costs code size for the call to xmalloc.
@@ -53,18 +53,18 @@ choice
behavior was the only one available for BusyBox versions 0.48 and
earlier.
-config BB_FEATURE_BUFFERS_USE_MALLOC
+config BB_CONFIG_FEATURE_BUFFERS_USE_MALLOC
bool "Allocate with Malloc"
-config BB_FEATURE_BUFFERS_GO_ON_STACK
+config BB_CONFIG_FEATURE_BUFFERS_GO_ON_STACK
bool "Allocate on the Stack"
-config BB_FEATURE_BUFFERS_GO_IN_BSS
+config BB_CONFIG_FEATURE_BUFFERS_GO_IN_BSS
bool "Allocate in the .bss section"
endchoice
-config BB_SHOW_USAGE
+config BB_CONFIG_SHOW_USAGE
bool "Show terse applet usage messages"
default y
help
@@ -73,20 +73,20 @@ config BB_SHOW_USAGE
messages if you say no here.
This will save you up to 7k.
-config BB_FEATURE_VERBOSE_USAGE
+config BB_CONFIG_FEATURE_VERBOSE_USAGE
bool "Show verbose applet usage messages"
default n
- select BB_SHOW_USAGE
+ select BB_CONFIG_SHOW_USAGE
help
All BusyBox applets will show more verbose help messages when
busybox is invoked with --help. This will add a lot of text to the
busybox binary. In the default configuration, this will add about
13k, but it can add much more depending on your configuration.
-config BB_FEATURE_COMPRESS_USAGE
+config BB_CONFIG_FEATURE_COMPRESS_USAGE
bool "Store applet usage messages in compressed form"
default y
- depends on BB_SHOW_USAGE
+ depends on BB_CONFIG_SHOW_USAGE
help
Store usage messages in compressed form, uncompress them on-the-fly
when <applet> --help is called.
@@ -97,7 +97,7 @@ config BB_FEATURE_COMPRESS_USAGE
and have very little memory, this might not be a win. Otherwise,
you probably want this.
-config BB_FEATURE_INSTALLER
+config BB_CONFIG_FEATURE_INSTALLER
bool "Support --install [-s] to install applet links at runtime"
default n
help
@@ -106,21 +106,21 @@ config BB_FEATURE_INSTALLER
applets that are compiled into busybox. This feature requires the
/proc filesystem.
-config BB_LOCALE_SUPPORT
+config BB_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.
-config BB_GETOPT_LONG
+config BB_CONFIG_GETOPT_LONG
bool "Enable support for --long-options"
default y
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.
-config BB_FEATURE_DEVPTS
+config BB_CONFIG_FEATURE_DEVPTS
bool "Use the devpts filesystem for Unix98 PTYs"
default y
help
@@ -130,10 +130,10 @@ config BB_FEATURE_DEVPTS
/dev/ttyp<number> will be used. To use this option, you should have
devpts mounted.
-config BB_FEATURE_CLEAN_UP
+config BB_CONFIG_FEATURE_CLEAN_UP
bool "Clean up all memory before exiting (usually not needed)"
default n
- depends on BB_NITPICK
+ depends on BB_CONFIG_NITPICK
help
As a size optimization, busybox normally exits without explicitly
freeing dynamically allocated memory or closing files. This saves
@@ -143,7 +143,7 @@ config BB_FEATURE_CLEAN_UP
Don't enable this unless you have a really good reason to clean
things up manually.
-config BB_FEATURE_SUID
+config BB_CONFIG_FEATURE_SUID
bool "Support for SUID/SGID handling"
default n
help
@@ -158,17 +158,17 @@ config BB_FEATURE_SUID
are login, passwd, su, ping, traceroute, crontab, dnsd, ipcrm, ipcs,
and vlock.
-config BB_FEATURE_SYSLOG
+config BB_CONFIG_FEATURE_SYSLOG
bool "Support for syslog"
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 BB_FEATURE_SUID_CONFIG
+config BB_CONFIG_FEATURE_SUID_CONFIG
bool "Runtime SUID/SGID configuration via /etc/busybox.conf"
- default n if BB_FEATURE_SUID
- depends on BB_FEATURE_SUID
+ default n if BB_CONFIG_FEATURE_SUID
+ depends on BB_CONFIG_FEATURE_SUID
help
Allow the SUID / SGID state of an applet to be determined at runtime
by checking /etc/busybox.conf. (This is sort of a poor man's sudo.)
@@ -197,15 +197,15 @@ config BB_FEATURE_SUID_CONFIG
Robert 'sandman' Griebl has more information here:
<url: http://www.softforge.de/bb/suid.html >.
-config BB_FEATURE_SUID_CONFIG_QUIET
+config BB_CONFIG_FEATURE_SUID_CONFIG_QUIET
bool "Suppress warning message if /etc/busybox.conf is not readable"
default y
- depends on BB_FEATURE_SUID_CONFIG
+ depends on BB_CONFIG_FEATURE_SUID_CONFIG
help
/etc/busybox.conf should be readable by the user needing the SUID, check
this option to avoid users to be notified about missing permissions.
-config BB_FEATURE_HAVE_RPC
+config BB_CONFIG_FEATURE_HAVE_RPC
bool "RPC support"
default y
help
@@ -213,7 +213,7 @@ config BB_FEATURE_HAVE_RPC
This automatically turns off all configuration options that rely
on RPC.
-config BB_SELINUX
+config BB_CONFIG_SELINUX
bool "Support NSA Security Enhanced Linux"
default n
help
@@ -233,7 +233,7 @@ config BB_SELINUX
Most people will leave this set to 'N'.
-config BB_BUSYBOX_EXEC_PATH
+config BB_CONFIG_BUSYBOX_EXEC_PATH
string "Path to BusyBox executable"
default "/proc/self/exe"
help
@@ -248,7 +248,7 @@ endmenu
menu 'Build Options'
depends on BUSYBOX
-config BB_STATIC
+config BB_CONFIG_STATIC
bool "Build BusyBox as a static binary (no shared libs)"
default n
help
@@ -262,7 +262,7 @@ config BB_STATIC
Most people will leave this set to 'N'.
-config BB_BUILD_LIBBUSYBOX
+config BB_CONFIG_BUILD_LIBBUSYBOX
bool "Build shared libbusybox"
default n
help
@@ -274,10 +274,10 @@ config BB_BUILD_LIBBUSYBOX
binary serves no purpose (and increases the size). You should
almost certainly say "no" to this right now.
-config BB_FEATURE_FULL_LIBBUSYBOX
+config BB_CONFIG_FEATURE_FULL_LIBBUSYBOX
bool "Feature-complete libbusybox"
- default n if !BB_FEATURE_SHARED_BUSYBOX
- depends on BB_BUILD_LIBBUSYBOX
+ default n if !BB_CONFIG_FEATURE_SHARED_BUSYBOX
+ depends on BB_CONFIG_BUILD_LIBBUSYBOX
help
Build a libbusybox with the complete feature-set, disregarding
the actually selected config.
@@ -293,18 +293,18 @@ config BB_FEATURE_FULL_LIBBUSYBOX
Say 'N' if in doubt.
-config BB_FEATURE_SHARED_BUSYBOX
+config BB_CONFIG_FEATURE_SHARED_BUSYBOX
bool "Use shared libbusybox for busybox"
- default y if BB_BUILD_LIBBUSYBOX
- depends on !BB_STATIC && BB_BUILD_LIBBUSYBOX
+ default y if BB_CONFIG_BUILD_LIBBUSYBOX
+ depends on !BB_CONFIG_STATIC && BB_CONFIG_BUILD_LIBBUSYBOX
help
Use libbusybox.so also for busybox itself.
You need to have a working dynamic linker to use this variant.
-config BB_LFS
+config BB_CONFIG_LFS
bool "Build with Large File Support (for accessing files > 2 GB)"
default n
- select BB_FDISK_SUPPORT_LARGE_DISKS
+ select BB_CONFIG_FDISK_SUPPORT_LARGE_DISKS
help
If you want to build BusyBox with large file support, then enable
this option. This will have no effect if your kernel or your C
@@ -313,7 +313,7 @@ config BB_LFS
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'.
-config BB_BUILD_AT_ONCE
+config BB_CONFIG_BUILD_AT_ONCE
bool "Compile all sources at once"
default n
help
@@ -337,7 +337,7 @@ endmenu
menu 'Debugging Options'
depends on BUSYBOX
-config BB_DEBUG
+config BB_CONFIG_DEBUG
bool "Build BusyBox with extra Debugging symbols"
default n
help
@@ -348,10 +348,10 @@ config BB_DEBUG
Most people should answer N.
-config BB_DEBUG_PESSIMIZE
+config BB_CONFIG_DEBUG_PESSIMIZE
bool "Disable compiler optimizations."
default n
- depends on BB_DEBUG
+ depends on BB_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
@@ -361,8 +361,8 @@ config BB_DEBUG_PESSIMIZE
choice
prompt "Additional debugging library"
- default BB_NO_DEBUG_LIB
- depends on BB_DEBUG
+ default BB_CONFIG_NO_DEBUG_LIB
+ depends on BB_CONFIG_DEBUG
help
Using an additional debugging library will make BusyBox become
considerable larger and will cause it to run more slowly. You
@@ -390,18 +390,18 @@ choice
you are hunting a hard to find memory problem.
-config BB_NO_DEBUG_LIB
+config BB_CONFIG_NO_DEBUG_LIB
bool "None"
-config BB_DMALLOC
+config BB_CONFIG_DMALLOC
bool "Dmalloc"
-config BB_EFENCE
+config BB_CONFIG_EFENCE
bool "Electric-fence"
endchoice
-config BB_INCLUDE_SUSv2
+config BB_CONFIG_INCLUDE_SUSv2
bool "Enable obsolete features removed before SUSv3?"
default y
help
@@ -415,7 +415,7 @@ endmenu
menu 'Installation Options'
depends on BUSYBOX
-config BB_INSTALL_NO_USR
+config BB_CONFIG_INSTALL_NO_USR
bool "Don't use /usr"
default n
help
@@ -424,40 +424,38 @@ config BB_INSTALL_NO_USR
choice
prompt "Applets links"
- default BB_INSTALL_APPLET_SYMLINKS
+ default BB_CONFIG_INSTALL_APPLET_SYMLINKS
help
Choose how you install applets links.
-config BB_INSTALL_APPLET_SYMLINKS
+config BB_CONFIG_INSTALL_APPLET_SYMLINKS
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.
-config BB_INSTALL_APPLET_HARDLINKS
+config BB_CONFIG_INSTALL_APPLET_HARDLINKS
bool "as hard-links"
help
Install applets as hard-links to the busybox binary. This might count
on a filesystem with few inodes.
-config BB_INSTALL_APPLET_DONT
+config BB_CONFIG_INSTALL_APPLET_DONT
bool
prompt "not installed"
- depends on BB_FEATURE_INSTALLER || BB_FEATURE_SH_STANDALONE_SHELL
+ depends on BB_CONFIG_FEATURE_INSTALLER || BB_CONFIG_FEATURE_SH_STANDALONE_SHELL
help
Do not install applet links. Useful when using the -install feature
or a standalone shell for rescue pruposes.
endchoice
-config BB_PREFIX
+config BB_CONFIG_PREFIX
string "BusyBox installation prefix"
default "./_install"
help
Define your directory to install BusyBox files/subdirs in.
- Note: Do not leave this entry empty! Busybox' install stage
- will fail with a curious error message if so!
endmenu
diff --git a/config/busybox-1.4.2/Extract b/config/busybox-1.4.2/Extract
index 45203b2e3..0655850ff 100755
--- a/config/busybox-1.4.2/Extract
+++ b/config/busybox-1.4.2/Extract
@@ -14,7 +14,7 @@ for cfgfile in $(find ${bb_path} -name "Config.in"); do
new_cfgfile=$(echo $cfgfile | sed -e "s~${bb_path}~\.~g")
dir=$(echo $new_cfgfile | sed -e "s~Config\.in~~g")
mkdir -p $dir
- ../../scripts/mkprefix -v -p BB_ < $cfgfile > $new_cfgfile
+ ../../scripts/mkprefix -v -p BB_CONFIG_ < $cfgfile > $new_cfgfile
done
#
diff --git a/config/busybox-1.4.2/archival/Config.in b/config/busybox-1.4.2/archival/Config.in
index e94feb8f8..45ebe71f6 100644
--- a/config/busybox-1.4.2/archival/Config.in
+++ b/config/busybox-1.4.2/archival/Config.in
@@ -6,7 +6,7 @@
menu "Archival Utilities"
depends on BUSYBOX
-config BB_AR
+config BB_CONFIG_AR
bool "ar"
default n
help
@@ -29,17 +29,17 @@ config BB_AR
Unless you have a specific application which requires ar, you should
probably say N here.
-config BB_FEATURE_AR_LONG_FILENAMES
+config BB_CONFIG_FEATURE_AR_LONG_FILENAMES
bool "Enable support for long filenames (not need for debs)"
default n
- depends on BB_AR
+ depends on BB_CONFIG_AR
help
By default the ar format can only store the first 15 characters of the
filename, this option removes that limitation.
It supports the GNU ar long filename method which moves multiple long
filenames into a the data section of a new ar entry.
-config BB_BUNZIP2
+config BB_CONFIG_BUNZIP2
bool "bunzip2"
default n
help
@@ -55,7 +55,7 @@ config BB_BUNZIP2
Unless you have a specific application which requires bunzip2, you
should probably say N here.
-config BB_CPIO
+config BB_CONFIG_CPIO
bool "cpio"
default n
help
@@ -69,7 +69,7 @@ config BB_CPIO
Unless you have a specific application which requires cpio, you should
probably say N here.
-config BB_DPKG
+config BB_CONFIG_DPKG
bool "dpkg"
default n
help
@@ -78,7 +78,7 @@ config BB_DPKG
This implementation of dpkg has a number of limitations, you should use the
official dpkg if possible.
-config BB_DPKG_DEB
+config BB_CONFIG_DPKG_DEB
bool "dpkg_deb"
default n
help
@@ -89,16 +89,16 @@ config BB_DPKG_DEB
Unless you have a specific application which requires dpkg-deb, you should
probably say N here.
-config BB_FEATURE_DPKG_DEB_EXTRACT_ONLY
+config BB_CONFIG_FEATURE_DPKG_DEB_EXTRACT_ONLY
bool "extract only (-x)"
default n
- depends on BB_DPKG_DEB
+ depends on BB_CONFIG_DPKG_DEB
help
This reduces dpkg-deb to the equivalent of "ar -p <deb> data.tar.gz | tar -zx".
However it saves space as none of the extra dpkg-deb, ar or tar options are
needed, they are linked to internally.
-config BB_GUNZIP
+config BB_CONFIG_GUNZIP
bool "gunzip"
default n
help
@@ -106,35 +106,35 @@ config BB_GUNZIP
You can use the `-t' option to test the integrity of
an archive, without decompressing it.
-config BB_FEATURE_GUNZIP_UNCOMPRESS
+config BB_CONFIG_FEATURE_GUNZIP_UNCOMPRESS
bool "Uncompress support"
default n
- depends on BB_GUNZIP
+ depends on BB_CONFIG_GUNZIP
help
Enable if you want gunzip to have the ability to decompress
archives created by the program compress (not much
used anymore).
-config BB_GZIP
+config BB_CONFIG_GZIP
bool "gzip"
default n
help
gzip is used to compress files.
It's probably the most widely used UNIX compression program.
-config BB_RPM2CPIO
+config BB_CONFIG_RPM2CPIO
bool "rpm2cpio"
default n
help
Converts an RPM file into a CPIO archive.
-config BB_RPM
+config BB_CONFIG_RPM
bool "rpm"
default n
help
Mini RPM applet - queries and extracts RPM packages.
-config BB_TAR
+config BB_CONFIG_TAR
bool "tar"
default n
help
@@ -142,86 +142,86 @@ config BB_TAR
create compressed archives. It's probably the most widely used
UNIX archive program.
-config BB_FEATURE_TAR_CREATE
+config BB_CONFIG_FEATURE_TAR_CREATE
bool "Enable archive creation"
default y
- depends on BB_TAR
+ depends on BB_CONFIG_TAR
help
If you enable this option you'll be able to create
tar archives using the `-c' option.
-config BB_FEATURE_TAR_BZIP2
+config BB_CONFIG_FEATURE_TAR_BZIP2
bool "Enable -j option to handle .tar.bz2 files"
default n
- depends on BB_TAR
+ depends on BB_CONFIG_TAR
help
If you enable this option you'll be able to extract
archives compressed with bzip2.
-config BB_FEATURE_TAR_LZMA
+config BB_CONFIG_FEATURE_TAR_LZMA
bool "Enable -a option to handle .tar.lzma files"
default n
- depends on BB_TAR
+ depends on BB_CONFIG_TAR
help
If you enable this option you'll be able to extract
archives compressed with lzma.
-config BB_FEATURE_TAR_FROM
+config BB_CONFIG_FEATURE_TAR_FROM
bool "Enable -X (exclude from) and -T (include from) options)"
default n
- depends on BB_TAR
+ depends on BB_CONFIG_TAR
help
If you enable this option you'll be able to specify
a list of files to include or exclude from an archive.
-config BB_FEATURE_TAR_GZIP
+config BB_CONFIG_FEATURE_TAR_GZIP
bool "Enable -z option"
default y
- depends on BB_TAR
+ depends on BB_CONFIG_TAR
help
If you enable this option tar will be able to call gzip,
when creating or extracting tar gziped archives.
-config BB_FEATURE_TAR_COMPRESS
+config BB_CONFIG_FEATURE_TAR_COMPRESS
bool "Enable -Z option"
default n
- depends on BB_TAR
+ depends on BB_CONFIG_TAR
help
If you enable this option tar will be able to call uncompress,
when extracting .tar.Z archives.
-config BB_FEATURE_TAR_OLDGNU_COMPATIBILITY
+config BB_CONFIG_FEATURE_TAR_OLDGNU_COMPATIBILITY
bool "Enable support for old tar header format"
default N
- depends on BB_TAR
+ depends on BB_CONFIG_TAR
help
This option is required to unpack archives created in
the old GNU format; help to kill this old format by
repacking your ancient archives with the new format.
-config BB_FEATURE_TAR_GNU_EXTENSIONS
+config BB_CONFIG_FEATURE_TAR_GNU_EXTENSIONS
bool "Enable support for some GNU tar extensions"
default y
- depends on BB_TAR
+ depends on BB_CONFIG_TAR
help
With this option busybox supports GNU long filenames and
linknames.
-config BB_FEATURE_TAR_LONG_OPTIONS
+config BB_CONFIG_FEATURE_TAR_LONG_OPTIONS
bool "Enable long options"
default n
- depends on BB_TAR && BB_GETOPT_LONG
+ depends on BB_CONFIG_TAR && BB_CONFIG_GETOPT_LONG
help
Enable use of long options, increases size by about 400 Bytes
-config BB_UNCOMPRESS
+config BB_CONFIG_UNCOMPRESS
bool "uncompress"
default n
help
uncompress is used to decompress archives created by compress.
Not much used anymore, replaced by gzip/gunzip.
-config BB_UNLZMA
+config BB_CONFIG_UNLZMA
bool "unlzma"
default n
help
@@ -236,15 +236,15 @@ config BB_UNLZMA
Unless you have a specific application which requires unlzma, you
should probably say N here.
-config BB_FEATURE_LZMA_FAST
+config BB_CONFIG_FEATURE_LZMA_FAST
bool "Optimze unlzma for speed"
default n
- depends on BB_UNLZMA
+ depends on BB_CONFIG_UNLZMA
help
This option reduces decompression time by about 33% at the cost of
a 2K bigger binary.
-config BB_UNZIP
+config BB_CONFIG_UNZIP
bool "unzip"
default n
help
@@ -255,31 +255,31 @@ config BB_UNZIP
directory of your choice.
comment "Common options for cpio and tar"
- depends on BB_CPIO || BB_TAR
+ depends on BB_CONFIG_CPIO || BB_CONFIG_TAR
-config BB_FEATURE_UNARCHIVE_TAPE
+config BB_CONFIG_FEATURE_UNARCHIVE_TAPE
bool "Enable tape drive support"
default n
- depends on BB_CPIO || BB_TAR
+ depends on BB_CONFIG_CPIO || BB_CONFIG_TAR
help
I don't think this is needed anymore.
comment "Common options for dpkg and dpkg_deb"
- depends on BB_DPKG || BB_DPKG_DEB
+ depends on BB_CONFIG_DPKG || BB_CONFIG_DPKG_DEB
-config BB_FEATURE_DEB_TAR_GZ
+config BB_CONFIG_FEATURE_DEB_TAR_GZ
bool "gzip debian packages (normal)"
- default y if BB_DPKG || BB_DPKG_DEB
- depends on BB_DPKG || BB_DPKG_DEB
+ default y if BB_CONFIG_DPKG || BB_CONFIG_DPKG_DEB
+ depends on BB_CONFIG_DPKG || BB_CONFIG_DPKG_DEB
help
This is the default compression method inside the debian ar file.
If you want compatibility with standard .deb's you should say yes here.
-config BB_FEATURE_DEB_TAR_BZ2
+config BB_CONFIG_FEATURE_DEB_TAR_BZ2
bool "bzip2 debian packages"
default n
- depends on BB_DPKG || BB_DPKG_DEB
+ depends on BB_CONFIG_DPKG || BB_CONFIG_DPKG_DEB
help
This allows dpkg and dpkg-deb to extract deb's that are compressed internally
with bzip2 instead of gzip.
@@ -287,10 +287,10 @@ config BB_FEATURE_DEB_TAR_BZ2
You only want this if you are creating your own custom debian packages that
use an internal control.tar.bz2 or data.tar.bz2.
-config BB_FEATURE_DEB_TAR_LZMA
+config BB_CONFIG_FEATURE_DEB_TAR_LZMA
bool "lzma debian packages"
default n
- depends on BB_DPKG || BB_DPKG_DEB
+ depends on BB_CONFIG_DPKG || BB_CONFIG_DPKG_DEB
help
This allows dpkg and dpkg-deb to extract deb's that are compressed
internally with lzma instead of gzip.
diff --git a/config/busybox-1.4.2/console-tools/Config.in b/config/busybox-1.4.2/console-tools/Config.in
index 3e2ac3b3d..75b3cbca7 100644
--- a/config/busybox-1.4.2/console-tools/Config.in
+++ b/config/busybox-1.4.2/console-tools/Config.in
@@ -6,98 +6,98 @@
menu "Console Utilities"
depends on BUSYBOX
-config BB_CHVT
+config BB_CONFIG_CHVT
bool "chvt"
default n
help
This program is used to change to another terminal.
Example: chvt 4 (change to terminal /dev/tty4)
-config BB_CLEAR
+config BB_CONFIG_CLEAR
bool "clear"
default n
help
This program clears the terminal screen.
-config BB_DEALLOCVT
+config BB_CONFIG_DEALLOCVT
bool "deallocvt"
default n
help
This program deallocates unused virtual consoles.
-config BB_DUMPKMAP
+config BB_CONFIG_DUMPKMAP
bool "dumpkmap"
default n
help
This program dumps the kernel's keyboard translation table to
stdout, in binary format. You can then use loadkmap to load it.
-config BB_LOADFONT
+config BB_CONFIG_LOADFONT
bool "loadfont"
default n
help
This program loads a console font from standard input.
-config BB_LOADKMAP
+config BB_CONFIG_LOADKMAP
bool "loadkmap"
default n
help
This program loads a keyboard translation table from
standard input.
-config BB_OPENVT
+config BB_CONFIG_OPENVT
bool "openvt"
default n
help
This program is used to start a command on an unused
virtual terminal.
-config BB_RESET
+config BB_CONFIG_RESET
bool "reset"
default n
help
This program is used to reset the terminal screen, if it
gets messed up.
-config BB_RESIZE
+config BB_CONFIG_RESIZE
bool "resize"
default n
help
This program is used to (re)set the width and height of your current
terminal.
-config BB_FEATURE_RESIZE_PRINT
+config BB_CONFIG_FEATURE_RESIZE_PRINT
bool "print environment variables"
default n
- depends on BB_RESIZE
+ depends on BB_CONFIG_RESIZE
help
Prints the newly set size (number of columns and rows) of
the terminal.
E.g.:
COLUMNS=80;LINES=44;export COLUMNS LINES;
-config BB_SETCONSOLE
+config BB_CONFIG_SETCONSOLE
bool "setconsole"
default n
help
This program redirects the system console to another device,
like the current tty while logged in via telnet.
-config BB_FEATURE_SETCONSOLE_LONG_OPTIONS
+config BB_CONFIG_FEATURE_SETCONSOLE_LONG_OPTIONS
bool "Enable long options"
default n
- depends on BB_SET_CONSOLE && BB_GETOPT_LONG
+ depends on BB_CONFIG_SET_CONSOLE && BB_CONFIG_GETOPT_LONG
help
Support long options for the setconsole applet.
-config BB_SETKEYCODES
+config BB_CONFIG_SETKEYCODES
bool "setkeycodes"
default n
help
This program loads entries into the kernel's scancode-to-keycode
map, allowing unusual keyboards to generate usable keycodes.
-config BB_SETLOGCONS
+config BB_CONFIG_SETLOGCONS
bool "setlogcons"
default n
help
diff --git a/config/busybox-1.4.2/coreutils/Config.in b/config/busybox-1.4.2/coreutils/Config.in
index c93533df2..eea9d600f 100644
--- a/config/busybox-1.4.2/coreutils/Config.in
+++ b/config/busybox-1.4.2/coreutils/Config.in
@@ -6,7 +6,7 @@
menu "Coreutils"
depends on BUSYBOX
-config BB_BASENAME
+config BB_CONFIG_BASENAME
bool "basename"
default n
help
@@ -14,101 +14,101 @@ config BB_BASENAME
leaving just the filename itself. Enable this option if you wish
to enable the 'basename' utility.
-config BB_CAL
+config BB_CONFIG_CAL
bool "cal"
default n
help
cal is used to display a monthly calender.
-config BB_CAT
+config BB_CONFIG_CAT
bool "cat"
default n
help
cat is used to concatenate files and print them to the standard
output. Enable this option if you wish to enable the 'cat' utility.
-config BB_CATV
+config BB_CONFIG_CATV
bool "catv"
default n
help
Display nonprinting characters as escape sequences (like some
implementations' cat -v option).
-config BB_CHGRP
+config BB_CONFIG_CHGRP
bool "chgrp"
default n
help
chgrp is used to change the group ownership of files.
-config BB_CHMOD
+config BB_CONFIG_CHMOD
bool "chmod"
default n
help
chmod is used to change the access permission of files.
-config BB_CHOWN
+config BB_CONFIG_CHOWN
bool "chown"
default n
help
chown is used to change the user and/or group ownership
of files.
-config BB_CHROOT
+config BB_CONFIG_CHROOT
bool "chroot"
default n
help
chroot is used to change the root directory and run a command.
The default command is `/bin/sh'.
-config BB_CKSUM
+config BB_CONFIG_CKSUM
bool "cksum"
default n
help
cksum is used to calculate the CRC32 checksum of a file.
-config BB_CMP
+config BB_CONFIG_CMP
bool "cmp"
default n
help
cmp is used to compare two files and returns the result
to standard output.
-config BB_COMM
+config BB_CONFIG_COMM
bool "comm"
default n
help
comm is used to compare two files line by line and return
a three-column output.
-config BB_CP
+config BB_CONFIG_CP
bool "cp"
default n
help
cp is used to copy files and directories.
-config BB_CUT
+config BB_CONFIG_CUT
bool "cut"
default n
help
cut is used to print selected parts of lines from
each file to stdout.
-config BB_DATE
+config BB_CONFIG_DATE
bool "date"
default n
help
date is used to set the system date or display the
current time in the given format.
-config BB_FEATURE_DATE_ISOFMT
+config BB_CONFIG_FEATURE_DATE_ISOFMT
bool "Enable ISO date format output (-I)"
default y
- depends on BB_DATE
+ depends on BB_CONFIG_DATE
help
Enable option (-I) to output an ISO-8601 compliant
date/time string.
-config BB_DD
+config BB_CONFIG_DD
bool "dd"
default n
help
@@ -116,10 +116,10 @@ config BB_DD
by default) using specific input and output blocksizes,
while optionally performing conversions on it.
-config BB_FEATURE_DD_SIGNAL_HANDLING
+config BB_CONFIG_FEATURE_DD_SIGNAL_HANDLING
bool "Enable DD signal handling for status reporting"
default y
- depends on BB_DD
+ depends on BB_CONFIG_DD
help
sending a SIGUSR1 signal to a running `dd' process makes it
print to standard error the number of records read and written
@@ -128,22 +128,22 @@ config BB_FEATURE_DD_SIGNAL_HANDLING
$ dd if=/dev/zero of=/dev/null& pid=$! $ kill -USR1 $pid; sleep 1; kill $pid
10899206+0 records in 10899206+0 records out
-config BB_FEATURE_DD_IBS_OBS
+config BB_CONFIG_FEATURE_DD_IBS_OBS
bool "Enable ibs, obs and conv options"
default n
- depends on BB_DD
+ depends on BB_CONFIG_DD
help
Enables support for writing a certain number of bytes in and out,
at a time, and performing conversions on the data stream.
-config BB_DF
+config BB_CONFIG_DF
bool "df"
default n
help
df reports the amount of disk space used and available
on filesystems.
-config BB_DIFF
+config BB_CONFIG_DIFF
bool "diff"
default n
help
@@ -151,81 +151,81 @@ config BB_DIFF
differences between them in a form that can be given to
the patch command.
-config BB_FEATURE_DIFF_BINARY
+config BB_CONFIG_FEATURE_DIFF_BINARY
bool "Enable checks for binary files"
default y
- depends on BB_DIFF
+ depends on BB_CONFIG_DIFF
help
This option enables support for checking for binary files
before a comparison is carried out.
-config BB_FEATURE_DIFF_DIR
+config BB_CONFIG_FEATURE_DIFF_DIR
bool "Enable directory support"
default y
- depends on BB_DIFF
+ depends on BB_CONFIG_DIFF
help
This option enables support for directory and subdirectory
comparison.
-config BB_FEATURE_DIFF_MINIMAL
+config BB_CONFIG_FEATURE_DIFF_MINIMAL
bool "Enable -d option to find smaller sets of changes"
default n
- depends on BB_DIFF
+ depends on BB_CONFIG_DIFF
help
Enabling this option allows the use of -d to make diff
try hard to find the smallest possible set of changes.
-config BB_DIRNAME
+config BB_CONFIG_DIRNAME
bool "dirname"
default n
help
dirname is used to strip a non-directory suffix from
a file name.
-config BB_DOS2UNIX
+config BB_CONFIG_DOS2UNIX
bool "dos2unix/unix2dos"
default n
help
dos2unix is used to convert a text file from DOS format to
UNIX format, and vice versa.
-config BB_UNIX2DOS
+config BB_CONFIG_UNIX2DOS
bool
default y
- depends on BB_DOS2UNIX
+ depends on BB_CONFIG_DOS2UNIX
help
unix2dos is used to convert a text file from UNIX format to
DOS format, and vice versa.
-config BB_DU
+config BB_CONFIG_DU
bool "du (default blocksize of 512 bytes)"
default n
help
du is used to report the amount of disk space used
for specified files.
-config BB_FEATURE_DU_DEFAULT_BLOCKSIZE_1K
+config BB_CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K
bool "Use a default blocksize of 1024 bytes (1K)"
default y
- depends on BB_DU
+ depends on BB_CONFIG_DU
help
Use a blocksize of (1K) instead of the default 512b.
-config BB_ECHO
+config BB_CONFIG_ECHO
bool "echo (basic SuSv3 version taking no options)"
default n
help
echo is used to print a specified string to stdout.
# this entry also appears in shell/Config.in, next to the echo builtin
-config BB_FEATURE_FANCY_ECHO
+config BB_CONFIG_FEATURE_FANCY_ECHO
bool "Enable echo options (-n and -e)"
default y
- depends on BB_ECHO
+ depends on BB_CONFIG_ECHO
help
This adds options (-n and -e) to echo.
-config BB_ENV
+config BB_CONFIG_ENV
bool "env"
default n
help
@@ -233,158 +233,158 @@ config BB_ENV
a command; without options it displays the current
environment.
-config BB_FEATURE_ENV_LONG_OPTIONS
+config BB_CONFIG_FEATURE_ENV_LONG_OPTIONS
bool "Enable long options"
default n
- depends on BB_ENV && BB_GETOPT_LONG
+ depends on BB_CONFIG_ENV && BB_CONFIG_GETOPT_LONG
help
Support long options for the env applet.
-config BB_EXPR
+config BB_CONFIG_EXPR
bool "expr"
default n
help
expr is used to calculate numbers and print the result
to standard output.
-config BB_EXPR_MATH_SUPPORT_64
+config BB_CONFIG_EXPR_MATH_SUPPORT_64
bool "Extend Posix numbers support to 64 bit"
default n
- depends on BB_EXPR
+ depends on BB_CONFIG_EXPR
help
Enable 64-bit math support in the expr applet. This will make
the applet slightly larger, but will allow computation with very
large numbers.
-config BB_FALSE
+config BB_CONFIG_FALSE
bool "false"
default n
help
false returns an exit code of FALSE (1).
-config BB_FOLD
+config BB_CONFIG_FOLD
bool "fold"
default n
help
Wrap text to fit a specific width.
-config BB_HEAD
+config BB_CONFIG_HEAD
bool "head"
default n
help
head is used to print the first specified number of lines
from files.
-config BB_FEATURE_FANCY_HEAD
+config BB_CONFIG_FEATURE_FANCY_HEAD
bool "Enable head options (-c, -q, and -v)"
default n
- depends on BB_HEAD
+ depends on BB_CONFIG_HEAD
help
This enables the head options (-c, -q, and -v).
-config BB_HOSTID
+config BB_CONFIG_HOSTID
bool "hostid"
default n
help
hostid prints the numeric identifier (in hexadecimal) for
the current host.
-config BB_ID
+config BB_CONFIG_ID
bool "id"
default n
help
id displays the current user and group ID names.
-config BB_INSTALL
+config BB_CONFIG_INSTALL
bool "install"
default n
help
Copy files and set attributes.
-config BB_FEATURE_INSTALL_LONG_OPTIONS
+config BB_CONFIG_FEATURE_INSTALL_LONG_OPTIONS
bool "Enable long options"
default n
- depends on BB_INSTALL && BB_GETOPT_LONG
+ depends on BB_CONFIG_INSTALL && BB_CONFIG_GETOPT_LONG
help
Support long options for the install applet.
-config BB_LENGTH
+config BB_CONFIG_LENGTH
bool "length"
default n
help
length is used to print out the length of a specified string.
-config BB_LN
+config BB_CONFIG_LN
bool "ln"
default n
help
ln is used to create hard or soft links between files.
-config BB_LOGNAME
+config BB_CONFIG_LOGNAME
bool "logname"
default n
help
logname is used to print the current user's login name.
-config BB_LS
+config BB_CONFIG_LS
bool "ls"
default n
help
ls is used to list the contents of directories.
-config BB_FEATURE_LS_FILETYPES
+config BB_CONFIG_FEATURE_LS_FILETYPES
bool "Enable filetyping options (-p and -F)"
default y
- depends on BB_LS
+ depends on BB_CONFIG_LS
help
Enable the ls options (-p and -F).
-config BB_FEATURE_LS_FOLLOWLINKS
+config BB_CONFIG_FEATURE_LS_FOLLOWLINKS
bool "Enable symlinks dereferencing (-L)"
default y
- depends on BB_LS
+ depends on BB_CONFIG_LS
help
Enable the ls option (-L).
-config BB_FEATURE_LS_RECURSIVE
+config BB_CONFIG_FEATURE_LS_RECURSIVE
bool "Enable recursion (-R)"
default y
- depends on BB_LS
+ depends on BB_CONFIG_LS
help
Enable the ls option (-R).
-config BB_FEATURE_LS_SORTFILES
+config BB_CONFIG_FEATURE_LS_SORTFILES
bool "Sort the file names"
default y
- depends on BB_LS
+ depends on BB_CONFIG_LS
help
Allow ls to sort file names alphabetically.
-config BB_FEATURE_LS_TIMESTAMPS
+config BB_CONFIG_FEATURE_LS_TIMESTAMPS
bool "Show file timestamps"
default y
- depends on BB_LS
+ depends on BB_CONFIG_LS
help
Allow ls to display timestamps for files.
-config BB_FEATURE_LS_USERNAME
+config BB_CONFIG_FEATURE_LS_USERNAME
bool "Show username/groupnames"
default y
- depends on BB_LS
+ depends on BB_CONFIG_LS
help
Allow ls to display username/groupname for files.
-config BB_FEATURE_LS_COLOR
+config BB_CONFIG_FEATURE_LS_COLOR
bool "Allow use of color to identify file types"
default y
- depends on BB_LS && BB_GETOPT_LONG
+ depends on BB_CONFIG_LS && BB_CONFIG_GETOPT_LONG
help
This enables the --color option to ls.
-config BB_FEATURE_LS_COLOR_IS_DEFAULT
+config BB_CONFIG_FEATURE_LS_COLOR_IS_DEFAULT
bool "Produce colored ls output by default"
default n
- depends on BB_FEATURE_LS_COLOR
+ depends on BB_CONFIG_FEATURE_LS_COLOR
help
Saying yes here will turn coloring on by default,
even if no "--color" option is given to the ls command.
@@ -392,143 +392,143 @@ config BB_FEATURE_LS_COLOR_IS_DEFAULT
configurable, and the output may not be legible on
many output screens.
-config BB_MD5SUM
+config BB_CONFIG_MD5SUM
bool "md5sum"
default n
help
md5sum is used to print or check MD5 checksums.
-config BB_MKDIR
+config BB_CONFIG_MKDIR
bool "mkdir"
default n
help
mkdir is used to create directories with the specified names.
-config BB_FEATURE_MKDIR_LONG_OPTIONS
+config BB_CONFIG_FEATURE_MKDIR_LONG_OPTIONS
bool "Enable long options"
default n
- depends on BB_MKDIR && BB_GETOPT_LONG
+ depends on BB_CONFIG_MKDIR && BB_CONFIG_GETOPT_LONG
help
Support long options for the mkdir applet.
-config BB_MKFIFO
+config BB_CONFIG_MKFIFO
bool "mkfifo"
default n
help
mkfifo is used to create FIFOs (named pipes).
The `mknod' program can also create FIFOs.
-config BB_MKNOD
+config BB_CONFIG_MKNOD
bool "mknod"
default n
help
mknod is used to create FIFOs or block/character special
files with the specified names.
-config BB_MV
+config BB_CONFIG_MV
bool "mv"
default n
help
mv is used to move or rename files or directories.
-config BB_FEATURE_MV_LONG_OPTIONS
+config BB_CONFIG_FEATURE_MV_LONG_OPTIONS
bool "Enable long options"
default n
- depends on BB_MV && BB_GETOPT_LONG
+ depends on BB_CONFIG_MV && BB_CONFIG_GETOPT_LONG
help
Support long options for the mv applet.
-config BB_NICE
+config BB_CONFIG_NICE
bool "nice"
default n
help
nice runs a program with modified scheduling priority.
-config BB_NOHUP
+config BB_CONFIG_NOHUP
bool "nohup"
default n
help
run a command immune to hangups, with output to a non-tty.
-config BB_OD
+config BB_CONFIG_OD
bool "od"
default n
help
od is used to dump binary files in octal and other formats.
-config BB_PRINTENV
+config BB_CONFIG_PRINTENV
bool "printenv"
default n
help
printenv is used to print all or part of environment.
-config BB_PRINTF
+config BB_CONFIG_PRINTF
bool "printf"
default n
help
printf is used to format and print specified strings.
It's similar to `echo' except it has more options.
-config BB_PWD
+config BB_CONFIG_PWD
bool "pwd"
default n
help
pwd is used to print the current directory.
-config BB_REALPATH
+config BB_CONFIG_REALPATH
bool "realpath"
default n
help
Return the canonicalized absolute pathname.
This isn't provided by GNU shellutils, but where else does it belong.
-config BB_RM
+config BB_CONFIG_RM
bool "rm"
default n
help
rm is used to remove files or directories.
-config BB_RMDIR
+config BB_CONFIG_RMDIR
bool "rmdir"
default n
help
rmdir is used to remove empty directories.
-config BB_SEQ
+config BB_CONFIG_SEQ
bool "seq"
default n
help
print a sequence of numbers
-config BB_SHA1SUM
+config BB_CONFIG_SHA1SUM
bool "sha1sum"
default n
help
Compute and check SHA1 message digest
-config BB_SLEEP
+config BB_CONFIG_SLEEP
bool "sleep (single integer arg with no suffix)"
default n
help
sleep is used to pause for a specified number of seconds,
-config BB_FEATURE_FANCY_SLEEP
+config BB_CONFIG_FEATURE_FANCY_SLEEP
bool "Enable multiple integer args and optional time suffixes"
default n
- depends on BB_SLEEP
+ depends on BB_CONFIG_SLEEP
help
Allow sleep to pause for specified minutes, hours, and days.
-config BB_SORT
+config BB_CONFIG_SORT
bool "sort"
default n
help
sort is used to sort lines of text in specified files.
-config BB_FEATURE_SORT_BIG
+config BB_CONFIG_FEATURE_SORT_BIG
bool "full SuSv3 compliant sort (Support -ktcsbdfiozgM)"
default y
- depends on BB_SORT
+ depends on BB_CONFIG_SORT
help
Without this, sort only supports -r, -u, and an integer version
of -n. Selecting this adds sort keys, floating point support, and
@@ -537,69 +537,69 @@ config BB_FEATURE_SORT_BIG
The SuSv3 sort standard is available at:
http://www.opengroup.org/onlinepubs/007904975/utilities/sort.html
-config BB_STAT
+config BB_CONFIG_STAT
bool "stat"
default n
help
display file or filesystem status.
-config BB_FEATURE_STAT_FORMAT
+config BB_CONFIG_FEATURE_STAT_FORMAT
bool "Enable custom formats (-c)"
default n
- depends on BB_STAT
+ depends on BB_CONFIG_STAT
help
Without this, stat will not support the '-c format' option where
users can pass a custom format string for output. This adds about
7k to a nonstatic build on amd64.
-config BB_STTY
+config BB_CONFIG_STTY
bool "stty"
default n
help
stty is used to change and print terminal line settings.
-config BB_SUM
+config BB_CONFIG_SUM
bool "sum"
default n
help
checksum and count the blocks in a file
-config BB_SYNC
+config BB_CONFIG_SYNC
bool "sync"
default n
help
sync is used to flush filesystem buffers.
-config BB_TAIL
+config BB_CONFIG_TAIL
bool "tail"
default n
help
tail is used to print the last specified number of lines
from files.
-config BB_FEATURE_FANCY_TAIL
+config BB_CONFIG_FEATURE_FANCY_TAIL
bool "Enable extra tail options (-q, -s, and -v)"
default y
- depends on BB_TAIL
+ depends on BB_CONFIG_TAIL
help
The options (-q, -s, and -v) are provided by GNU tail, but
are not specific in the SUSv3 standard.
-config BB_TEE
+config BB_CONFIG_TEE
bool "tee"
default n
help
tee is used to read from standard input and write
to standard output and files.
-config BB_FEATURE_TEE_USE_BLOCK_IO
+config BB_CONFIG_FEATURE_TEE_USE_BLOCK_IO
bool "Enable block i/o (larger/faster) instead of byte i/o."
default n
- depends on BB_TEE
+ depends on BB_CONFIG_TEE
help
Enable this option for a faster tee, at expense of size.
-config BB_TEST
+config BB_CONFIG_TEST
bool "test"
default n
help
@@ -607,39 +607,39 @@ config BB_TEST
returning an appropriate exit code. The bash shell
has test built in, ash can build it in optionally.
-config BB_FEATURE_TEST_64
+config BB_CONFIG_FEATURE_TEST_64
bool "Extend test to 64 bit"
default n
- depends on BB_TEST
+ depends on BB_CONFIG_TEST
help
Enable 64-bit support in test.
-config BB_TOUCH
+config BB_CONFIG_TOUCH
bool "touch"
default n
help
touch is used to create or change the access and/or
modification timestamp of specified files.
-config BB_TR
+config BB_CONFIG_TR
bool "tr"
default n
help
tr is used to squeeze, and/or delete characters from standard
input, writing to standard output.
-config BB_FEATURE_TR_CLASSES
+config BB_CONFIG_FEATURE_TR_CLASSES
bool "Enable character classes (such as [:upper:])"
default n
- depends on BB_TR
+ depends on BB_CONFIG_TR
help
Enable character classes, enabling commands such as:
tr [:upper:] [:lower:] to convert input into lowercase.
-config BB_FEATURE_TR_EQUIV
+config BB_CONFIG_FEATURE_TR_EQUIV
bool "Enable equivalence classes"
default n
- depends on BB_TR
+ depends on BB_CONFIG_TR
help
Enable equivalence classes, which essentially add the enclosed
character to the current set. For instance, tr [=a=] xyz would
@@ -647,86 +647,86 @@ config BB_FEATURE_TR_EQUIV
useful for cases when no other way of expressing a character
is possible.
-config BB_TRUE
+config BB_CONFIG_TRUE
bool "true"
default n
help
true returns an exit code of TRUE (0).
-config BB_TTY
+config BB_CONFIG_TTY
bool "tty"
default n
help
tty is used to print the name of the current terminal to
standard output.
-config BB_UNAME
+config BB_CONFIG_UNAME
bool "uname"
default n
help
uname is used to print system information.
-config BB_UNIQ
+config BB_CONFIG_UNIQ
bool "uniq"
default n
help
uniq is used to remove duplicate lines from a sorted file.
-config BB_USLEEP
+config BB_CONFIG_USLEEP
bool "usleep"
default n
help
usleep is used to pause for a specified number of microseconds.
-config BB_UUDECODE
+config BB_CONFIG_UUDECODE
bool "uudecode"
default n
help
uudecode is used to decode a uuencoded file.
-config BB_UUENCODE
+config BB_CONFIG_UUENCODE
bool "uuencode"
default n
help
uuencode is used to uuencode a file.
-config BB_WATCH
+config BB_CONFIG_WATCH
bool "watch"
default n
- select BB_DATE
+ select BB_CONFIG_DATE
help
watch is used to execute a program periodically, showing
output to the screen.
-config BB_WC
+config BB_CONFIG_WC
bool "wc"
default n
help
wc is used to print the number of bytes, words, and lines,
in specified files.
-config BB_FEATURE_WC_LARGE
+config BB_CONFIG_FEATURE_WC_LARGE
bool "Support very large files in wc"
default n
- depends on BB_WC
+ depends on BB_CONFIG_WC
help
Use "unsigned long long" in wc for count variables
-config BB_WHO
+config BB_CONFIG_WHO
bool "who"
default n
- select BB_FEATURE_UTMP
+ select BB_CONFIG_FEATURE_UTMP
help
who is used to show who is logged on.
-config BB_WHOAMI
+config BB_CONFIG_WHOAMI
bool "whoami"
default n
help
whoami is used to print the username of the current
user id (same as id -un).
-config BB_YES
+config BB_CONFIG_YES
bool "yes"
default n
help
@@ -734,22 +734,22 @@ config BB_YES
the default string `y'.
comment "Common options for cp and mv"
- depends on BB_CP || BB_MV
+ depends on BB_CONFIG_CP || BB_CONFIG_MV
-config BB_FEATURE_PRESERVE_HARDLINKS
+config BB_CONFIG_FEATURE_PRESERVE_HARDLINKS
bool "Preserve hard links"
default n
- depends on BB_CP || BB_MV
+ depends on BB_CONFIG_CP || BB_CONFIG_MV
help
Allow cp and mv to preserve hard links.
comment "Common options for ls, more and telnet"
- depends on BB_LS || BB_MORE || BB_TELNET
+ depends on BB_CONFIG_LS || BB_CONFIG_MORE || BB_CONFIG_TELNET
-config BB_FEATURE_AUTOWIDTH
+config BB_CONFIG_FEATURE_AUTOWIDTH
bool "Calculate terminal & column widths"
default y
- depends on BB_LS || BB_MORE || BB_TELNET
+ depends on BB_CONFIG_LS || BB_CONFIG_MORE || BB_CONFIG_TELNET
help
This option allows utilities such as 'ls', 'more' and 'telnet'
to determine the width of the screen, which can allow them to
@@ -758,22 +758,22 @@ config BB_FEATURE_AUTOWIDTH
primitive and will be unable to determine the current screen width.
comment "Common options for df, du, ls"
- depends on BB_DF || BB_DU || BB_LS
+ depends on BB_CONFIG_DF || BB_CONFIG_DU || BB_CONFIG_LS
-config BB_FEATURE_HUMAN_READABLE
+config BB_CONFIG_FEATURE_HUMAN_READABLE
bool "Support for human readable output (example 13k, 23M, 235G)"
default n
- depends on BB_DF || BB_DU || BB_LS
+ depends on BB_CONFIG_DF || BB_CONFIG_DU || BB_CONFIG_LS
help
Allow df, du, and ls to have human readable output.
comment "Common options for md5sum, sha1sum"
- depends on BB_MD5SUM || BB_SHA1SUM
+ depends on BB_CONFIG_MD5SUM || BB_CONFIG_SHA1SUM
-config BB_FEATURE_MD5_SHA1_SUM_CHECK
+config BB_CONFIG_FEATURE_MD5_SHA1_SUM_CHECK
bool "Enable -c, -s and -w options"
default n
- depends on BB_MD5SUM || BB_SHA1SUM
+ depends on BB_CONFIG_MD5SUM || BB_CONFIG_SHA1SUM
help
Enabling the -c options allows files to be checked
against pre-calculated hash values.
diff --git a/config/busybox-1.4.2/debianutils/Config.in b/config/busybox-1.4.2/debianutils/Config.in
index 609205ced..af776e0d3 100644
--- a/config/busybox-1.4.2/debianutils/Config.in
+++ b/config/busybox-1.4.2/debianutils/Config.in
@@ -6,33 +6,33 @@
menu "Debian Utilities"
depends on BUSYBOX
-config BB_MKTEMP
+config BB_CONFIG_MKTEMP
bool "mktemp"
default n
help
mktemp is used to create unique temporary files
-config BB_PIPE_PROGRESS
+config BB_CONFIG_PIPE_PROGRESS
bool "pipe_progress"
default n
help
Display a dot to indicate pipe activity.
-config BB_READLINK
+config BB_CONFIG_READLINK
bool "readlink"
default n
help
This program reads a symbolic link and returns the name
of the file it points to
-config BB_FEATURE_READLINK_FOLLOW
+config BB_CONFIG_FEATURE_READLINK_FOLLOW
bool "Enable canonicalization by following all symlinks (-f)"
default n
- depends on BB_READLINK
+ depends on BB_CONFIG_READLINK
help
Enable the readlink option (-f).
-config BB_RUN_PARTS
+config BB_CONFIG_RUN_PARTS
bool "run-parts"
default n
help
@@ -47,14 +47,14 @@ config BB_RUN_PARTS
Unless you know that run-parts is used in some of your scripts
you can safely say N here.
-config BB_FEATURE_RUN_PARTS_LONG_OPTIONS
+config BB_CONFIG_FEATURE_RUN_PARTS_LONG_OPTIONS
bool "Enable long options"
default n
- depends on BB_RUN_PARTS && BB_GETOPT_LONG
+ depends on BB_CONFIG_RUN_PARTS && BB_CONFIG_GETOPT_LONG
help
Support long options for the run-parts applet.
-config BB_START_STOP_DAEMON
+config BB_CONFIG_START_STOP_DAEMON
bool "start-stop-daemon"
default y
help
@@ -62,23 +62,23 @@ config BB_START_STOP_DAEMON
termination of system-level processes, usually the ones
started during the startup of the system.
-config BB_FEATURE_START_STOP_DAEMON_FANCY
+config BB_CONFIG_FEATURE_START_STOP_DAEMON_FANCY
bool "Support additional arguments"
default y
- depends on BB_START_STOP_DAEMON
+ depends on BB_CONFIG_START_STOP_DAEMON
help
Support additional arguments.
-o|--oknodo ignored since we exit with 0 anyway
-v|--verbose
-config BB_FEATURE_START_STOP_DAEMON_LONG_OPTIONS
+config BB_CONFIG_FEATURE_START_STOP_DAEMON_LONG_OPTIONS
bool "Enable long options"
default n
- depends on BB_START_STOP_DAEMON && BB_GETOPT_LONG
+ depends on BB_CONFIG_START_STOP_DAEMON && BB_CONFIG_GETOPT_LONG
help
Support long options for the start-stop-daemon applet.
-config BB_WHICH
+config BB_CONFIG_WHICH
bool "which"
default n
help
diff --git a/config/busybox-1.4.2/e2fsprogs/Config.in b/config/busybox-1.4.2/e2fsprogs/Config.in
index 9ed134df8..c7714f27e 100644
--- a/config/busybox-1.4.2/e2fsprogs/Config.in
+++ b/config/busybox-1.4.2/e2fsprogs/Config.in
@@ -6,7 +6,7 @@
menu "Linux Ext2 FS Progs"
depends on BUSYBOX
-config BB_CHATTR
+config BB_CONFIG_CHATTR
bool "chattr"
default n
help
@@ -21,7 +21,7 @@ config BB_CHATTR
### The normal compat symlinks 'fsck.ext2' and 'fsck.ext3' are also
### provided.
-config BB_FSCK
+config BB_CONFIG_FSCK
bool "fsck"
default n
help
@@ -29,7 +29,7 @@ config BB_FSCK
In actuality, fsck is simply a front-end for the various file system
checkers (fsck.fstype) available under Linux.
-config BB_LSATTR
+config BB_CONFIG_LSATTR
bool "lsattr"
default n
help
diff --git a/config/busybox-1.4.2/e2fsprogs/old_e2fsprogs/Config.in b/config/busybox-1.4.2/e2fsprogs/old_e2fsprogs/Config.in
index 86339a098..2b5e3698c 100644
--- a/config/busybox-1.4.2/e2fsprogs/old_e2fsprogs/Config.in
+++ b/config/busybox-1.4.2/e2fsprogs/old_e2fsprogs/Config.in
@@ -6,13 +6,13 @@
menu "Linux Ext2 FS Progs"
depends on BUSYBOX
-config BB_CHATTR
+config BB_CONFIG_CHATTR
bool "chattr"
default n
help
chattr changes the file attributes on a second extended file system.
-config BB_E2FSCK
+config BB_CONFIG_E2FSCK
bool "e2fsck"
default n
help
@@ -21,7 +21,7 @@ config BB_E2FSCK
The normal compat symlinks 'fsck.ext2' and 'fsck.ext3' are also
provided.
-config BB_FSCK
+config BB_CONFIG_FSCK
bool "fsck"
default n
help
@@ -29,38 +29,38 @@ config BB_FSCK
In actuality, fsck is simply a front-end for the various file system
checkers (fsck.fstype) available under Linux.
-config BB_LSATTR
+config BB_CONFIG_LSATTR
bool "lsattr"
default n
help
lsattr lists the file attributes on a second extended file system.
-config BB_MKE2FS
+config BB_CONFIG_MKE2FS
bool "mke2fs"
default n
help
mke2fs is used to create an ext2/ext3 filesystem. The normal compat
symlinks 'mkfs.ext2' and 'mkfs.ext3' are also provided.
-config BB_TUNE2FS
+config BB_CONFIG_TUNE2FS
bool "tune2fs"
default n
help
tune2fs allows the system administrator to adjust various tunable
filesystem parameters on Linux ext2/ext3 filesystems.
-config BB_E2LABEL
+config BB_CONFIG_E2LABEL
bool "e2label"
default n
- depends on BB_TUNE2FS
+ depends on BB_CONFIG_TUNE2FS
help
e2label will display or change the filesystem label on the ext2
filesystem located on device.
-config BB_FINDFS
+config BB_CONFIG_FINDFS
bool "findfs"
default n
- depends on BB_TUNE2FS
+ depends on BB_CONFIG_TUNE2FS
help
findfs will search the disks in the system looking for a filesystem
which has a label matching label or a UUID equal to uuid.
diff --git a/config/busybox-1.4.2/editors/Config.in b/config/busybox-1.4.2/editors/Config.in
index 1010545d3..ecdd6365a 100644
--- a/config/busybox-1.4.2/editors/Config.in
+++ b/config/busybox-1.4.2/editors/Config.in
@@ -6,22 +6,22 @@
menu "Editors"
depends on BUSYBOX
-config BB_AWK
+config BB_CONFIG_AWK
bool "awk"
default n
help
Awk is used as a pattern scanning and processing language. This is
the BusyBox implementation of that programming language.
-config BB_FEATURE_AWK_MATH
+config BB_CONFIG_FEATURE_AWK_MATH
bool "Enable math functions (requires libm)"
default y
- depends on BB_AWK
+ depends on BB_CONFIG_AWK
help
Enable math functions of the Awk programming language.
NOTE: This will require libm to be present for linking.
-config BB_ED
+config BB_CONFIG_ED
bool "ed"
default n
help
@@ -29,20 +29,20 @@ config BB_ED
Small, simple, evil. Part of SUSv3. If you're not already using
this, you don't need it.
-config BB_PATCH
+config BB_CONFIG_PATCH
bool "patch"
default n
help
Apply a unified diff formatted patch.
-config BB_SED
+config BB_CONFIG_SED
bool "sed"
default n
help
sed is used to perform text transformations on a file
or input from a pipeline.
-config BB_VI
+config BB_CONFIG_VI
bool "vi"
default n
help
@@ -51,87 +51,87 @@ config BB_VI
learning curve. If you are not already comfortable with 'vi'
you may wish to use something else.
-config BB_FEATURE_VI_COLON
+config BB_CONFIG_FEATURE_VI_COLON
bool "Enable \":\" colon commands (no \"ex\" mode)"
default y
- depends on BB_VI
+ depends on BB_CONFIG_VI
help
Enable a limited set of colon commands for vi. This does not
provide an "ex" mode.
-config BB_FEATURE_VI_YANKMARK
+config BB_CONFIG_FEATURE_VI_YANKMARK
bool "Enable yank/put commands and mark cmds"
default y
- depends on BB_VI
+ depends on BB_CONFIG_VI
help
This will enable you to use yank and put, as well as mark in
busybox vi.
-config BB_FEATURE_VI_SEARCH
+config BB_CONFIG_FEATURE_VI_SEARCH
bool "Enable search and replace cmds"
default y
- depends on BB_VI
+ depends on BB_CONFIG_VI
help
Select this if you wish to be able to do search and replace in
busybox vi.
-config BB_FEATURE_VI_USE_SIGNALS
+config BB_CONFIG_FEATURE_VI_USE_SIGNALS
bool "Catch signals"
default y
- depends on BB_VI
+ depends on BB_CONFIG_VI
help
Selecting this option will make busybox vi signal aware. This will
make busybox vi support SIGWINCH to deal with Window Changes, catch
Ctrl-Z and Ctrl-C and alarms.
-config BB_FEATURE_VI_DOT_CMD
+config BB_CONFIG_FEATURE_VI_DOT_CMD
bool "Remember previous cmd and \".\" cmd"
default y
- depends on BB_VI
+ depends on BB_CONFIG_VI
help
Make busybox vi remember the last command and be able to repeat it.
-config BB_FEATURE_VI_READONLY
+config BB_CONFIG_FEATURE_VI_READONLY
bool "Enable -R option and \"view\" mode"
default y
- depends on BB_VI
+ depends on BB_CONFIG_VI
help
Enable the read-only command line option, which allows the user to
open a file in read-only mode.
-config BB_FEATURE_VI_SETOPTS
+config BB_CONFIG_FEATURE_VI_SETOPTS
bool "Enable set-able options, ai ic showmatch"
default y
- depends on BB_VI
+ depends on BB_CONFIG_VI
help
Enable the editor to set some (ai, ic, showmatch) options.
-config BB_FEATURE_VI_SET
+config BB_CONFIG_FEATURE_VI_SET
bool "Support for :set"
default y
- depends on BB_VI
+ depends on BB_CONFIG_VI
help
Support for ":set".
-config BB_FEATURE_VI_WIN_RESIZE
+config BB_CONFIG_FEATURE_VI_WIN_RESIZE
bool "Handle window resize"
default y
- depends on BB_VI
+ depends on BB_CONFIG_VI
help
Make busybox vi behave nicely with terminals that get resized.
-config BB_FEATURE_VI_OPTIMIZE_CURSOR
+config BB_CONFIG_FEATURE_VI_OPTIMIZE_CURSOR
bool "Optimize cursor movement"
default y
- depends on BB_VI
+ depends on BB_CONFIG_VI
help
This will make the cursor movement faster, but requires more memory
and it makes the applet a tiny bit larger.
-config BB_FEATURE_ALLOW_EXEC
+config BB_CONFIG_FEATURE_ALLOW_EXEC
bool "Allow vi and awk to execute shell commands"
default y
- depends on BB_VI || BB_AWK
+ depends on BB_CONFIG_VI || BB_CONFIG_AWK
help
Enables vi and awk features which allows user to execute
shell commands (using system() C call).
diff --git a/config/busybox-1.4.2/findutils/Config.in b/config/busybox-1.4.2/findutils/Config.in
index d11ce326a..60cf7c9e7 100644
--- a/config/busybox-1.4.2/findutils/Config.in
+++ b/config/busybox-1.4.2/findutils/Config.in
@@ -6,152 +6,152 @@
menu "Finding Utilities"
depends on BUSYBOX
-config BB_FIND
+config BB_CONFIG_FIND
bool "find"
default n
help
find is used to search your system to find specified files.
-config BB_FEATURE_FIND_PRINT0
+config BB_CONFIG_FEATURE_FIND_PRINT0
bool "Enable -print0 option"
default y
- depends on BB_FIND
+ depends on BB_CONFIG_FIND
help
Causes output names to be separated by a null character
rather than a newline. This allows names that contain
newlines and other whitespace to be more easily
interpreted by other programs.
-config BB_FEATURE_FIND_MTIME
+config BB_CONFIG_FEATURE_FIND_MTIME
bool "Enable modified time matching (-mtime) option"
default y
- depends on BB_FIND
+ depends on BB_CONFIG_FIND
help
Allow searching based on the modification time of
files, in days.
-config BB_FEATURE_FIND_MMIN
+config BB_CONFIG_FEATURE_FIND_MMIN
bool "Enable modified time matching (-min) option"
default y
- depends on BB_FIND
+ depends on BB_CONFIG_FIND
help
Allow searching based on the modification time of
files, in minutes.
-config BB_FEATURE_FIND_PERM
+config BB_CONFIG_FEATURE_FIND_PERM
bool "Enable permissions matching (-perm) option"
default y
- depends on BB_FIND
+ depends on BB_CONFIG_FIND
help
Enable searching based on file permissions.
-config BB_FEATURE_FIND_TYPE
+config BB_CONFIG_FEATURE_FIND_TYPE
bool "Enable filetype matching (-type) option"
default y
- depends on BB_FIND
+ depends on BB_CONFIG_FIND
help
Enable searching based on file type (file,
directory, socket, device, etc.).
-config BB_FEATURE_FIND_XDEV
+config BB_CONFIG_FEATURE_FIND_XDEV
bool "Enable stay in filesystem (-xdev) option"
default y
- depends on BB_FIND
+ depends on BB_CONFIG_FIND
help
This option will allow find to restrict searches to a single
filesystem.
-config BB_FEATURE_FIND_NEWER
+config BB_CONFIG_FEATURE_FIND_NEWER
bool "Enable -newer option for comparing file mtimes"
default y
- depends on BB_FIND
+ depends on BB_CONFIG_FIND
help
Support the 'find -newer' option for finding any files which have
a modified time that is more recent than the specified FILE.
-config BB_FEATURE_FIND_INUM
+config BB_CONFIG_FEATURE_FIND_INUM
bool "Enable inode number matching (-inum) option"
default y
- depends on BB_FIND
+ depends on BB_CONFIG_FIND
help
Support the 'find -inum' option for searching by inode number.
-config BB_FEATURE_FIND_EXEC
+config BB_CONFIG_FEATURE_FIND_EXEC
bool "Enable (-exec) option allowing execution of commands"
default y
- depends on BB_FIND
+ depends on BB_CONFIG_FIND
help
Support the 'find -exec' option for executing commands based upon
the files matched.
-config BB_GREP
+config BB_CONFIG_GREP
bool "grep"
default n
help
grep is used to search files for a specified pattern.
-config BB_FEATURE_GREP_EGREP_ALIAS
+config BB_CONFIG_FEATURE_GREP_EGREP_ALIAS
bool "Support extended regular expressions (egrep & grep -E)"
default y
- depends on BB_GREP
+ depends on BB_CONFIG_GREP
help
Enabled support for extended regular expressions. Extended
regular expressions allow for alternation (foo|bar), grouping,
and various repetition operators.
-config BB_FEATURE_GREP_FGREP_ALIAS
+config BB_CONFIG_FEATURE_GREP_FGREP_ALIAS
bool "Alias fgrep to grep -F"
default y
- depends on BB_GREP
+ depends on BB_CONFIG_GREP
help
fgrep sees the search pattern as a normal string rather than
regular expressions.
grep -F is always builtin, this just creates the fgrep alias.
-config BB_FEATURE_GREP_CONTEXT
+config BB_CONFIG_FEATURE_GREP_CONTEXT
bool "Enable before and after context flags (-A, -B and -C)"
default y
- depends on BB_GREP
+ depends on BB_CONFIG_GREP
help
Print the specified number of leading (-B) and/or trailing (-A)
context surrounding our matching lines.
Print the specified number of context lines (-C).
-config BB_XARGS
+config BB_CONFIG_XARGS
bool "xargs"
default n
help
xargs is used to execute a specified command on
every item from standard input.
-config BB_FEATURE_XARGS_SUPPORT_CONFIRMATION
+config BB_CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION
bool "Enable prompt and confirmation option -p"
default n
- depends on BB_XARGS
+ depends on BB_CONFIG_XARGS
help
Support prompt the user about whether to run each command
line and read a line from the terminal.
-config BB_FEATURE_XARGS_SUPPORT_QUOTES
+config BB_CONFIG_FEATURE_XARGS_SUPPORT_QUOTES
bool "Enable support single and double quotes and backslash"
default n
- depends on BB_XARGS
+ depends on BB_CONFIG_XARGS
help
Default xargs unsupport single and double quotes
and backslash for can use aruments with spaces.
-config BB_FEATURE_XARGS_SUPPORT_TERMOPT
+config BB_CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT
bool "Enable support options -x"
default n
- depends on BB_XARGS
+ depends on BB_CONFIG_XARGS
help
Enable support exit if the size (see the -s or -n option)
is exceeded.
-config BB_FEATURE_XARGS_SUPPORT_ZERO_TERM
+config BB_CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM
bool "Enable null terminated option -0"
default n
- depends on BB_XARGS
+ depends on BB_CONFIG_XARGS
help
Enable input filenames are terminated by a null character
instead of by whitespace, and the quotes and backslash
diff --git a/config/busybox-1.4.2/init/Config.in b/config/busybox-1.4.2/init/Config.in
index 5ad011e68..a4b0f3d97 100644
--- a/config/busybox-1.4.2/init/Config.in
+++ b/config/busybox-1.4.2/init/Config.in
@@ -6,32 +6,32 @@
menu "Init Utilities"
depends on BUSYBOX
-config BB_INIT
+config BB_CONFIG_INIT
bool "init"
default n
- select BB_FEATURE_SYSLOG
+ select BB_CONFIG_FEATURE_SYSLOG
help
init is the first program run when the system boots.
-config BB_DEBUG_INIT
+config BB_CONFIG_DEBUG_INIT
bool "debugging aid"
default n
- depends on BB_INIT
+ depends on BB_CONFIG_INIT
help
Turn this on to disable all the dangerous
rebooting stuff when debugging.
-config BB_FEATURE_USE_INITTAB
+config BB_CONFIG_FEATURE_USE_INITTAB
bool "Support reading an inittab file"
default y
- depends on BB_INIT
+ depends on BB_CONFIG_INIT
help
Allow init to read an inittab file when the system boot.
-config BB_FEATURE_INIT_SCTTY
+config BB_CONFIG_FEATURE_INIT_SCTTY
bool "Support running commands with a controlling-tty"
default n
- depends on BB_INIT
+ depends on BB_CONFIG_INIT
help
If this option is enabled a command starting with hyphen (-)
is run in its own session (setsid(2)) and possibly with a
@@ -39,17 +39,17 @@ config BB_FEATURE_INIT_SCTTY
behavour, but is often what you want in an embedded system where
the console is only accessed during development or for maintenance.
-config BB_FEATURE_EXTRA_QUIET
+config BB_CONFIG_FEATURE_EXTRA_QUIET
bool "Be _extra_ quiet on boot"
default y
- depends on BB_INIT
+ depends on BB_CONFIG_INIT
help
Prevent init from logging some messages to the console during boot.
-config BB_FEATURE_INIT_COREDUMPS
+config BB_CONFIG_FEATURE_INIT_COREDUMPS
bool "Support dumping core for child processes (debugging only)"
default n
- depends on BB_INIT
+ depends on BB_CONFIG_INIT
help
If this option is enabled and the file /.init_enable_core
exists, then init will call setrlimit() to allow unlimited
@@ -58,10 +58,10 @@ config BB_FEATURE_INIT_COREDUMPS
-config BB_FEATURE_INITRD
+config BB_CONFIG_FEATURE_INITRD
bool "Support running init from within an initrd (not initramfs)"
default y
- depends on BB_INIT
+ depends on BB_CONFIG_INIT
help
Legacy support for running init under the old-style initrd. Allows
the name linuxrc to act as init, and it doesn't assume init is PID 1.
@@ -69,13 +69,13 @@ config BB_FEATURE_INITRD
This does not apply to initramfs, which runs /init as PID 1 and
requires no special support.
-config BB_HALT
+config BB_CONFIG_HALT
bool "poweroff, halt, and reboot"
default y
help
Stop all processes and either halt, reboot, or power off the system.
-config BB_MESG
+config BB_CONFIG_MESG
bool "mesg"
default y
help
diff --git a/config/busybox-1.4.2/libbb/Config.in b/config/busybox-1.4.2/libbb/Config.in
index 112c062d1..c4087c9b8 100644
--- a/config/busybox-1.4.2/libbb/Config.in
+++ b/config/busybox-1.4.2/libbb/Config.in
@@ -6,14 +6,14 @@
menu "Busybox Library Tuning"
depends on BUSYBOX
-config BB_PASSWORD_MINLEN
+config BB_CONFIG_PASSWORD_MINLEN
int "Minimum password length"
default 6
range 5 32
help
Minimum allowable password length.
-config BB_MD5_SIZE_VS_SPEED
+config BB_CONFIG_MD5_SIZE_VS_SPEED
int " MD5: Trade Bytes for Speed"
default 2
range 0 3
diff --git a/config/busybox-1.4.2/loginutils/Config.in b/config/busybox-1.4.2/loginutils/Config.in
index 0cc2209ae..271c8e721 100644
--- a/config/busybox-1.4.2/loginutils/Config.in
+++ b/config/busybox-1.4.2/loginutils/Config.in
@@ -6,7 +6,7 @@
menu "Login/Password Management Utilities"
depends on BUSYBOX
-config BB_FEATURE_SHADOWPASSWDS
+config BB_CONFIG_FEATURE_SHADOWPASSWDS
bool "Support for shadow passwords"
default n
help
@@ -14,10 +14,10 @@ config BB_FEATURE_SHADOWPASSWDS
readable by root and thus the encrypted passwords are no longer
publicly readable.
-config BB_USE_BB_SHADOW
+config BB_CONFIG_USE_BB_SHADOW
bool " Use busybox shadow password functions"
default y
- depends on BB_USE_BB_PWD_GRP && BB_FEATURE_SHADOWPASSWDS
+ depends on BB_CONFIG_USE_BB_PWD_GRP && BB_CONFIG_FEATURE_SHADOWPASSWDS
help
If you leave this disabled, busybox will use the system's shadow
password handling functions. And if you are using the GNU C library
@@ -33,7 +33,7 @@ config BB_USE_BB_SHADOW
able to use PAM to access shadow passwords from remote LDAP
password servers and whatnot.
-config BB_USE_BB_PWD_GRP
+config BB_CONFIG_USE_BB_PWD_GRP
bool "Use internal password and group functions rather than system functions"
default n
help
@@ -54,86 +54,86 @@ config BB_USE_BB_PWD_GRP
If you enable this option, it will add about 1.5k to busybox.
-config BB_ADDGROUP
+config BB_CONFIG_ADDGROUP
bool "addgroup"
default n
help
Utility for creating a new group account.
-config BB_DELGROUP
+config BB_CONFIG_DELGROUP
bool "delgroup"
default n
help
Utility for deleting a group account.
-config BB_ADDUSER
+config BB_CONFIG_ADDUSER
bool "adduser"
default n
help
Utility for creating a new user account.
-config BB_DELUSER
+config BB_CONFIG_DELUSER
bool "deluser"
default n
help
Utility for deleting a user account.
-config BB_GETTY
+config BB_CONFIG_GETTY
bool "getty"
default n
- select BB_FEATURE_SYSLOG
+ select BB_CONFIG_FEATURE_SYSLOG
help
getty lets you log in on a tty, it is normally invoked by init.
-config BB_FEATURE_UTMP
+config BB_CONFIG_FEATURE_UTMP
bool "Support utmp file"
- depends on BB_GETTY || BB_LOGIN || BB_SU || BB_WHO
+ depends on BB_CONFIG_GETTY || BB_CONFIG_LOGIN || BB_CONFIG_SU || BB_CONFIG_WHO
default n
help
The file /var/run/utmp is used to track who is currently logged in.
-config BB_FEATURE_WTMP
+config BB_CONFIG_FEATURE_WTMP
bool "Support wtmp file"
- depends on BB_GETTY || BB_LOGIN || BB_SU || BB_LAST
+ depends on BB_CONFIG_GETTY || BB_CONFIG_LOGIN || BB_CONFIG_SU || BB_CONFIG_LAST
default n
- select BB_FEATURE_UTMP
+ select BB_CONFIG_FEATURE_UTMP
help
The file /var/run/wtmp is used to track when user's have logged into
and logged out of the system.
-config BB_LOGIN
+config BB_CONFIG_LOGIN
bool "login"
default n
- select BB_FEATURE_SUID
- select BB_FEATURE_SYSLOG
+ select BB_CONFIG_FEATURE_SUID
+ select BB_CONFIG_FEATURE_SYSLOG
help
login is used when signing onto a system.
Note that Busybox binary must be setuid root for this applet to
work properly.
-config BB_LOGIN_SCRIPTS
+config BB_CONFIG_LOGIN_SCRIPTS
bool "Support for login scripts"
- depends on BB_LOGIN
+ depends on BB_CONFIG_LOGIN
default n
help
Enable this if you want login to execute $LOGIN_PRE_SUID_SCRIPT
just prior to switching from root to logged-in user.
-config BB_FEATURE_SECURETTY
+config BB_CONFIG_FEATURE_SECURETTY
bool "Support for /etc/securetty"
default y
- depends on BB_LOGIN
+ depends on BB_CONFIG_LOGIN
help
The file /etc/securetty is used by (some versions of) login(1).
The file contains the device names of tty lines (one per line,
without leading /dev/) on which root is allowed to login.
-config BB_PASSWD
+config BB_CONFIG_PASSWD
bool "passwd"
default n
- select BB_FEATURE_SUID
- select BB_FEATURE_SYSLOG
+ select BB_CONFIG_FEATURE_SUID
+ select BB_CONFIG_FEATURE_SYSLOG
help
passwd changes passwords for user and group accounts. A normal user
may only change the password for his/her own account, the super user
@@ -143,18 +143,18 @@ config BB_PASSWD
Note that Busybox binary must be setuid root for this applet to
work properly.
-config BB_FEATURE_PASSWD_WEAK_CHECK
+config BB_CONFIG_FEATURE_PASSWD_WEAK_CHECK
bool "Check new passwords for weakness"
default y
- depends on BB_PASSWD
+ depends on BB_CONFIG_PASSWD
help
With this option passwd will refuse new passwords which are "weak".
-config BB_SU
+config BB_CONFIG_SU
bool "su"
default n
- select BB_FEATURE_SUID
- select BB_FEATURE_SYSLOG
+ select BB_CONFIG_FEATURE_SUID
+ select BB_CONFIG_FEATURE_SYSLOG
help
su is used to become another user during a login session.
Invoked without a username, su defaults to becoming the super user.
@@ -162,28 +162,28 @@ config BB_SU
Note that Busybox binary must be setuid root for this applet to
work properly.
-config BB_FEATURE_SU_SYSLOG
+config BB_CONFIG_FEATURE_SU_SYSLOG
bool "Enable su to write to syslog"
default y
- depends on BB_SU
+ depends on BB_CONFIG_SU
-config BB_FEATURE_SU_CHECKS_SHELLS
+config BB_CONFIG_FEATURE_SU_CHECKS_SHELLS
bool "Enable su to check user's shell to be listed in /etc/shells"
- depends on BB_SU
+ depends on BB_CONFIG_SU
default y
-config BB_SULOGIN
+config BB_CONFIG_SULOGIN
bool "sulogin"
default n
- select BB_FEATURE_SYSLOG
+ select BB_CONFIG_FEATURE_SYSLOG
help
sulogin is invoked when the system goes into single user
mode (this is done through an entry in inittab).
-config BB_VLOCK
+config BB_CONFIG_VLOCK
bool "vlock"
default n
- select BB_FEATURE_SUID
+ select BB_CONFIG_FEATURE_SUID
help
Build the "vlock" applet which allows you to lock (virtual) terminals.
diff --git a/config/busybox-1.4.2/miscutils/Config.in b/config/busybox-1.4.2/miscutils/Config.in
index a0c9a868b..bc4d084b2 100644
--- a/config/busybox-1.4.2/miscutils/Config.in
+++ b/config/busybox-1.4.2/miscutils/Config.in
@@ -6,25 +6,25 @@
menu "Miscellaneous Utilities"
depends on BUSYBOX
-config BB_ADJTIMEX
+config BB_CONFIG_ADJTIMEX
bool "adjtimex"
default n
help
Adjtimex reads and optionally sets adjustment parameters for
the Linux clock adjustment algorithm.
-config BB_BBCONFIG
+config BB_CONFIG_BBCONFIG
bool "bbconfig"
default n
help
The bbconfig applet will print the config file with which
busybox was built.
-config BB_CROND
+config BB_CONFIG_CROND
bool "crond"
default n
- select BB_FEATURE_SUID
- select BB_FEATURE_SYSLOG
+ select BB_CONFIG_FEATURE_SUID
+ select BB_CONFIG_FEATURE_SYSLOG
help
Crond is a background daemon that parses individual crontab
files and executes commands on behalf of the users in question.
@@ -36,39 +36,39 @@ config BB_CROND
Note that Busybox binary must be setuid root for this applet to
work properly.
-config BB_DEBUG_CROND_OPTION
+config BB_CONFIG_DEBUG_CROND_OPTION
bool "Support debug option -d"
- depends on BB_CROND
+ depends on BB_CONFIG_CROND
default n
help
Support option -d to enter debug mode.
-config BB_FEATURE_CROND_CALL_SENDMAIL
+config BB_CONFIG_FEATURE_CROND_CALL_SENDMAIL
bool "Using /usr/sbin/sendmail?"
default n
- depends on BB_CROND
+ depends on BB_CONFIG_CROND
help
Support calling /usr/sbin/sendmail for send cmd outputs.
-config BB_CRONTAB
+config BB_CONFIG_CRONTAB
bool "crontab"
default n
- select BB_FEATURE_SUID
+ select BB_CONFIG_FEATURE_SUID
help
Crontab manipulates the crontab for a particular user. Only
the superuser may specify a different user and/or crontab directory.
-config BB_DC
+config BB_CONFIG_DC
bool "dc"
default n
help
Dc is a reverse-polish desk calculator which supports unlimited
precision arithmetic.
-config BB_DEVFSD
+config BB_CONFIG_DEVFSD
bool "devfsd (obsolete)"
default n
- select BB_FEATURE_SYSLOG
+ select BB_CONFIG_FEATURE_SYSLOG
help
This is deprecated, and will be removed at the end of 2008.
@@ -81,30 +81,30 @@ config BB_DEVFSD
But only if they are written UPPERCASE!!!!!!!!
-config BB_DEVFSD_MODLOAD
+config BB_CONFIG_DEVFSD_MODLOAD
bool "Adds support for MODLOAD keyword in devsfd.conf"
default n
- depends on BB_DEVFSD
+ depends on BB_CONFIG_DEVFSD
help
This actually doesn't work with busybox modutils but needs
the external modutils.
-config BB_DEVFSD_FG_NP
+config BB_CONFIG_DEVFSD_FG_NP
bool "Enables the -fg and -np options"
default n
- depends on BB_DEVFSD
+ depends on BB_CONFIG_DEVFSD
help
-fg Run the daemon in the foreground.
-np Exit after parsing the configuration file. Do not poll for events.
-config BB_DEVFSD_VERBOSE
+config BB_CONFIG_DEVFSD_VERBOSE
bool "Increases logging (and size)"
default n
- depends on BB_DEVFSD
+ depends on BB_CONFIG_DEVFSD
help
Increases logging to stderr or syslog.
-config BB_FEATURE_DEVFS
+config BB_CONFIG_FEATURE_DEVFS
bool " Use devfs names for all devices (obsolete)"
default n
help
@@ -114,72 +114,72 @@ config BB_FEATURE_DEVFS
/dev/loop0. If your /dev directory has normal names instead of
devfs names, you don't want this.
-config BB_EJECT
+config BB_CONFIG_EJECT
bool "eject"
default n
help
Used to eject cdroms. (defaults to /dev/cdrom)
-config BB_LAST
+config BB_CONFIG_LAST
bool "last"
default n
- select BB_FEATURE_WTMP
+ select BB_CONFIG_FEATURE_WTMP
help
'last' displays a list of the last users that logged into the system.
-config BB_LESS
+config BB_CONFIG_LESS
bool "less"
default n
help
'less' is a pager, meaning that it displays text files. It possesses
a wide array of features, and is an improvement over 'more'.
-config BB_FEATURE_LESS_MAXLINES
+config BB_CONFIG_FEATURE_LESS_MAXLINES
int "Max number of input lines less will try to eat"
default 9999999
- depends on BB_LESS
+ depends on BB_CONFIG_LESS
-config BB_FEATURE_LESS_BRACKETS
+config BB_CONFIG_FEATURE_LESS_BRACKETS
bool "Enable bracket searching"
default y
- depends on BB_LESS
+ depends on BB_CONFIG_LESS
help
This option adds the capability to search for matching left and right
brackets, facilitating programming.
-config BB_FEATURE_LESS_FLAGS
+config BB_CONFIG_FEATURE_LESS_FLAGS
bool "Enable extra flags"
default y
- depends on BB_LESS
+ depends on BB_CONFIG_LESS
help
The extra flags provided do the following:
The -M flag enables a more sophisticated status line.
The -m flag enables a simpler status line with a percentage.
-config BB_FEATURE_LESS_FLAGCS
+config BB_CONFIG_FEATURE_LESS_FLAGCS
bool "Enable flag changes"
default n
- depends on BB_LESS
+ depends on BB_CONFIG_LESS
help
This enables the ability to change command-line flags within
less itself.
-config BB_FEATURE_LESS_MARKS
+config BB_CONFIG_FEATURE_LESS_MARKS
bool "Enable marks"
default n
- depends on BB_LESS
+ depends on BB_CONFIG_LESS
help
Marks enable positions in a file to be stored for easy reference.
-config BB_FEATURE_LESS_REGEXP
+config BB_CONFIG_FEATURE_LESS_REGEXP
bool "Enable regular expressions"
default n
- depends on BB_LESS
+ depends on BB_CONFIG_LESS
help
Enable regular expressions, allowing complex file searches.
-config BB_HDPARM
+config BB_CONFIG_HDPARM
bool "hdparm"
default n
help
@@ -187,58 +187,58 @@ config BB_HDPARM
drives. Adds about 13k (or around 30k if you enable the
FEATURE_HDPARM_GET_IDENTITY option)....
-config BB_FEATURE_HDPARM_GET_IDENTITY
+config BB_CONFIG_FEATURE_HDPARM_GET_IDENTITY
bool "Support obtaining detailed information directly from drives"
default y
- depends on BB_HDPARM
+ depends on BB_CONFIG_HDPARM
help
Enables the -I and -i options to obtain detailed information
directly from drives about their capabilities and supported ATA
feature set. If no device name is specified, hdparm will read
identify data from stdin. Enabling this option will add about 16k...
-config BB_FEATURE_HDPARM_HDIO_SCAN_HWIF
+config BB_CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF
bool "Register an IDE interface (DANGEROUS)"
default n
- depends on BB_HDPARM
+ depends on BB_CONFIG_HDPARM
help
Enables the 'hdparm -R' option to register an IDE interface.
This is dangerous stuff, so you should probably say N.
-config BB_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF
+config BB_CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF
bool "Un-register an IDE interface (DANGEROUS)"
default n
- depends on BB_HDPARM
+ depends on BB_CONFIG_HDPARM
help
Enables the 'hdparm -U' option to un-register an IDE interface.
This is dangerous stuff, so you should probably say N.
-config BB_FEATURE_HDPARM_HDIO_DRIVE_RESET
+config BB_CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET
bool "perform device reset (DANGEROUS)"
default n
- depends on BB_HDPARM
+ depends on BB_CONFIG_HDPARM
help
Enables the 'hdparm -w' option to perform a device reset.
This is dangerous stuff, so you should probably say N.
-config BB_FEATURE_HDPARM_HDIO_TRISTATE_HWIF
+config BB_CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF
bool "tristate device for hotswap (DANGEROUS)"
default n
- depends on BB_HDPARM
+ depends on BB_CONFIG_HDPARM
help
Enables the 'hdparm -x' option to tristate device for hotswap,
and the '-b' option to get/set bus state. This is dangerous
stuff, so you should probably say N.
-config BB_FEATURE_HDPARM_HDIO_GETSET_DMA
+config BB_CONFIG_FEATURE_HDPARM_HDIO_GETSET_DMA
bool "get/set using_dma flag (DANGEROUS)"
default n
- depends on BB_HDPARM
+ depends on BB_CONFIG_HDPARM
help
Enables the 'hdparm -d' option to get/set using_dma flag.
This is dangerous stuff, so you should probably say N.
-config BB_MAKEDEVS
+config BB_CONFIG_MAKEDEVS
bool "makedevs"
default n
help
@@ -259,24 +259,24 @@ config BB_MAKEDEVS
choice
prompt "Choose makedevs behaviour"
- depends BB_MAKEDEVS
- default BB_FEATURE_MAKEDEVS_TABLE
+ depends BB_CONFIG_MAKEDEVS
+ default BB_CONFIG_FEATURE_MAKEDEVS_TABLE
-config BB_FEATURE_MAKEDEVS_LEAF
+config BB_CONFIG_FEATURE_MAKEDEVS_LEAF
bool "leaf"
-config BB_FEATURE_MAKEDEVS_TABLE
+config BB_CONFIG_FEATURE_MAKEDEVS_TABLE
bool "table"
endchoice
-config BB_MOUNTPOINT
+config BB_CONFIG_MOUNTPOINT
bool "mountpoint"
default n
help
mountpoint checks if the directory is a mountpoint.
-config BB_MT
+config BB_CONFIG_MT
bool "mt"
default n
help
@@ -284,23 +284,23 @@ config BB_MT
to advance or rewind a tape past a specified number of archive
files on the tape.
-config BB_NMETER
+config BB_CONFIG_NMETER
bool "nmeter"
default n
help
nmeter prints various system parameters continuously.
-config BB_RAIDAUTORUN
+config BB_CONFIG_RAIDAUTORUN
bool "raidautorun"
default n
help
raidautorun tells the kernel md driver to
search and start RAID arrays.
-config BB_READAHEAD
+config BB_CONFIG_READAHEAD
bool "readahead"
default n
- depends on BB_LFS
+ depends on BB_CONFIG_LFS
help
Preload the files listed on the command line into RAM cache so that
subsequent reads on these files will not block on disk I/O.
@@ -314,7 +314,7 @@ config BB_READAHEAD
As readahead(2) blocks until each file has been read, it is best to
run this applet as a background job.
-config BB_RUNLEVEL
+config BB_CONFIG_RUNLEVEL
bool "runlevel"
default n
help
@@ -323,42 +323,42 @@ config BB_RUNLEVEL
This applet uses utmp but does not rely on busybox supporing
utmp on purpose. It is used by e.g. emdebian via /etc/init.d/rc.
-config BB_RX
+config BB_CONFIG_RX
bool "rx"
default n
help
Receive files using the Xmodem protocol.
-config BB_STRINGS
+config BB_CONFIG_STRINGS
bool "strings"
default n
help
strings prints the printable character sequences for each file
specified.
-config BB_SETSID
+config BB_CONFIG_SETSID
bool "setsid"
default n
help
setsid runs a program in a new session
-config BB_TASKSET
+config BB_CONFIG_TASKSET
bool "taskset"
default n
help
Retrieve or set a processes's CPU affinity.
This requires sched_{g,s}etaffinity support in your libc.
-config BB_FEATURE_TASKSET_FANCY
+config BB_CONFIG_FEATURE_TASKSET_FANCY
bool "fancy output"
default y
- depends on BB_TASKSET
+ depends on BB_CONFIG_TASKSET
help
Add code for fancy output. This merely silences a compiler-warning
and adds about 135 Bytes. May be needed for machines with alot
of CPUs.
-config BB_TIME
+config BB_CONFIG_TIME
bool "time"
default n
help
@@ -366,7 +366,7 @@ config BB_TIME
When the command finishes, time writes a message to standard output
giving timing statistics about this program run.
-config BB_WATCHDOG
+config BB_CONFIG_WATCHDOG
bool "watchdog"
default n
help
diff --git a/config/busybox-1.4.2/modutils/Config.in b/config/busybox-1.4.2/modutils/Config.in
index 0cebab95f..ae6779348 100644
--- a/config/busybox-1.4.2/modutils/Config.in
+++ b/config/busybox-1.4.2/modutils/Config.in
@@ -6,24 +6,24 @@
menu "Linux Module Utilities"
depends on BUSYBOX
-config BB_INSMOD
+config BB_CONFIG_INSMOD
bool "insmod"
default n
help
insmod is used to load specified modules in the running kernel.
-config BB_FEATURE_INSMOD_VERSION_CHECKING
+config BB_CONFIG_FEATURE_INSMOD_VERSION_CHECKING
bool "Module version checking"
default n
- depends on BB_INSMOD && BB_FEATURE_2_4_MODULES
+ depends on BB_CONFIG_INSMOD && BB_CONFIG_FEATURE_2_4_MODULES
help
Support checking of versions for modules. This is used to
ensure that the kernel and module are made for each other.
-config BB_FEATURE_INSMOD_KSYMOOPS_SYMBOLS
+config BB_CONFIG_FEATURE_INSMOD_KSYMOOPS_SYMBOLS
bool "Add module symbols to kernel symbol table"
default n
- depends on BB_INSMOD && BB_FEATURE_2_4_MODULES
+ depends on BB_CONFIG_INSMOD && BB_CONFIG_FEATURE_2_4_MODULES
help
By adding module symbols to the kernel symbol table, Oops messages
occuring within kernel modules can be properly debugged. By enabling
@@ -31,20 +31,20 @@ config BB_FEATURE_INSMOD_KSYMOOPS_SYMBOLS
table for properly debugging support. If you are not interested in
Oops messages from kernel modules, say N.
-config BB_FEATURE_INSMOD_LOADINKMEM
+config BB_CONFIG_FEATURE_INSMOD_LOADINKMEM
bool "In kernel memory optimization (uClinux only)"
default n
- depends on BB_INSMOD && BB_FEATURE_2_4_MODULES
+ depends on BB_CONFIG_INSMOD && BB_CONFIG_FEATURE_2_4_MODULES
help
This is a special uClinux only memory optimization that lets insmod
load the specified kernel module directly into kernel space, reducing
memory usage by preventing the need for two copies of the module
being loaded into memory.
-config BB_FEATURE_INSMOD_LOAD_MAP
+config BB_CONFIG_FEATURE_INSMOD_LOAD_MAP
bool "Enable load map (-m) option"
default n
- depends on BB_INSMOD && ( BB_FEATURE_2_4_MODULES || BB_FEATURE_2_6_MODULES )
+ depends on BB_CONFIG_INSMOD && ( BB_CONFIG_FEATURE_2_4_MODULES || BB_CONFIG_FEATURE_2_6_MODULES )
help
Enabling this, one would be able to get a load map
output on stdout. This makes kernel module debugging
@@ -52,36 +52,36 @@ config BB_FEATURE_INSMOD_LOAD_MAP
If you don't plan to debug kernel modules, you
don't need this option.
-config BB_FEATURE_INSMOD_LOAD_MAP_FULL
+config BB_CONFIG_FEATURE_INSMOD_LOAD_MAP_FULL
bool "Symbols in load map"
default y
- depends on BB_FEATURE_INSMOD_LOAD_MAP
+ depends on BB_CONFIG_FEATURE_INSMOD_LOAD_MAP
help
Without this option, -m will only output section
load map. With this option, -m will also output
symbols load map.
-config BB_RMMOD
+config BB_CONFIG_RMMOD
bool "rmmod"
default n
help
rmmod is used to unload specified modules from the kernel.
-config BB_LSMOD
+config BB_CONFIG_LSMOD
bool "lsmod"
default n
help
lsmod is used to display a list of loaded modules.
-config BB_FEATURE_LSMOD_PRETTY_2_6_OUTPUT
+config BB_CONFIG_FEATURE_LSMOD_PRETTY_2_6_OUTPUT
bool "lsmod pretty output for 2.6.x Linux kernels "
default n
- depends on BB_LSMOD
+ depends on BB_CONFIG_LSMOD
help
This option makes output format of lsmod adjusted to
the format of module-init-tools for Linux kernel 2.6.
-config BB_MODPROBE
+config BB_CONFIG_MODPROBE
bool "modprobe"
default n
help
@@ -91,11 +91,11 @@ config BB_MODPROBE
Note that in the state, modprobe does not understand multiple
module options from the configuration file. See option below.
-config BB_FEATURE_MODPROBE_MULTIPLE_OPTIONS
+config BB_CONFIG_FEATURE_MODPROBE_MULTIPLE_OPTIONS
bool
prompt "Multiple options parsing" if NITPICK
default y
- depends on BB_MODPROBE
+ depends on BB_CONFIG_MODPROBE
help
Allow modprobe to understand more than one option to pass to
modules.
@@ -108,51 +108,51 @@ config BB_FEATURE_MODPROBE_MULTIPLE_OPTIONS
Saying Y here is not a bad idea if you're not that short
on storage capacity.
-config BB_FEATURE_MODPROBE_FANCY_ALIAS
+config BB_CONFIG_FEATURE_MODPROBE_FANCY_ALIAS
bool
prompt "Fancy alias parsing" if NITPICK
default y
- depends on BB_MODPROBE && BB_FEATURE_2_6_MODULES
+ depends on BB_CONFIG_MODPROBE && BB_CONFIG_FEATURE_2_6_MODULES
help
Say 'y' here to enable parsing of aliases with underscore/dash
mismatch between module name and file name, along with bus-specific
aliases (such as pci:... or usb:... aliases).
comment "Options common to multiple modutils"
- depends on BB_INSMOD || BB_RMMOD || BB_MODPROBE || BB_LSMOD
+ depends on BB_CONFIG_INSMOD || BB_CONFIG_RMMOD || BB_CONFIG_MODPROBE || BB_CONFIG_LSMOD
-config BB_FEATURE_CHECK_TAINTED_MODULE
+config BB_CONFIG_FEATURE_CHECK_TAINTED_MODULE
# Simulate indentation
bool "Support tainted module checking with new kernels"
default y
- depends on BB_INSMOD || BB_LSMOD
+ depends on BB_CONFIG_INSMOD || BB_CONFIG_LSMOD
help
Support checking for tainted modules. These are usually binary
only modules that will make the linux-kernel list ignore your
support request.
This option is required to support GPLONLY modules.
-config BB_FEATURE_2_4_MODULES
+config BB_CONFIG_FEATURE_2_4_MODULES
# Simulate indentation
bool "Support version 2.2.x to 2.4.x Linux kernels"
default y
- depends on BB_INSMOD || BB_RMMOD || BB_MODPROBE
+ depends on BB_CONFIG_INSMOD || BB_CONFIG_RMMOD || BB_CONFIG_MODPROBE
help
Support module loading for 2.2.x and 2.4.x Linux kernels.
-config BB_FEATURE_2_6_MODULES
+config BB_CONFIG_FEATURE_2_6_MODULES
# Simulate indentation
bool "Support version 2.6.x Linux kernels"
default y
- depends on BB_INSMOD || BB_RMMOD || BB_MODPROBE
+ depends on BB_CONFIG_INSMOD || BB_CONFIG_RMMOD || BB_CONFIG_MODPROBE
help
Support module loading for newer 2.6.x Linux kernels.
-config BB_FEATURE_QUERY_MODULE_INTERFACE
+config BB_CONFIG_FEATURE_QUERY_MODULE_INTERFACE
bool
default y
- depends on BB_FEATURE_2_4_MODULES && !BB_FEATURE_2_6_MODULES
+ depends on BB_CONFIG_FEATURE_2_4_MODULES && !BB_CONFIG_FEATURE_2_6_MODULES
endmenu
diff --git a/config/busybox-1.4.2/networking/Config.in b/config/busybox-1.4.2/networking/Config.in
index a3523e310..f58219fef 100644
--- a/config/busybox-1.4.2/networking/Config.in
+++ b/config/busybox-1.4.2/networking/Config.in
@@ -6,130 +6,130 @@
menu "Networking Utilities"
depends on BUSYBOX
-config BB_FEATURE_IPV6
+config BB_CONFIG_FEATURE_IPV6
bool "Enable IPv6 support"
default n
help
Enable IPv6 support in busybox.
This adds IPv6 support in the networking applets.
-config BB_ARP
+config BB_CONFIG_ARP
bool "arp"
default n
help
Manipulate the system ARP cache
-config BB_ARPING
+config BB_CONFIG_ARPING
bool "arping"
default n
help
Ping hosts by ARP packets
-config BB_DNSD
+config BB_CONFIG_DNSD
bool "dnsd"
default n
help
Small and static DNS server daemon.
-config BB_ETHER_WAKE
+config BB_CONFIG_ETHER_WAKE
bool "ether-wake"
default n
help
Send a magic packet to wake up sleeping machines.
-config BB_FAKEIDENTD
+config BB_CONFIG_FAKEIDENTD
bool "fakeidentd"
default n
- select BB_FEATURE_SYSLOG
+ select BB_CONFIG_FEATURE_SYSLOG
help
fakeidentd listens on the ident port and returns a predefined
fake value on any query.
-config BB_FTPGET
+config BB_CONFIG_FTPGET
bool "ftpget"
default n
help
Retrieve a remote file via FTP.
-config BB_FTPPUT
+config BB_CONFIG_FTPPUT
bool "ftpput"
default n
help
Store a remote file via FTP.
-config BB_FEATURE_FTPGETPUT_LONG_OPTIONS
+config BB_CONFIG_FEATURE_FTPGETPUT_LONG_OPTIONS
bool "Enable long options in ftpget/ftpput"
default n
- depends on BB_GETOPT_LONG && (BB_FTPGET || BB_FTPPUT)
+ depends on BB_CONFIG_GETOPT_LONG && (BB_CONFIG_FTPGET || BB_CONFIG_FTPPUT)
help
Support long options for the ftpget/ftpput applet.
-config BB_HOSTNAME
+config BB_CONFIG_HOSTNAME
bool "hostname"
default n
help
Show or set the system's host name
-config BB_HTTPD
+config BB_CONFIG_HTTPD
bool "httpd"
default n
help
Serve web pages via an HTTP server.
-config BB_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
+config BB_CONFIG_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
bool "Support reloading the global config file using hup signal"
default n
- depends on BB_HTTPD
+ depends on BB_CONFIG_HTTPD
help
This option enables processing of SIGHUP to reload cached
configuration settings.
-config BB_FEATURE_HTTPD_SETUID
+config BB_CONFIG_FEATURE_HTTPD_SETUID
bool "Enable -u <user> option"
default n
- depends on BB_HTTPD
+ depends on BB_CONFIG_HTTPD
help
This option allows the server to run as a specific user
rather than defaulting to the user that starts the server.
Use of this option requires special privileges to change to a
different user.
-config BB_FEATURE_HTTPD_BASIC_AUTH
+config BB_CONFIG_FEATURE_HTTPD_BASIC_AUTH
bool "Enable Basic http Authentication"
default y
- depends on BB_HTTPD
+ depends on BB_CONFIG_HTTPD
help
Utilizes password settings from /etc/httpd.conf for basic
authentication on a per url basis.
-config BB_FEATURE_HTTPD_AUTH_MD5
+config BB_CONFIG_FEATURE_HTTPD_AUTH_MD5
bool "Support MD5 crypted passwords for http Authentication"
default n
- depends on BB_FEATURE_HTTPD_BASIC_AUTH
+ depends on BB_CONFIG_FEATURE_HTTPD_BASIC_AUTH
help
Enables basic per URL authentication from /etc/httpd.conf
using md5 passwords.
-config BB_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
+config BB_CONFIG_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
bool "Support loading additional MIME types at run-time"
default n
- depends on BB_HTTPD
+ depends on BB_CONFIG_HTTPD
help
This option enables support for additional MIME types at
run-time to be specified in the configuration file.
-config BB_FEATURE_HTTPD_CGI
+config BB_CONFIG_FEATURE_HTTPD_CGI
bool "Support Common Gateway Interface (CGI)"
default y
- depends on BB_HTTPD
+ depends on BB_CONFIG_HTTPD
help
This option allows scripts and executables to be invoked
when specific URLs are requested.
-config BB_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
+config BB_CONFIG_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
bool "Enable support for running scripts through an interpreter"
default n
- depends on BB_FEATURE_HTTPD_CGI
+ depends on BB_CONFIG_FEATURE_HTTPD_CGI
help
This option enables support for running scripts through an
interpreter. Turn this on if you want PHP scripts to work
@@ -137,75 +137,75 @@ config BB_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
config file:
*.php:/path/to/your/php
-config BB_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
+config BB_CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
bool "Support the REMOTE_PORT environment variable for CGI"
default n
- depends on BB_FEATURE_HTTPD_CGI
+ depends on BB_CONFIG_FEATURE_HTTPD_CGI
help
Use of this option can assist scripts in generating
references that contain a unique port number.
-config BB_FEATURE_HTTPD_ENCODE_URL_STR
+config BB_CONFIG_FEATURE_HTTPD_ENCODE_URL_STR
bool "Enable the -e option for shell script CGI simplification."
default y
- depends on BB_HTTPD
+ depends on BB_CONFIG_HTTPD
help
This option allows html encoding arbitrary
strings for display of the browser. Output goes to stdout.
For example, httpd -e "<Hello World>" as
"&#60Hello&#32World&#62".
-config BB_IFCONFIG
+config BB_CONFIG_IFCONFIG
bool "ifconfig"
default n
help
Ifconfig is used to configure the kernel-resident network interfaces.
-config BB_FEATURE_IFCONFIG_STATUS
+config BB_CONFIG_FEATURE_IFCONFIG_STATUS
bool "Enable status reporting output (+7k)"
default y
- depends on BB_IFCONFIG
+ depends on BB_CONFIG_IFCONFIG
help
If ifconfig is called with no arguments it will display the status
of the currently active interfaces.
-config BB_FEATURE_IFCONFIG_SLIP
+config BB_CONFIG_FEATURE_IFCONFIG_SLIP
bool "Enable slip-specific options \"keepalive\" and \"outfill\""
default n
- depends on BB_IFCONFIG
+ depends on BB_CONFIG_IFCONFIG
help
Allow "keepalive" and "outfill" support for SLIP. If you're not
planning on using serial lines, leave this unchecked.
-config BB_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
+config BB_CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
bool "Enable options \"mem_start\", \"io_addr\", and \"irq\""
default n
- depends on BB_IFCONFIG
+ depends on BB_CONFIG_IFCONFIG
help
Allow the start address for shared memory, start address for I/O,
and/or the interrupt line used by the specified device.
-config BB_FEATURE_IFCONFIG_HW
+config BB_CONFIG_FEATURE_IFCONFIG_HW
bool "Enable option \"hw\" (ether only)"
default y
- depends on BB_IFCONFIG
+ depends on BB_CONFIG_IFCONFIG
help
Set the hardware address of this interface, if the device driver
supports this operation. Currently, we only support the 'ether'
class.
-config BB_FEATURE_IFCONFIG_BROADCAST_PLUS
+config BB_CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS
bool "Set the broadcast automatically"
default n
- depends on BB_IFCONFIG
+ depends on BB_CONFIG_IFCONFIG
help
Setting this will make ifconfig attempt to find the broadcast
automatically if the value '+' is used.
-config BB_IFUPDOWN
+config BB_CONFIG_IFUPDOWN
bool "ifupdown"
default n
- select BB_RUN_PARTS
+ select BB_CONFIG_RUN_PARTS
help
Activate or deactivate the specified interfaces. This applet makes
use of either "ifconfig" and "route" or the "ip" command to actually
@@ -219,34 +219,34 @@ config BB_IFUPDOWN
"ifconfig" and "route" or the "ip" command, either via busybox or via
standalone utilities.
-config BB_FEATURE_IFUPDOWN_IP
+config BB_CONFIG_FEATURE_IFUPDOWN_IP
bool "Use ip applet"
default n
- depends on BB_IFUPDOWN
+ depends on BB_CONFIG_IFUPDOWN
help
Use the iproute "ip" command to implement "ifup" and "ifdown", rather
than the default of using the older 'ifconfig' and 'route' utilities.
-config BB_FEATURE_IFUPDOWN_IP_BUILTIN
+config BB_CONFIG_FEATURE_IFUPDOWN_IP_BUILTIN
bool "Use busybox ip applet"
default y
- depends on BB_FEATURE_IFUPDOWN_IP
- select BB_IP
- select BB_FEATURE_IP_ADDRESS
- select BB_FEATURE_IP_LINK
- select BB_FEATURE_IP_ROUTE
+ depends on BB_CONFIG_FEATURE_IFUPDOWN_IP
+ select BB_CONFIG_IP
+ select BB_CONFIG_FEATURE_IP_ADDRESS
+ select BB_CONFIG_FEATURE_IP_LINK
+ select BB_CONFIG_FEATURE_IP_ROUTE
help
Use the busybox iproute "ip" applet to implement "ifupdown".
If left disabled, you must install the full-blown iproute2
utility or the "ifup" and "ifdown" applets will not work.
-config BB_FEATURE_IFUPDOWN_IFCONFIG_BUILTIN
+config BB_CONFIG_FEATURE_IFUPDOWN_IFCONFIG_BUILTIN
bool "Use busybox ifconfig and route applets"
default y
- depends on BB_IFUPDOWN && !BB_FEATURE_IFUPDOWN_IP
- select BB_IFCONFIG
- select BB_ROUTE
+ depends on BB_CONFIG_IFUPDOWN && !BB_CONFIG_FEATURE_IFUPDOWN_IP
+ select BB_CONFIG_IFCONFIG
+ select BB_CONFIG_ROUTE
help
Use the busybox iproute "ifconfig" and "route" applets to
implement the "ifup" and "ifdown" utilities.
@@ -255,87 +255,87 @@ config BB_FEATURE_IFUPDOWN_IFCONFIG_BUILTIN
and route utilities, or the "ifup" and "ifdown" applets will not
work.
-config BB_FEATURE_IFUPDOWN_IPV4
+config BB_CONFIG_FEATURE_IFUPDOWN_IPV4
bool "Enable support for IPv4"
default y
- depends on BB_IFUPDOWN
+ depends on BB_CONFIG_IFUPDOWN
help
If you want busybox to talk IPv4, leave this on.
-config BB_FEATURE_IFUPDOWN_IPV6
+config BB_CONFIG_FEATURE_IFUPDOWN_IPV6
bool "Enable support for IPv6"
default n
- depends on BB_IFUPDOWN && BB_FEATURE_IPV6
+ depends on BB_CONFIG_IFUPDOWN && BB_CONFIG_FEATURE_IPV6
help
If you need support for IPv6, turn this option on.
-config BB_FEATURE_IFUPDOWN_IPX
+config BB_CONFIG_FEATURE_IFUPDOWN_IPX
bool "Enable support for IPX"
default n
- depends on BB_IFUPDOWN
+ depends on BB_CONFIG_IFUPDOWN
help
If this option is selected you can use busybox to work with IPX
networks.
-config BB_FEATURE_IFUPDOWN_MAPPING
+config BB_CONFIG_FEATURE_IFUPDOWN_MAPPING
bool "Enable mapping support"
default n
- depends on BB_IFUPDOWN
+ depends on BB_CONFIG_IFUPDOWN
help
This enables support for the "mapping" stanza, unless you have
a weird network setup you don't need it.
-config BB_INETD
+config BB_CONFIG_INETD
bool "inetd"
default n
- select BB_FEATURE_SYSLOG
+ select BB_CONFIG_FEATURE_SYSLOG
help
Internet superserver daemon
-config BB_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
+config BB_CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
bool "Support echo service"
default y
- depends on BB_INETD
+ depends on BB_CONFIG_INETD
help
Echo received data internal inetd service
-config BB_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
+config BB_CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
bool "Support discard service"
default y
- depends on BB_INETD
+ depends on BB_CONFIG_INETD
help
Internet /dev/null internal inetd service
-config BB_FEATURE_INETD_SUPPORT_BUILTIN_TIME
+config BB_CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_TIME
bool "Support time service"
default y
- depends on BB_INETD
+ depends on BB_CONFIG_INETD
help
Return 32 bit time since 1900 internal inetd service
-config BB_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
+config BB_CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
bool "Support daytime service"
default y
- depends on BB_INETD
+ depends on BB_CONFIG_INETD
help
Return human-readable time internal inetd service
-config BB_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
+config BB_CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
bool "Support chargen service"
default y
- depends on BB_INETD
+ depends on BB_CONFIG_INETD
help
Familiar character generator internal inetd service
-config BB_FEATURE_INETD_RPC
+config BB_CONFIG_FEATURE_INETD_RPC
bool "Support RPC services"
default n
- depends on BB_INETD
- depends on BB_FEATURE_HAVE_RPC
+ depends on BB_CONFIG_INETD
+ depends on BB_CONFIG_FEATURE_HAVE_RPC
help
Support Sun-RPC based services
-config BB_IP
+config BB_CONFIG_IP
bool "ip"
default n
help
@@ -343,45 +343,45 @@ config BB_IP
utility. You generally don't need "ip" to use busybox with
TCP/IP.
-config BB_FEATURE_IP_ADDRESS
+config BB_CONFIG_FEATURE_IP_ADDRESS
bool "ip address"
default y
- depends on BB_IP
+ depends on BB_CONFIG_IP
help
Address manipulation support for the "ip" applet.
-config BB_FEATURE_IP_LINK
+config BB_CONFIG_FEATURE_IP_LINK
bool "ip link"
default y
- depends on BB_IP
+ depends on BB_CONFIG_IP
help
Configure network devices with "ip".
-config BB_FEATURE_IP_ROUTE
+config BB_CONFIG_FEATURE_IP_ROUTE
bool "ip route"
default y
- depends on BB_IP
+ depends on BB_CONFIG_IP
help
Add support for routing table management to "ip".
-config BB_FEATURE_IP_TUNNEL
+config BB_CONFIG_FEATURE_IP_TUNNEL
bool "ip tunnel"
default n
- depends on BB_IP
+ depends on BB_CONFIG_IP
help
Add support for tunneling commands to "ip".
-config BB_FEATURE_IP_RULE
+config BB_CONFIG_FEATURE_IP_RULE
bool "ip rule"
default n
- depends on BB_IP
+ depends on BB_CONFIG_IP
help
Add support for rule commands to "ip".
-config BB_FEATURE_IP_SHORT_FORMS
+config BB_CONFIG_FEATURE_IP_SHORT_FORMS
bool "Support short forms of ip commands."
default n
- depends on BB_IP
+ depends on BB_CONFIG_IP
help
Also support short-form of ip <OBJECT> commands:
ip addr -> ipaddr
@@ -392,56 +392,56 @@ config BB_FEATURE_IP_SHORT_FORMS
Say N unless you desparately need the short form of the ip
object commands.
-config BB_IPADDR
+config BB_CONFIG_IPADDR
bool
default y
- depends on BB_FEATURE_IP_SHORT_FORMS && BB_FEATURE_IP_ADDRESS
+ depends on BB_CONFIG_FEATURE_IP_SHORT_FORMS && BB_CONFIG_FEATURE_IP_ADDRESS
-config BB_IPLINK
+config BB_CONFIG_IPLINK
bool
default y
- depends on BB_FEATURE_IP_SHORT_FORMS && BB_FEATURE_IP_LINK
+ depends on BB_CONFIG_FEATURE_IP_SHORT_FORMS && BB_CONFIG_FEATURE_IP_LINK
-config BB_IPROUTE
+config BB_CONFIG_IPROUTE
bool
default y
- depends on BB_FEATURE_IP_SHORT_FORMS && BB_FEATURE_IP_ROUTE
+ depends on BB_CONFIG_FEATURE_IP_SHORT_FORMS && BB_CONFIG_FEATURE_IP_ROUTE
-config BB_IPTUNNEL
+config BB_CONFIG_IPTUNNEL
bool
default y
- depends on BB_FEATURE_IP_SHORT_FORMS && BB_FEATURE_IP_TUNNEL
+ depends on BB_CONFIG_FEATURE_IP_SHORT_FORMS && BB_CONFIG_FEATURE_IP_TUNNEL
-config BB_IPRULE
+config BB_CONFIG_IPRULE
bool
default y
- depends on BB_FEATURE_IP_SHORT_FORMS && BB_FEATURE_IP_RULE
+ depends on BB_CONFIG_FEATURE_IP_SHORT_FORMS && BB_CONFIG_FEATURE_IP_RULE
-config BB_IPCALC
+config BB_CONFIG_IPCALC
bool "ipcalc"
default n
help
ipcalc takes an IP address and netmask and calculates the
resulting broadcast, network, and host range.
-config BB_FEATURE_IPCALC_FANCY
+config BB_CONFIG_FEATURE_IPCALC_FANCY
bool "Fancy IPCALC, more options, adds 1 kbyte"
default y
- depends on BB_IPCALC
+ depends on BB_CONFIG_IPCALC
help
Adds the options hostname, prefix and silent to the output of "ipcalc".
-config BB_FEATURE_IPCALC_LONG_OPTIONS
+config BB_CONFIG_FEATURE_IPCALC_LONG_OPTIONS
bool "Enable long options"
default n
- depends on BB_IPCALC && BB_GETOPT_LONG
+ depends on BB_CONFIG_IPCALC && BB_CONFIG_GETOPT_LONG
help
Support long options for the ipcalc applet.
-config BB_NAMEIF
+config BB_CONFIG_NAMEIF
bool "nameif"
default n
- select BB_FEATURE_SYSLOG
+ select BB_CONFIG_FEATURE_SYSLOG
help
nameif is used to rename network interface by its MAC address.
Renamed interfaces MUST be in the down state.
@@ -453,107 +453,107 @@ config BB_NAMEIF
# Comment
new_interface_name XX:XX:XX:XX:XX:XX
-config BB_NC
+config BB_CONFIG_NC
bool "nc"
default n
help
A simple Unix utility which reads and writes data across network
connections.
-config BB_NC_SERVER
+config BB_CONFIG_NC_SERVER
bool "Netcat server options (-lp)"
default n
- depends on BB_NC
+ depends on BB_CONFIG_NC
help
Allow netcat to act as a server.
-config BB_NC_EXTRA
+config BB_CONFIG_NC_EXTRA
bool "Netcat extensions (-eiw and filename)"
default n
- depends on BB_NC
+ depends on BB_CONFIG_NC
help
Add -e (support for executing the rest of the command line after
making or receiving a successful connection), -i (delay interval for
lines sent), -w (timeout for initial connection).
-config BB_NETSTAT
+config BB_CONFIG_NETSTAT
bool "netstat"
default n
help
netstat prints information about the Linux networking subsystem.
-config BB_NSLOOKUP
+config BB_CONFIG_NSLOOKUP
bool "nslookup"
default n
help
nslookup is a tool to query Internet name servers.
-config BB_PING
+config BB_CONFIG_PING
bool "ping"
default n
help
ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to
elicit an ICMP ECHO_RESPONSE from a host or gateway.
-config BB_FEATURE_FANCY_PING
+config BB_CONFIG_FEATURE_FANCY_PING
bool "Enable fancy ping output"
default y
- depends on BB_PING
+ depends on BB_CONFIG_PING
help
Make the output from the ping applet include statistics, and at the
same time provide full support for ICMP packets.
-config BB_PING6
+config BB_CONFIG_PING6
bool "ping6"
default n
- depends on BB_FEATURE_IPV6
+ depends on BB_CONFIG_FEATURE_IPV6
help
This will give you a ping that can talk IPv6.
-config BB_FEATURE_FANCY_PING6
+config BB_CONFIG_FEATURE_FANCY_PING6
bool "Enable fancy ping6 output"
default y
- depends on BB_PING6
+ depends on BB_CONFIG_PING6
help
Make the output from the ping6 applet include statistics, and at the
same time provide full support for ICMP packets.
-config BB_ROUTE
+config BB_CONFIG_ROUTE
bool "route"
default n
help
Route displays or manipulates the kernel's IP routing tables.
-config BB_TELNET
+config BB_CONFIG_TELNET
bool "telnet"
default n
help
Telnet is an interface to the TELNET protocol, but is also commonly
used to test other simple protocols.
-config BB_FEATURE_TELNET_TTYPE
+config BB_CONFIG_FEATURE_TELNET_TTYPE
bool "Pass TERM type to remote host"
default y
- depends on BB_TELNET
+ depends on BB_CONFIG_TELNET
help
Setting this option will forward the TERM environment variable to the
remote host you are connecting to. This is useful to make sure that
things like ANSI colors and other control sequences behave.
-config BB_FEATURE_TELNET_AUTOLOGIN
+config BB_CONFIG_FEATURE_TELNET_AUTOLOGIN
bool "Pass USER type to remote host"
default y
- depends on BB_TELNET
+ depends on BB_CONFIG_TELNET
help
Setting this option will forward the USER environment variable to the
remote host you are connecting to. This is useful when you need to
log into a machine without telling the username (autologin). This
option enables `-a' and `-l USER' arguments.
-config BB_TELNETD
+config BB_CONFIG_TELNETD
bool "telnetd"
default n
- select BB_FEATURE_SYSLOG
+ select BB_CONFIG_FEATURE_SYSLOG
help
A daemon for the TELNET protocol, allowing you to log onto the host
running the daemon. Please keep in mind that the TELNET protocol
@@ -593,14 +593,14 @@ config BB_TELNETD
with all that done, telnetd _should_ work....
-config BB_FEATURE_TELNETD_STANDALONE
+config BB_CONFIG_FEATURE_TELNETD_STANDALONE
bool "Support standalone telnetd (not inetd only)"
default n
- depends on BB_TELNETD
+ depends on BB_CONFIG_TELNETD
help
Selecting this will make telnetd able to run standalone.
-config BB_TFTP
+config BB_CONFIG_TFTP
bool "tftp"
default n
help
@@ -608,114 +608,114 @@ config BB_TFTP
is usually used for simple, small transfers such as a root image
for a network-enabled bootloader.
-config BB_FEATURE_TFTP_GET
+config BB_CONFIG_FEATURE_TFTP_GET
bool "Enable \"get\" command"
default y
- depends on BB_TFTP
+ depends on BB_CONFIG_TFTP
help
Add support for the GET command within the TFTP client. This allows
a client to retrieve a file from a TFTP server.
-config BB_FEATURE_TFTP_PUT
+config BB_CONFIG_FEATURE_TFTP_PUT
bool "Enable \"put\" command"
default y
- depends on BB_TFTP
+ depends on BB_CONFIG_TFTP
help
Add support for the PUT command within the TFTP client. This allows
a client to transfer a file to a TFTP server.
-config BB_FEATURE_TFTP_BLOCKSIZE
+config BB_CONFIG_FEATURE_TFTP_BLOCKSIZE
bool "Enable \"blocksize\" command"
default n
- depends on BB_TFTP
+ depends on BB_CONFIG_TFTP
help
Allow the client to specify the desired block size for transfers.
-config BB_DEBUG_TFTP
+config BB_CONFIG_DEBUG_TFTP
bool "Enable debug"
default n
- depends on BB_TFTP
+ depends on BB_CONFIG_TFTP
help
Enable debug settings for tftp. This is useful if you're running
into problems with tftp as the protocol doesn't help you much when
you run into problems.
-config BB_TRACEROUTE
+config BB_CONFIG_TRACEROUTE
bool "traceroute"
default n
help
Utility to trace the route of IP packets
-config BB_FEATURE_TRACEROUTE_VERBOSE
+config BB_CONFIG_FEATURE_TRACEROUTE_VERBOSE
bool "Enable verbose output"
default n
- depends on BB_TRACEROUTE
+ depends on BB_CONFIG_TRACEROUTE
help
Add some verbosity to traceroute. This includes amongst other things
hostnames and ICMP response types.
-config BB_FEATURE_TRACEROUTE_SOURCE_ROUTE
+config BB_CONFIG_FEATURE_TRACEROUTE_SOURCE_ROUTE
bool "Enable loose source route"
default n
- depends on BB_TRACEROUTE
+ depends on BB_CONFIG_TRACEROUTE
help
Add option to specify a loose source route gateway
(8 maximum).
-config BB_FEATURE_TRACEROUTE_USE_ICMP
+config BB_CONFIG_FEATURE_TRACEROUTE_USE_ICMP
bool "Use ICMP instead of UDP"
default n
- depends on BB_TRACEROUTE
+ depends on BB_CONFIG_TRACEROUTE
help
Add feature to allow for ICMP ECHO instead of UDP datagrams.
source config/busybox-1.4.2/networking/udhcp/Config.in
-config BB_VCONFIG
+config BB_CONFIG_VCONFIG
bool "vconfig"
default n
help
Creates, removes, and configures VLAN interfaces
-config BB_WGET
+config BB_CONFIG_WGET
bool "wget"
default n
help
wget is a utility for non-interactive download of files from HTTP,
HTTPS, and FTP servers.
-config BB_FEATURE_WGET_STATUSBAR
+config BB_CONFIG_FEATURE_WGET_STATUSBAR
bool "Enable a nifty process meter (+2k)"
default y
- depends on BB_WGET
+ depends on BB_CONFIG_WGET
help
Enable the transfer progress bar for wget transfers.
-config BB_FEATURE_WGET_AUTHENTICATION
+config BB_CONFIG_FEATURE_WGET_AUTHENTICATION
bool "Enable HTTP authentication"
default y
- depends on BB_WGET
+ depends on BB_CONFIG_WGET
help
Support authenticated HTTP transfers.
-config BB_FEATURE_WGET_IP6_LITERAL
+config BB_CONFIG_FEATURE_WGET_IP6_LITERAL
bool "Enable IPv6 literal addresses"
default y
- depends on BB_WGET && BB_FEATURE_IPV6
+ depends on BB_CONFIG_WGET && BB_CONFIG_FEATURE_IPV6
help
Support IPv6 address literal notation in URLs.
-config BB_FEATURE_WGET_LONG_OPTIONS
+config BB_CONFIG_FEATURE_WGET_LONG_OPTIONS
bool "Enable long options"
default n
- depends on BB_WGET && BB_GETOPT_LONG
+ depends on BB_CONFIG_WGET && BB_CONFIG_GETOPT_LONG
help
Support long options for the wget applet.
-config BB_ZCIP
+config BB_CONFIG_ZCIP
bool "zcip"
default n
- select BB_FEATURE_SYSLOG
+ select BB_CONFIG_FEATURE_SYSLOG
help
ZCIP provides ZeroConf IPv4 address selection, according to RFC 3927.
It's a daemon that allocates and defends a dynamically assigned
diff --git a/config/busybox-1.4.2/networking/udhcp/Config.in b/config/busybox-1.4.2/networking/udhcp/Config.in
index 8c1e9199b..a5ce08ded 100644
--- a/config/busybox-1.4.2/networking/udhcp/Config.in
+++ b/config/busybox-1.4.2/networking/udhcp/Config.in
@@ -3,7 +3,7 @@
# see scripts/kbuild/config-language.txt.
#
-config BB_APP_UDHCPD
+config BB_CONFIG_APP_UDHCPD
bool "udhcp Server (udhcpd)"
default n
help
@@ -12,19 +12,19 @@ config BB_APP_UDHCPD
See http://udhcp.busybox.net for further details.
-config BB_APP_DHCPRELAY
+config BB_CONFIG_APP_DHCPRELAY
bool "dhcprelay"
default n
- depends on BB_APP_UDHCPD
+ depends on BB_CONFIG_APP_UDHCPD
help
dhcprelay listens for dhcp requests on one or more interfaces
and forwards these requests to a different interface or dhcp
server.
-config BB_APP_DUMPLEASES
+config BB_CONFIG_APP_DUMPLEASES
bool "Lease display utility (dumpleases)"
default n
- depends on BB_APP_UDHCPD
+ depends on BB_CONFIG_APP_UDHCPD
help
dumpleases displays the leases written out by the udhcpd server.
Lease times are stored in the file by time remaining in lease, or
@@ -32,7 +32,7 @@ config BB_APP_DUMPLEASES
See http://udhcp.busybox.net for further details.
-config BB_APP_UDHCPC
+config BB_CONFIG_APP_UDHCPC
bool "udhcp Client (udhcpc)"
default n
help
@@ -44,21 +44,21 @@ config BB_APP_UDHCPC
See http://udhcp.busybox.net for further details.
-config BB_FEATURE_UDHCP_SYSLOG
+config BB_CONFIG_FEATURE_UDHCP_SYSLOG
bool "Log udhcp messages to syslog"
default n
- depends on BB_APP_UDHCPD || BB_APP_UDHCPC
- select BB_FEATURE_SYSLOG
+ depends on BB_CONFIG_APP_UDHCPD || BB_CONFIG_APP_UDHCPC
+ select BB_CONFIG_FEATURE_SYSLOG
help
If not daemonized, udhcpd prints its messages to stdout/stderr.
If this option is selected, it will also log them to syslog.
See http://udhcp.busybox.net for further details.
-config BB_FEATURE_UDHCP_DEBUG
+config BB_CONFIG_FEATURE_UDHCP_DEBUG
bool "Compile udhcp with noisy debugging messages"
default n
- depends on BB_APP_UDHCPD || BB_APP_UDHCPC
+ depends on BB_CONFIG_APP_UDHCPD || BB_CONFIG_APP_UDHCPC
help
If selected, udhcpd will output extra debugging output. If using
this option, compile uDHCP with "-g", and do not fork the daemon to
diff --git a/config/busybox-1.4.2/procps/Config.in b/config/busybox-1.4.2/procps/Config.in
index 33299e4a8..6c48b436b 100644
--- a/config/busybox-1.4.2/procps/Config.in
+++ b/config/busybox-1.4.2/procps/Config.in
@@ -6,7 +6,7 @@
menu "Process Utilities"
depends on BUSYBOX
-config BB_FREE
+config BB_CONFIG_FREE
bool "free"
default n
help
@@ -14,7 +14,7 @@ config BB_FREE
memory in the system, as well as the buffers used by the kernel.
The shared memory column should be ignored; it is obsolete.
-config BB_FUSER
+config BB_CONFIG_FUSER
bool "fuser"
default n
help
@@ -22,7 +22,7 @@ config BB_FUSER
file open. fuser can also list all PIDs that have a given network
(TCP or UDP) port open.
-config BB_KILL
+config BB_CONFIG_KILL
bool "kill"
default n
help
@@ -30,86 +30,86 @@ config BB_KILL
process or process group. If no signal is specified, the TERM
signal is sent.
-config BB_KILLALL
+config BB_CONFIG_KILLALL
bool "killall"
default n
- depends on BB_KILL
+ depends on BB_CONFIG_KILL
help
killall sends a signal to all processes running any of the
specified commands. If no signal name is specified, SIGTERM is
sent.
-config BB_KILLALL5
+config BB_CONFIG_KILLALL5
bool "killall5"
default n
- depends on BB_KILL
+ depends on BB_CONFIG_KILL
-config BB_PIDOF
+config BB_CONFIG_PIDOF
bool "pidof"
default n
help
Pidof finds the process id's (pids) of the named programs. It prints
those id's on the standard output.
-config BB_FEATURE_PIDOF_SINGLE
+config BB_CONFIG_FEATURE_PIDOF_SINGLE
bool "Enable argument for single shot (-s)"
default n
- depends on BB_PIDOF
+ depends on BB_CONFIG_PIDOF
help
Support argument '-s' for returning only the first pid found.
-config BB_FEATURE_PIDOF_OMIT
+config BB_CONFIG_FEATURE_PIDOF_OMIT
bool "Enable argument for omitting pids (-o)"
default n
- depends on BB_PIDOF
+ depends on BB_CONFIG_PIDOF
help
Support argument '-o' for omitting the given pids in output.
The special pid %PPID can be used to name the parent process
of the pidof, in other words the calling shell or shell script.
-config BB_PS
+config BB_CONFIG_PS
bool "ps"
default n
help
ps gives a snapshot of the current processes.
-config BB_FEATURE_PS_WIDE
+config BB_CONFIG_FEATURE_PS_WIDE
bool "Enable argument for wide output (-w)"
default n
- depends on BB_PS
+ depends on BB_CONFIG_PS
help
Support argument 'w' for wide output.
If given once, 132 chars are printed and given more than
one, the length is unlimited.
-config BB_RENICE
+config BB_CONFIG_RENICE
bool "renice"
default n
help
Renice alters the scheduling priority of one or more running
processes.
-config BB_BB_SYSCTL
+config BB_CONFIG_BB_SYSCTL
bool "sysctl"
default n
help
Configure kernel parameters at runtime.
-config BB_TOP
+config BB_CONFIG_TOP
bool "top"
default n
help
The top program provides a dynamic real-time view of a running
system.
-config BB_FEATURE_TOP_CPU_USAGE_PERCENTAGE
+config BB_CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE
bool "Support showing CPU usage percentage (add 2k bytes)"
default y
- depends on BB_TOP
+ depends on BB_CONFIG_TOP
help
Make top display CPU usage.
-config BB_UPTIME
+config BB_CONFIG_UPTIME
bool "uptime"
default n
help
diff --git a/config/busybox-1.4.2/runit/Config.in b/config/busybox-1.4.2/runit/Config.in
index ccfc9e2b0..fa2b37ef2 100644
--- a/config/busybox-1.4.2/runit/Config.in
+++ b/config/busybox-1.4.2/runit/Config.in
@@ -6,14 +6,14 @@
menu "Runit Utilities"
depends on BUSYBOX
-config BB_RUNSV
+config BB_CONFIG_RUNSV
bool "runsv"
default n
help
runsv starts and monitors a service and optionally an appendant log
service.
-config BB_RUNSVDIR
+config BB_CONFIG_RUNSVDIR
bool "runsvdir"
default n
help
@@ -21,14 +21,14 @@ config BB_RUNSVDIR
a directory, in the services directory dir, up to a limit of 1000
subdirectories, and restarts a runsv process if it terminates.
-config BB_SV
+config BB_CONFIG_SV
bool "sv"
default n
help
sv reports the current status and controls the state of services
monitored by the runsv supervisor.
-config BB_SVLOGD
+config BB_CONFIG_SVLOGD
bool "svlogd"
default n
help
@@ -36,30 +36,30 @@ config BB_SVLOGD
filters log messages, and writes the data to one or more automatically
rotated logs.
-config BB_CHPST
+config BB_CONFIG_CHPST
bool "chpst"
default n
help
chpst changes the process state according to the given options, and
execs specified program.
-config BB_SETUIDGID
+config BB_CONFIG_SETUIDGID
bool "setuidgid"
help
Sets soft resource limits as specified by options
-config BB_ENVUIDGID
+config BB_CONFIG_ENVUIDGID
bool "envuidgid"
help
Sets $UID to account's uid and $GID to account's gid
-config BB_ENVDIR
+config BB_CONFIG_ENVDIR
bool "envdir"
help
Sets various environment variables as specified by files
in the given directory
-config BB_SOFTLIMIT
+config BB_CONFIG_SOFTLIMIT
bool "softlimit"
help
Sets soft resource limits as specified by options
diff --git a/config/busybox-1.4.2/shell/Config.in b/config/busybox-1.4.2/shell/Config.in
index 4dcb887d5..2539a0575 100644
--- a/config/busybox-1.4.2/shell/Config.in
+++ b/config/busybox-1.4.2/shell/Config.in
@@ -8,36 +8,36 @@ menu "Shells"
choice
prompt "Choose your default shell"
- default BB_FEATURE_SH_IS_NONE
+ default BB_CONFIG_FEATURE_SH_IS_NONE
help
Choose a shell. The ash shell is the most bash compatible
and full featured one.
-config BB_FEATURE_SH_IS_ASH
- select BB_ASH
+config BB_CONFIG_FEATURE_SH_IS_ASH
+ select BB_CONFIG_ASH
bool "ash"
-config BB_FEATURE_SH_IS_HUSH
- select BB_HUSH
+config BB_CONFIG_FEATURE_SH_IS_HUSH
+ select BB_CONFIG_HUSH
bool "hush"
-config BB_FEATURE_SH_IS_LASH
- select BB_LASH
+config BB_CONFIG_FEATURE_SH_IS_LASH
+ select BB_CONFIG_LASH
bool "lash"
-config BB_FEATURE_SH_IS_MSH
- select BB_MSH
+config BB_CONFIG_FEATURE_SH_IS_MSH
+ select BB_CONFIG_MSH
bool "msh"
-config BB_FEATURE_SH_IS_NONE
+config BB_CONFIG_FEATURE_SH_IS_NONE
bool "none"
endchoice
-config BB_ASH
+config BB_CONFIG_ASH
bool "ash"
default n
- select BB_TEST
+ select BB_CONFIG_TEST
help
Tha 'ash' shell adds about 60k in the default configuration and is
the most complete and most pedantically correct shell included with
@@ -46,105 +46,105 @@ config BB_ASH
(written by Kenneth Almquist) from NetBSD.
comment "Ash Shell Options"
- depends on BB_ASH
+ depends on BB_CONFIG_ASH
-config BB_ASH_JOB_CONTROL
+config BB_CONFIG_ASH_JOB_CONTROL
bool "Job control"
default y
- depends on BB_ASH
+ depends on BB_CONFIG_ASH
help
Enable job control in the ash shell.
-config BB_ASH_READ_NCHARS
+config BB_CONFIG_ASH_READ_NCHARS
bool "'read -n N' and 'read -s' support"
default n
- depends on BB_ASH
+ depends on BB_CONFIG_ASH
help
'read -n N' will return a value after N characters have been read.
'read -s' will read without echoing the user's input.
-config BB_ASH_READ_TIMEOUT
+config BB_CONFIG_ASH_READ_TIMEOUT
bool "'read -t S' support."
default n
- depends on BB_ASH
+ depends on BB_CONFIG_ASH
help
'read -t S' will return a value after S seconds have passed.
This implementation will allow fractional seconds, expressed
as a decimal fraction, e.g. 'read -t 2.5 foo'.
-config BB_ASH_ALIAS
+config BB_CONFIG_ASH_ALIAS
bool "alias support"
default y
- depends on BB_ASH
+ depends on BB_CONFIG_ASH
help
Enable alias support in the ash shell.
-config BB_ASH_MATH_SUPPORT
+config BB_CONFIG_ASH_MATH_SUPPORT
bool "Posix math support"
default y
- depends on BB_ASH
+ depends on BB_CONFIG_ASH
help
Enable math support in the ash shell.
-config BB_ASH_MATH_SUPPORT_64
+config BB_CONFIG_ASH_MATH_SUPPORT_64
bool "Extend Posix math support to 64 bit"
default n
- depends on BB_ASH_MATH_SUPPORT
+ depends on BB_CONFIG_ASH_MATH_SUPPORT
help
Enable 64-bit math support in the ash shell. This will make
the shell slightly larger, but will allow computation with very
large numbers.
-config BB_ASH_GETOPTS
+config BB_CONFIG_ASH_GETOPTS
bool "Builtin getopt to parse positional parameters"
default n
- depends on BB_ASH
+ depends on BB_CONFIG_ASH
help
Enable getopts builtin in the ash shell.
-config BB_ASH_BUILTIN_ECHO
+config BB_CONFIG_ASH_BUILTIN_ECHO
bool "Builtin version of 'echo'"
default y
- select BB_ECHO
- depends on BB_ASH
+ select BB_CONFIG_ECHO
+ depends on BB_CONFIG_ASH
help
Enable support for echo, built in to ash.
-config BB_ASH_BUILTIN_TEST
+config BB_CONFIG_ASH_BUILTIN_TEST
bool "Builtin version of 'test'"
default y
- select BB_TEST
- depends on BB_ASH
+ select BB_CONFIG_TEST
+ depends on BB_CONFIG_ASH
help
Enable support for test, built in to ash.
-config BB_ASH_CMDCMD
+config BB_CONFIG_ASH_CMDCMD
bool "'command' command to override shell builtins"
default n
- depends on BB_ASH
+ depends on BB_CONFIG_ASH
help
Enable support for the ash 'command' builtin, which allows
you to run the specified command with the specified arguments,
even when there is an ash builtin command with the same name.
-config BB_ASH_MAIL
+config BB_CONFIG_ASH_MAIL
bool "Check for new mail on interactive shells"
default y
- depends on BB_ASH
+ depends on BB_CONFIG_ASH
help
Enable "check for new mail" in the ash shell.
-config BB_ASH_OPTIMIZE_FOR_SIZE
+config BB_CONFIG_ASH_OPTIMIZE_FOR_SIZE
bool "Optimize for size instead of speed"
default y
- depends on BB_ASH
+ depends on BB_CONFIG_ASH
help
Compile ash for reduced size at the price of speed.
-config BB_ASH_RANDOM_SUPPORT
+config BB_CONFIG_ASH_RANDOM_SUPPORT
bool "Pseudorandom generator and variable $RANDOM"
default n
- depends on BB_ASH
+ depends on BB_CONFIG_ASH
help
Enable pseudorandom generator and dynamic variable "$RANDOM".
Each read of "$RANDOM" will generate a new pseudorandom value.
@@ -152,21 +152,21 @@ config BB_ASH_RANDOM_SUPPORT
After "unset RANDOM" then generator will switch off and this
variable will no longer have special treatment.
-config BB_ASH_EXPAND_PRMT
+config BB_CONFIG_ASH_EXPAND_PRMT
bool "Expand prompt string"
default n
- depends on BB_ASH
+ depends on BB_CONFIG_ASH
help
"PS#" may be contain volatile content, such as backquote commands.
This option recreates the prompt string from the environment
variable each time it is displayed.
-config BB_HUSH
+config BB_CONFIG_HUSH
bool "hush"
default n
- select BB_TRUE
- select BB_FALSE
- select BB_TEST
+ select BB_CONFIG_TRUE
+ select BB_CONFIG_FALSE
+ select BB_CONFIG_TEST
help
hush is a very small shell (just 18k) and it has fairly complete
Bourne shell grammar. It even handles all the normal flow control
@@ -178,12 +178,12 @@ config BB_HUSH
expansion, &> and >& redirection of stdout+stderr, etc.
-config BB_LASH
+config BB_CONFIG_LASH
bool "lash"
default n
- select BB_TRUE
- select BB_FALSE
- select BB_TEST
+ select BB_CONFIG_TRUE
+ select BB_CONFIG_FALSE
+ select BB_CONFIG_TEST
help
lash is the very smallest shell (adds just 10k) and it is quite
usable as a command prompt, but it is not suitable for any but the
@@ -193,12 +193,12 @@ config BB_LASH
command editing makes it a very nice lightweight command prompt.
-config BB_MSH
+config BB_CONFIG_MSH
bool "msh"
default n
- select BB_TRUE
- select BB_FALSE
- select BB_TEST
+ select BB_CONFIG_TRUE
+ select BB_CONFIG_FALSE
+ select BB_CONFIG_TEST
help
The minix shell (adds just 30k) is quite complete and handles things
like for/do/done, case/esac and all the things you expect a Bourne
@@ -208,19 +208,19 @@ config BB_MSH
It also uses only vfork, so it can be used on uClinux systems.
comment "Bourne Shell Options"
- depends on BB_MSH || BB_LASH || BB_HUSH || BB_ASH
+ depends on BB_CONFIG_MSH || BB_CONFIG_LASH || BB_CONFIG_HUSH || BB_CONFIG_ASH
-config BB_FEATURE_SH_EXTRA_QUIET
+config BB_CONFIG_FEATURE_SH_EXTRA_QUIET
bool "Hide message on interactive shell startup"
default n
- depends on BB_MSH || BB_LASH || BB_HUSH || BB_ASH
+ depends on BB_CONFIG_MSH || BB_CONFIG_LASH || BB_CONFIG_HUSH || BB_CONFIG_ASH
help
Remove the busybox introduction when starting a shell.
-config BB_FEATURE_SH_STANDALONE_SHELL
+config BB_CONFIG_FEATURE_SH_STANDALONE_SHELL
bool "Standalone shell"
default n
- depends on BB_MSH || BB_LASH || BB_HUSH || BB_ASH
+ depends on BB_CONFIG_MSH || BB_CONFIG_LASH || BB_CONFIG_HUSH || BB_CONFIG_ASH
help
This option causes the selected busybox shell to use busybox applets
in preference to executables in the PATH whenever possible. For
@@ -241,54 +241,54 @@ config BB_FEATURE_SH_STANDALONE_SHELL
that exact location with that exact name, this option will not work at
all.
-config BB_FEATURE_COMMAND_EDITING
+config BB_CONFIG_FEATURE_COMMAND_EDITING
bool "Command line editing"
default n
- depends on BB_MSH || BB_LASH || BB_HUSH || BB_ASH
+ depends on BB_CONFIG_MSH || BB_CONFIG_LASH || BB_CONFIG_HUSH || BB_CONFIG_ASH
help
Enable command editing in shell.
-config BB_FEATURE_COMMAND_EDITING_VI
+config BB_CONFIG_FEATURE_COMMAND_EDITING_VI
bool "vi-style line editing commands"
default n
- depends on BB_FEATURE_COMMAND_EDITING
+ depends on BB_CONFIG_FEATURE_COMMAND_EDITING
help
Enable vi-style line editing in the shell. This mode can be
turned on and off with "set -o vi" and "set +o vi".
-config BB_FEATURE_COMMAND_HISTORY
+config BB_CONFIG_FEATURE_COMMAND_HISTORY
int "History size"
range 0 99999
default 15
- depends on BB_FEATURE_COMMAND_EDITING
+ depends on BB_CONFIG_FEATURE_COMMAND_EDITING
help
Specify command history size in shell.
-config BB_FEATURE_COMMAND_SAVEHISTORY
+config BB_CONFIG_FEATURE_COMMAND_SAVEHISTORY
bool "History saving"
default n
- depends on BB_ASH && BB_FEATURE_COMMAND_EDITING
+ depends on BB_CONFIG_ASH && BB_CONFIG_FEATURE_COMMAND_EDITING
help
Enable history saving in ash shell.
-config BB_FEATURE_COMMAND_TAB_COMPLETION
+config BB_CONFIG_FEATURE_COMMAND_TAB_COMPLETION
bool "Tab completion"
default n
- depends on BB_FEATURE_COMMAND_EDITING
+ depends on BB_CONFIG_FEATURE_COMMAND_EDITING
help
Enable tab completion in shell.
-config BB_FEATURE_COMMAND_USERNAME_COMPLETION
+config BB_CONFIG_FEATURE_COMMAND_USERNAME_COMPLETION
bool "Username completion"
default n
- depends on BB_FEATURE_COMMAND_TAB_COMPLETION
+ depends on BB_CONFIG_FEATURE_COMMAND_TAB_COMPLETION
help
Enable username completion in shell.
-config BB_FEATURE_SH_FANCY_PROMPT
+config BB_CONFIG_FEATURE_SH_FANCY_PROMPT
bool "Fancy shell prompts"
default n
- depends on BB_FEATURE_COMMAND_EDITING
+ depends on BB_CONFIG_FEATURE_COMMAND_EDITING
help
Setting this option allows for prompts to use things like \w and
\$ and also using escape codes.
diff --git a/config/busybox-1.4.2/sysklogd/Config.in b/config/busybox-1.4.2/sysklogd/Config.in
index 651b82fc0..2a7ab5645 100644
--- a/config/busybox-1.4.2/sysklogd/Config.in
+++ b/config/busybox-1.4.2/sysklogd/Config.in
@@ -6,7 +6,7 @@
menu "System Logging Utilities"
depends on BUSYBOX
-config BB_SYSLOGD
+config BB_CONFIG_SYSLOGD
bool "syslogd"
default n
help
@@ -21,18 +21,18 @@ config BB_SYSLOGD
wrong. And something almost always will go wrong if
you wait long enough....
-config BB_FEATURE_ROTATE_LOGFILE
+config BB_CONFIG_FEATURE_ROTATE_LOGFILE
bool "Rotate message files"
default n
- depends on BB_SYSLOGD
+ depends on BB_CONFIG_SYSLOGD
help
This enables syslogd to rotate the message files
on his own. No need to use an external rotatescript.
-config BB_FEATURE_REMOTE_LOG
+config BB_CONFIG_FEATURE_REMOTE_LOG
bool "Remote Log support"
default n
- depends on BB_SYSLOGD
+ depends on BB_CONFIG_SYSLOGD
help
When you enable this feature, the syslogd utility can
be used to send system log messages to another system
@@ -43,10 +43,10 @@ config BB_FEATURE_REMOTE_LOG
measure to prevent system logs from being tampered with
by an intruder.
-config BB_FEATURE_IPC_SYSLOG
+config BB_CONFIG_FEATURE_IPC_SYSLOG
bool "Circular Buffer support"
default n
- depends on BB_SYSLOGD
+ depends on BB_CONFIG_SYSLOGD
help
When you enable this feature, the syslogd utility will
use a circular buffer to record system log messages.
@@ -57,28 +57,28 @@ config BB_FEATURE_IPC_SYSLOG
entire filesystem, which may cause your system to
break badly.
-config BB_FEATURE_IPC_SYSLOG_BUFFER_SIZE
+config BB_CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE
int " Circular buffer size in Kbytes (minimum 4KB)"
default 16
- depends on BB_FEATURE_IPC_SYSLOG
+ depends on BB_CONFIG_FEATURE_IPC_SYSLOG
help
This option sets the size of the circular buffer
used to record system log messages.
-config BB_LOGREAD
+config BB_CONFIG_LOGREAD
bool "logread"
default y
- depends on BB_FEATURE_IPC_SYSLOG
+ depends on BB_CONFIG_FEATURE_IPC_SYSLOG
help
If you enabled Circular Buffer support, you almost
certainly want to enable this feature as well. This
utility will allow you to read the messages that are
stored in the syslogd circular buffer.
-config BB_FEATURE_LOGREAD_REDUCED_LOCKING
+config BB_CONFIG_FEATURE_LOGREAD_REDUCED_LOCKING
bool "logread double buffering"
default n
- depends on BB_LOGREAD
+ depends on BB_CONFIG_LOGREAD
help
'logread' ouput to slow serial terminals can have
side effects on syslog because of the semaphore.
@@ -86,11 +86,11 @@ config BB_FEATURE_LOGREAD_REDUCED_LOCKING
from circular buffer, minimizing semaphore
contention at some minor memory expense.
-config BB_KLOGD
+config BB_CONFIG_KLOGD
bool "klogd"
default n
- depends on BB_SYSLOGD
- select BB_FEATURE_SYSLOG
+ depends on BB_CONFIG_SYSLOGD
+ select BB_CONFIG_FEATURE_SYSLOG
help
klogd is a utility which intercepts and logs all
messages from the Linux kernel and sends the messages
@@ -98,10 +98,10 @@ config BB_KLOGD
you wish to record the messages produced by the kernel,
you should enable this option.
-config BB_LOGGER
+config BB_CONFIG_LOGGER
bool "logger"
default n
- select BB_FEATURE_SYSLOG
+ select BB_CONFIG_FEATURE_SYSLOG
help
The logger utility allows you to send arbitrary text
messages to the system log (i.e. the 'syslogd' utility) so
diff --git a/config/busybox-1.4.2/util-linux/Config.in b/config/busybox-1.4.2/util-linux/Config.in
index 263b1bf86..4303be67c 100644
--- a/config/busybox-1.4.2/util-linux/Config.in
+++ b/config/busybox-1.4.2/util-linux/Config.in
@@ -6,7 +6,7 @@
menu "Linux System Utilities"
depends on BUSYBOX
-config BB_DMESG
+config BB_CONFIG_DMESG
bool "dmesg"
default n
help
@@ -18,10 +18,10 @@ config BB_DMESG
are also logged to the system console. Enable this option if you
wish to enable the 'dmesg' utility.
-config BB_FEATURE_DMESG_PRETTY
+config BB_CONFIG_FEATURE_DMESG_PRETTY
bool "pretty dmesg output"
default y
- depends on BB_DMESG
+ depends on BB_CONFIG_DMESG
help
If you wish to scrub the syslog level from the output, say 'Y' here.
The syslog level is a string prefixed to every line with the form "<#>".
@@ -38,7 +38,7 @@ config BB_FEATURE_DMESG_PRETTY
<6>BIOS-provided physical RAM map:
<6> BIOS-e820: 0000000000000000 - 000000000009f000 (usable)
-config BB_FBSET
+config BB_CONFIG_FBSET
bool "fbset"
default n
help
@@ -47,26 +47,26 @@ config BB_FBSET
interface to access a graphics display. Enable this option
if you wish to enable the 'fbset' utility.
-config BB_FEATURE_FBSET_FANCY
+config BB_CONFIG_FEATURE_FBSET_FANCY
bool "Turn on extra fbset options"
default n
- depends on BB_FBSET
+ depends on BB_CONFIG_FBSET
help
This option enables extended fbset options, allowing one to set the
framebuffer size, color depth, etc. interface to access a graphics
display. Enable this option if you wish to enable extended fbset
options.
-config BB_FEATURE_FBSET_READMODE
+config BB_CONFIG_FEATURE_FBSET_READMODE
bool "Turn on fbset readmode support"
default n
- depends on BB_FBSET
+ depends on BB_CONFIG_FBSET
help
This option allows fbset to read the video mode database stored by
default as /etc/fb.modes, which can be used to set frame buffer
device to pre-defined video modes.
-config BB_FDFLUSH
+config BB_CONFIG_FDFLUSH
bool "fdflush"
default n
help
@@ -78,13 +78,13 @@ config BB_FDFLUSH
you change a disk. Most people have working hardware and can safely
leave this disabled.
-config BB_FDFORMAT
+config BB_CONFIG_FDFORMAT
bool "fdformat"
default n
help
fdformat is used to low-level format a floppy disk.
-config BB_FDISK
+config BB_CONFIG_FDISK
bool "fdisk"
default n
help
@@ -93,65 +93,65 @@ config BB_FDISK
can be used to list and edit the set of partitions or BSD style
'disk slices' that are defined on a hard drive.
-config BB_FDISK_SUPPORT_LARGE_DISKS
+config BB_CONFIG_FDISK_SUPPORT_LARGE_DISKS
bool "support over 4GB disks"
default y
- depends on BB_FDISK
+ depends on BB_CONFIG_FDISK
help
Enable this option to support large disks > 4GB.
-config BB_FEATURE_FDISK_WRITABLE
+config BB_CONFIG_FEATURE_FDISK_WRITABLE
bool "Write support"
default y
- depends on BB_FDISK
+ depends on BB_CONFIG_FDISK
help
Enabling this option allows you to create or change a partition table
and write those changes out to disk. If you leave this option
disabled, you will only be able to view the partition table.
-config BB_FEATURE_AIX_LABEL
+config BB_CONFIG_FEATURE_AIX_LABEL
bool "Support AIX disklabels"
default n
- depends on BB_FDISK && BB_FEATURE_FDISK_WRITABLE
+ depends on BB_CONFIG_FDISK && BB_CONFIG_FEATURE_FDISK_WRITABLE
help
Enabling this option allows you to create or change AIX disklabels.
Most people can safely leave this option disabled.
-config BB_FEATURE_SGI_LABEL
+config BB_CONFIG_FEATURE_SGI_LABEL
bool "Support SGI disklabels"
default n
- depends on BB_FDISK && BB_FEATURE_FDISK_WRITABLE
+ depends on BB_CONFIG_FDISK && BB_CONFIG_FEATURE_FDISK_WRITABLE
help
Enabling this option allows you to create or change SGI disklabels.
Most people can safely leave this option disabled.
-config BB_FEATURE_SUN_LABEL
+config BB_CONFIG_FEATURE_SUN_LABEL
bool "Support SUN disklabels"
default n
- depends on BB_FDISK && BB_FEATURE_FDISK_WRITABLE
+ depends on BB_CONFIG_FDISK && BB_CONFIG_FEATURE_FDISK_WRITABLE
help
Enabling this option allows you to create or change SUN disklabels.
Most people can safely leave this option disabled.
-config BB_FEATURE_OSF_LABEL
+config BB_CONFIG_FEATURE_OSF_LABEL
bool "Support BSD disklabels"
default n
- depends on BB_FDISK && BB_FEATURE_FDISK_WRITABLE
+ depends on BB_CONFIG_FDISK && BB_CONFIG_FEATURE_FDISK_WRITABLE
help
Enabling this option allows you to create or change BSD disklabels
and define and edit BSD disk slices.
-config BB_FEATURE_FDISK_ADVANCED
+config BB_CONFIG_FEATURE_FDISK_ADVANCED
bool "Support expert mode"
default n
- depends on BB_FDISK && BB_FEATURE_FDISK_WRITABLE
+ depends on BB_CONFIG_FDISK && BB_CONFIG_FEATURE_FDISK_WRITABLE
help
Enabling this option allows you to do terribly unsafe things like
define arbitrary drive geometry, move the beginning of data in a
partition, and similarly evil things. Unless you have a very good
reason you would be wise to leave this disabled.
-config BB_FREERAMDISK
+config BB_CONFIG_FREERAMDISK
bool "freeramdisk"
default n
help
@@ -162,7 +162,7 @@ config BB_FREERAMDISK
ramdisk. If you have no use for freeing memory from a ramdisk, leave
this disabled.
-config BB_FSCK_MINIX
+config BB_CONFIG_FSCK_MINIX
bool "fsck_minix"
default n
help
@@ -173,7 +173,7 @@ config BB_FSCK_MINIX
check for and attempt to repair any corruption that occurs to a minix
filesystem.
-config BB_MKFS_MINIX
+config BB_CONFIG_MKFS_MINIX
bool "mkfs_minix"
default n
help
@@ -182,18 +182,18 @@ config BB_MKFS_MINIX
this utility will do the job for you.
comment "Minix filesystem support"
- depends on BB_FSCK_MINIX || BB_MKFS_MINIX
+ depends on BB_CONFIG_FSCK_MINIX || BB_CONFIG_MKFS_MINIX
-config BB_FEATURE_MINIX2
+config BB_CONFIG_FEATURE_MINIX2
bool "Support Minix fs v2 (fsck_minix/mkfs_minix)"
default y
- depends on BB_FSCK_MINIX || BB_MKFS_MINIX
+ depends on BB_CONFIG_FSCK_MINIX || BB_CONFIG_MKFS_MINIX
help
If you wish to be able to create version 2 minix filesystems, enable this.
If you enabled 'mkfs_minix' then you almost certainly want to be using the
version 2 filesystem support.
-config BB_GETOPT
+config BB_CONFIG_GETOPT
bool "getopt"
default n
help
@@ -204,14 +204,14 @@ config BB_GETOPT
written by others, this utility may be for you. Most people will
wisely leave this disabled.
-config BB_HEXDUMP
+config BB_CONFIG_HEXDUMP
bool "hexdump"
default n
help
The hexdump utility is used to display binary data in a readable
way that is comparable to the output from most hex editors.
-config BB_HWCLOCK
+config BB_CONFIG_HWCLOCK
bool "hwclock"
default n
help
@@ -220,19 +220,19 @@ config BB_HWCLOCK
shutdown in the hardware clock, so the hardware will keep the
correct time when Linux is _not_ running.
-config BB_FEATURE_HWCLOCK_LONG_OPTIONS
+config BB_CONFIG_FEATURE_HWCLOCK_LONG_OPTIONS
bool "Support long options (--hctosys,...)"
default n
- depends on BB_HWCLOCK && BB_GETOPT_LONG
+ depends on BB_CONFIG_HWCLOCK && BB_CONFIG_GETOPT_LONG
help
By default, the hwclock utility only uses short options. If you
are overly fond of its long options, such as --hctosys, --utc, etc)
then enable this option.
-config BB_FEATURE_HWCLOCK_ADJTIME_FHS
+config BB_CONFIG_FEATURE_HWCLOCK_ADJTIME_FHS
bool "Use FHS /var/lib/hwclock/adjtime"
default y
- depends on BB_HWCLOCK
+ depends on BB_CONFIG_HWCLOCK
help
Starting with FHS 2.3, the adjtime state file is supposed to exist
at /var/lib/hwclock/adjtime instead of /etc/adjtime. If you wish
@@ -241,24 +241,24 @@ config BB_FEATURE_HWCLOCK_ADJTIME_FHS
http://www.pathname.com/fhs/pub/fhs-2.3.html#VARLIBHWCLOCKSTATEDIRECTORYFORHWCLO
-config BB_IPCRM
+config BB_CONFIG_IPCRM
bool "ipcrm"
default n
- select BB_FEATURE_SUID
+ select BB_CONFIG_FEATURE_SUID
help
The ipcrm utility allows the removal of System V interprocess
communication (IPC) objects and the associated data structures
from the system.
-config BB_IPCS
+config BB_CONFIG_IPCS
bool "ipcs"
default n
- select BB_FEATURE_SUID
+ select BB_CONFIG_FEATURE_SUID
help
The ipcs utility is used to provide information on the currently
allocated System V interprocess (IPC) objects in the system.
-config BB_LOSETUP
+config BB_CONFIG_LOSETUP
bool "losetup"
default n
help
@@ -266,7 +266,7 @@ config BB_LOSETUP
file or block device, and to query the status of a loop device. This
version does not currently support enabling data encryption.
-config BB_MDEV
+config BB_CONFIG_MDEV
bool "mdev"
default n
help
@@ -275,10 +275,10 @@ config BB_MDEV
have it handle hotplug events afterwards. Device names are taken
from sysfs.
-config BB_FEATURE_MDEV_CONF
+config BB_CONFIG_FEATURE_MDEV_CONF
bool "Support /etc/mdev.conf"
default n
- depends on BB_MDEV
+ depends on BB_CONFIG_MDEV
help
The mdev config file contains lines that look like:
@@ -290,10 +290,10 @@ config BB_FEATURE_MDEV_CONF
entry is matched, devices are created with default 0:0 660. (Make
the last line match .* to override this.)
-config BB_FEATURE_MDEV_EXEC
+config BB_CONFIG_FEATURE_MDEV_EXEC
bool "Support command execution at device addition/removal"
default n
- depends on BB_FEATURE_MDEV_CONF
+ depends on BB_CONFIG_FEATURE_MDEV_CONF
help
This adds support for an optional field to /etc/mdev.conf, consisting
of a special character and a command line to run after creating the
@@ -311,7 +311,7 @@ config BB_FEATURE_MDEV_EXEC
Commands are executed via system() so you need /bin/sh, meaning you
probably want to select a default shell in the Shells menu.
-config BB_MKSWAP
+config BB_CONFIG_MKSWAP
bool "mkswap"
default n
help
@@ -324,17 +324,17 @@ config BB_MKSWAP
Once you have created swap space using 'mkswap' you need to enable
the swap space using the 'swapon' utility.
-config BB_FEATURE_MKSWAP_V0
+config BB_CONFIG_FEATURE_MKSWAP_V0
bool "version 0 support"
default n
- depends on BB_MKSWAP
+ depends on BB_CONFIG_MKSWAP
# depends on MKSWAP && DEPRECATED
help
Enable support for the old v0 style.
If your kernel is older than 2.1.117, then v0 support is the
only option.
-config BB_MORE
+config BB_CONFIG_MORE
bool "more"
default n
help
@@ -344,10 +344,10 @@ config BB_MORE
you will probably find this utility very helpful. If you don't have
any need to reading text files, you can leave this disabled.
-config BB_FEATURE_USE_TERMIOS
+config BB_CONFIG_FEATURE_USE_TERMIOS
bool "Use termios to manipulate the screen"
default y
- depends on BB_MORE
+ depends on BB_CONFIG_MORE
help
This option allows utilities such as 'more' and 'top' to determine
the size of the screen. If you leave this disabled, your utilities
@@ -355,7 +355,7 @@ config BB_FEATURE_USE_TERMIOS
will be unable to determine the current screen size, and will be
unable to move the cursor.
-config BB_MOUNT
+config BB_CONFIG_MOUNT
bool "mount"
default n
help
@@ -366,24 +366,24 @@ config BB_MOUNT
NFS filesystems. Most people using BusyBox will also want to enable
the 'mount' utility.
-config BB_FEATURE_MOUNT_NFS
+config BB_CONFIG_FEATURE_MOUNT_NFS
bool "Support mounting NFS file systems"
default n
- depends on BB_MOUNT
- depends on BB_FEATURE_HAVE_RPC
- select BB_FEATURE_SYSLOG
+ depends on BB_CONFIG_MOUNT
+ depends on BB_CONFIG_FEATURE_HAVE_RPC
+ select BB_CONFIG_FEATURE_SYSLOG
help
Enable mounting of NFS file systems.
-config BB_FEATURE_MOUNT_CIFS
+config BB_CONFIG_FEATURE_MOUNT_CIFS
bool "Support mounting CIFS/SMB file systems"
default n
- depends on BB_MOUNT
+ depends on BB_CONFIG_MOUNT
help
Enable support for samba mounts.
-config BB_FEATURE_MOUNT_FLAGS
- depends on BB_MOUNT
+config BB_CONFIG_FEATURE_MOUNT_FLAGS
+ depends on BB_CONFIG_MOUNT
bool "Support lots of -o flags in mount"
default y
help
@@ -392,14 +392,14 @@ config BB_FEATURE_MOUNT_FLAGS
noatime, diratime, nodiratime, loud, bind, move, shared, slave,
private, unbindable, rshared, rslave, rprivate, and runbindable.
-config BB_FEATURE_MOUNT_FSTAB
- depends on BB_MOUNT
+config BB_CONFIG_FEATURE_MOUNT_FSTAB
+ depends on BB_CONFIG_MOUNT
bool "Support /etc/fstab and -a"
default y
help
Support mount all and looking for files in /etc/fstab.
-config BB_PIVOT_ROOT
+config BB_CONFIG_PIVOT_ROOT
bool "pivot_root"
default n
help
@@ -411,7 +411,7 @@ config BB_PIVOT_ROOT
Note: This is for initrd in linux 2.4. Under initramfs (introduced
in linux 2.6) use switch_root instead.
-config BB_RDATE
+config BB_CONFIG_RDATE
bool "rdate"
default n
help
@@ -420,13 +420,13 @@ config BB_RDATE
the RFC868 protocol, which is built into the inetd daemon on most
systems.
-config BB_READPROFILE
+config BB_CONFIG_READPROFILE
bool "readprofile"
default n
help
This allows you to parse /proc/profile for basic profiling.
-config BB_SETARCH
+config BB_CONFIG_SETARCH
bool "setarch"
default n
help
@@ -435,7 +435,7 @@ config BB_SETARCH
this util on a system that supports both 64bit and 32bit userland
(like amd64/x86, ppc64/ppc, sparc64/sparc, etc...).
-config BB_SWAPONOFF
+config BB_CONFIG_SWAPONOFF
bool "swaponoff"
default n
help
@@ -446,7 +446,7 @@ config BB_SWAPONOFF
space. If you are not using any swap space, you can leave this
option disabled.
-config BB_SWITCH_ROOT
+config BB_CONFIG_SWITCH_ROOT
bool "switch_root"
default n
help
@@ -465,7 +465,7 @@ config BB_SWITCH_ROOT
and ending point for searching through the kernel's doubly linked
list of active mount points. That's why.
-config BB_UMOUNT
+config BB_CONFIG_UMOUNT
bool "umount"
default n
help
@@ -474,20 +474,20 @@ config BB_UMOUNT
the tool to use. If you enabled the 'mount' utility, you almost certainly
also want to enable 'umount'.
-config BB_FEATURE_UMOUNT_ALL
+config BB_CONFIG_FEATURE_UMOUNT_ALL
bool "umount -a option"
default n
- depends on BB_UMOUNT
+ depends on BB_CONFIG_UMOUNT
help
Support -a option to unmount all currently mounted filesystems.
comment "Common options for mount/umount"
- depends on BB_MOUNT || BB_UMOUNT
+ depends on BB_CONFIG_MOUNT || BB_CONFIG_UMOUNT
-config BB_FEATURE_MOUNT_LOOP
+config BB_CONFIG_FEATURE_MOUNT_LOOP
bool "Support loopback mounts"
default n
- depends on BB_MOUNT || BB_UMOUNT
+ depends on BB_CONFIG_MOUNT || BB_CONFIG_UMOUNT
help
Enabling this feature allows automatic mounting of files (containing
filesystem images) via the linux kernel's loopback devices. The mount
@@ -500,10 +500,10 @@ config BB_FEATURE_MOUNT_LOOP
specify an offset or cryptographic options to the loopback device.
(If you don't want umount to free the loop device, use "umount -D".)
-config BB_FEATURE_MTAB_SUPPORT
+config BB_CONFIG_FEATURE_MTAB_SUPPORT
bool "Support for the old /etc/mtab file"
default n
- depends on BB_MOUNT || BB_UMOUNT
+ depends on BB_CONFIG_MOUNT || BB_CONFIG_UMOUNT
help
Historically, Unix systems kept track of the currently mounted
partitions in the file "/etc/mtab". These days, the kernel exports
diff --git a/rules/busybox.make b/rules/busybox.make
index c700fe105..29bf2a784 100644
--- a/rules/busybox.make
+++ b/rules/busybox.make
@@ -62,7 +62,7 @@ BUSYBOX_PATH = PATH=$(CROSS_PATH)
BUSYBOX_ENV = $(CROSS_ENV)
BUSYBOX_TARGET_LDFLAGS = $(call remove_quotes,$(TARGET_LDFLAGS))
-ifdef PTXCONF_BB_STATIC
+ifdef PTXCONF_BB_CONFIG_STATIC
BUSYBOX_TARGET_LDFLAGS += -static
endif
@@ -81,8 +81,8 @@ $(STATEDIR)/busybox.prepare: $(busybox_prepare_deps_default)
touch $(BUSYBOX_DIR)/busybox.links
$(BUSYBOX_PATH) make -C $(BUSYBOX_DIR) distclean $(BUSYBOX_MAKEVARS)
- grep -e PTXCONF_BB_ $(PTXDIST_WORKSPACE)/ptxconfig > $(BUSYBOX_DIR)/.config
- perl -i -p -e 's/PTXCONF_BB_/CONFIG_/g' $(BUSYBOX_DIR)/.config
+ grep -e PTXCONF_BB_CONFIG_ $(PTXDIST_WORKSPACE)/ptxconfig > $(BUSYBOX_DIR)/.config
+ perl -i -p -e 's/PTXCONF_BB_CONFIG_/CONFIG_/g' $(BUSYBOX_DIR)/.config
yes "" | $(BUSYBOX_PATH) make -C $(BUSYBOX_DIR) oldconfig $(BUSYBOX_MAKEVARS)
@$(call touch, $@)
diff --git a/rules/coreutils.in b/rules/coreutils.in
index d6c4a2bd8..1e34ac79b 100644
--- a/rules/coreutils.in
+++ b/rules/coreutils.in
@@ -7,42 +7,42 @@ config COREUTILS_CP
bool
prompt "cp"
depends on COREUTILS
- depends on !BB_CP
+ depends on !BB_CONFIG_CP
help
copy files and directories
comment "busy box' cp is selected!"
- depends on COREUTILS && BB_CP
+ depends on COREUTILS && BB_CONFIG_CP
config COREUTILS_DD
bool
prompt "dd"
depends on COREUTILS
- depends on !BB_DD
+ depends on !BB_CONFIG_DD
help
convert and copy a file
comment "busy box' dd is selected!"
- depends on COREUTILS && BB_DD
+ depends on COREUTILS && BB_CONFIG_DD
config COREUTILS_MD5SUM
bool
prompt "md5sum"
depends on COREUTILS
- depends on !BB_MD5SUM
+ depends on !BB_CONFIG_MD5SUM
help
compute and check MD5 message digest
comment "busy box' md5sum is selected!"
- depends on COREUTILS && BB_MD5SUM
+ depends on COREUTILS && BB_CONFIG_MD5SUM
config COREUTILS_SEQ
bool
prompt "seq"
depends on COREUTILS
- depends on !BB_SEQ
+ depends on !BB_CONFIG_SEQ
help
print a sequence of numbers
comment "busy box' seq is selected!"
- depends on COREUTILS && BB_SEQ
+ depends on COREUTILS && BB_CONFIG_SEQ
diff --git a/rules/dropbear.in b/rules/dropbear.in
index 31abad120..2f12e477f 100644
--- a/rules/dropbear.in
+++ b/rules/dropbear.in
@@ -215,7 +215,7 @@ config DROPBEAR_DROPBEAR
select DROPBEAR_DROPBEAR_KEY
select DROPBEAR_RSA
select DROPBEAR_DSS
- select BB_START_STOP_DAEMON if BUSYBOX
+ select BB_CONFIG_START_STOP_DAEMON if BUSYBOX
help
FIXME: This item should be documented in detail
diff --git a/rules/e2fsprogs.in b/rules/e2fsprogs.in
index 54b3bb6f9..0e9021020 100644
--- a/rules/e2fsprogs.in
+++ b/rules/e2fsprogs.in
@@ -10,13 +10,13 @@ config E2FSPROGS_MKFS
prompt "Install mke2fs"
default y
depends on E2FSPROGS
- depends on !BB_MKE2FS
+ depends on !BB_CONFIG_MKE2FS
help
This installs /sbin/mke2fs, the filesystem builder for
ext2 and ext3
comment "Busybox' mke2fs is selected"
- depends on BB_MKE2FS
+ depends on BB_CONFIG_MKE2FS
depends on E2FSPROGS
config E2FSPROGS_E2FSCK
@@ -24,20 +24,20 @@ config E2FSPROGS_E2FSCK
prompt "Install e2fsck"
default y
depends on E2FSPROGS
- depends on !BB_E2FSCK
+ depends on !BB_CONFIG_E2FSCK
help
This will install /sbin/e2fsck, the filesystem
checking and recovery tool for ext2 and ext3.
comment "Busybox' e2fsck is selected"
- depends on BB_E2FSCK
+ depends on BB_CONFIG_E2FSCK
depends on E2FSPROGS
config E2FSPROGS_TUNE2FS
bool
prompt "Install tune2fs, findfs, e2label"
depends on E2FSPROGS
- depends on !BB_TUNE2FS
+ depends on !BB_CONFIG_TUNE2FS
help
This will install /sbin/tune2fs, /sbin/findfs, /sbin/e2label
to your target. Please note, that all thre share the same
@@ -52,5 +52,5 @@ config E2FSPROGS_TUNE2FS
e2label can display and edit ext2 and ext3 filesystem labels.
comment "Busybox' tune2fs is selected"
- depends on BB_TUNE2FS
+ depends on BB_CONFIG_TUNE2FS
depends on E2FSPROGS
diff --git a/rules/findutils.in b/rules/findutils.in
index 7d64ed90a..2494b2721 100644
--- a/rules/findutils.in
+++ b/rules/findutils.in
@@ -8,27 +8,27 @@ menuconfig FINDUTILS
config FINDUTILS_FIND
bool
- depends on FINDUTILS && !BB_FIND
+ depends on FINDUTILS && !BB_CONFIG_FIND
prompt "find"
help
Searches given directory trees for files matching the specified criteria
comment "busy box' find is selected!"
- depends on FINDUTILS && BB_FIND
+ depends on FINDUTILS && BB_CONFIG_FIND
config FINDUTILS_XARGS
bool
- depends on FINDUTILS && !BB_XARGS
+ depends on FINDUTILS && !BB_CONFIG_XARGS
prompt "xargs"
help
Can be used to apply a given command to a list of files
comment "busy box' xargs is selected!"
- depends on FINDUTILS && BB_XARGS
+ depends on FINDUTILS && BB_CONFIG_XARGS
config FINDUTILS_DATABASE
bool
- depends on FINDUTILS && !BB_FIND && !BB_XARGS
+ depends on FINDUTILS && !BB_CONFIG_FIND && !BB_CONFIG_XARGS
select FINDUTILS_FIND
select FINDUTILS_XARGS
prompt "database support"
diff --git a/rules/hdparm.in b/rules/hdparm.in
index efb3b53e6..834973918 100644
--- a/rules/hdparm.in
+++ b/rules/hdparm.in
@@ -1,10 +1,10 @@
config HDPARM
bool "hdparm "
- depends on !BB_HDPARM
+ depends on !BB_CONFIG_HDPARM
help
hdparm - get/set ATA drive parameters under Linux
See http://sourceforge.net/projects/hdparm/ for details.
comment "Busybox' hdparm is selected"
- depends on BB_HDPARM
+ depends on BB_CONFIG_HDPARM
diff --git a/rules/inetutils.in b/rules/inetutils.in
index 2864bdf93..767e5ec64 100644
--- a/rules/inetutils.in
+++ b/rules/inetutils.in
@@ -9,7 +9,7 @@ comment "build options ---"
config INETUTILS_INETD
bool
- depends on !BB_INETD
+ depends on !BB_CONFIG_INETD
prompt "inetd"
depends on INETUTILS
help
@@ -17,18 +17,18 @@ config INETUTILS_INETD
various other programs and start them if a connection request occures.
comment "busy box' inetd is selected!"
- depends on INETUTILS && BB_INETD
+ depends on INETUTILS && BB_CONFIG_INETD
config INETUTILS_PING
bool
- depends on !BB_PING
+ depends on !BB_CONFIG_PING
prompt "ping"
depends on INETUTILS
help
Ping is a small tool to check if another host is alive in the network
comment "busy box' ping is selected!"
- depends on INETUTILS && BB_PING
+ depends on INETUTILS && BB_CONFIG_PING
config INETUTILS_RCP
bool
diff --git a/rules/module-init-tools.in b/rules/module-init-tools.in
index c86f541a0..d67e0dcaa 100644
--- a/rules/module-init-tools.in
+++ b/rules/module-init-tools.in
@@ -10,32 +10,32 @@ menuconfig MODULE_INIT_TOOLS
config MODULE_INIT_TOOLS_INSMOD
bool
prompt "Install insmod on target"
- depends on MODULE_INIT_TOOLS && !BB_INSMOD
+ depends on MODULE_INIT_TOOLS && !BB_CONFIG_INSMOD
help
FIXME: This item needs to be documented
comment "Busybox' insmod is selected!"
- depends on MODULE_INIT_TOOLS && BB_INSMOD
+ depends on MODULE_INIT_TOOLS && BB_CONFIG_INSMOD
config MODULE_INIT_TOOLS_RMMOD
bool
prompt "Install rmmod on target"
- depends on MODULE_INIT_TOOLS && !BB_RMMOD
+ depends on MODULE_INIT_TOOLS && !BB_CONFIG_RMMOD
help
FIXME: This item needs to be documented
comment "Busybox' rmmod is selected!"
- depends on MODULE_INIT_TOOLS && BB_RMMOD
+ depends on MODULE_INIT_TOOLS && BB_CONFIG_RMMOD
config MODULE_INIT_TOOLS_LSMOD
bool
prompt "Install lsmod on target"
- depends on MODULE_INIT_TOOLS && !BB_LSMOD
+ depends on MODULE_INIT_TOOLS && !BB_CONFIG_LSMOD
help
FIXME: This item needs to be documented
comment "Busybox' lsmod is selected!"
- depends on MODULE_INIT_TOOLS && BB_LSMOD
+ depends on MODULE_INIT_TOOLS && BB_CONFIG_LSMOD
config MODULE_INIT_TOOLS_MODINFO
bool
@@ -47,12 +47,12 @@ config MODULE_INIT_TOOLS_MODINFO
config MODULE_INIT_TOOLS_MODPROBE
bool
prompt "Install modprobe on target"
- depends on MODULE_INIT_TOOLS && !BB_MODPROBE
+ depends on MODULE_INIT_TOOLS && !BB_CONFIG_MODPROBE
help
FIXME: This item needs to be documented
comment "Busybox' modprobe is selected!"
- depends on MODULE_INIT_TOOLS && BB_MODPROBE
+ depends on MODULE_INIT_TOOLS && BB_CONFIG_MODPROBE
config MODULE_INIT_TOOLS_DEPMOD
bool
diff --git a/rules/ntpclient.in b/rules/ntpclient.in
index ecd921cc2..5ddcd7e87 100644
--- a/rules/ntpclient.in
+++ b/rules/ntpclient.in
@@ -32,7 +32,7 @@ config NTPCLIENT_BUILD_NTPCLIENT
config NTPCLIENT_BUILD_ADJTIMEX
bool
depends on NTPCLIENT
- depends on !BB_ADJTIMEX
+ depends on !BB_CONFIG_ADJTIMEX
prompt "adjtimex"
default y
help
@@ -40,7 +40,7 @@ config NTPCLIENT_BUILD_ADJTIMEX
comment "Busybox' adjtimex is in use"
depends on NTPCLIENT
- depends on BB_ADJTIMEX
+ depends on BB_CONFIG_ADJTIMEX
comment "runtime options ---"
depends on NTPCLIENT
diff --git a/rules/procps.in b/rules/procps.in
index 9001e32f9..91e469f86 100644
--- a/rules/procps.in
+++ b/rules/procps.in
@@ -9,13 +9,13 @@ config PROCPS_TOP
bool
prompt "top"
depends on PROCPS
- depends on !BB_TOP
+ depends on !BB_CONFIG_TOP
help
FIXME: This item needs to be documented
comment "top is disabled by busybox top"
depends on PROCPS
- depends on BB_TOP
+ depends on BB_CONFIG_TOP
config PROCPS_SLABTOP
bool
@@ -28,19 +28,19 @@ config PROCPS_SYSCTL
bool
prompt "sysctl"
depends on PROCPS
- depends on !BB_BB_SYSCTL
+ depends on !BB_CONFIG_SYSCTL
help
FIXME: This item needs to be documented
comment "sysctl is disabled by busybox sysctl"
depends on PROCPS
- depends on BB_BB_SYSCTL
+ depends on BB_CONFIG_SYSCTL
config PROCPS_PS
bool
prompt "ps"
depends on PROCPS
- depends on !BB_PS
+ depends on !BB_CONFIG_PS
help
ps stands for process status. With this command you
analyse current states of all processes running on
@@ -48,7 +48,7 @@ config PROCPS_PS
comment "ps is disabled by busybox ps"
depends on PROCPS
- depends on BB_PS
+ depends on BB_CONFIG_PS
config PROCPS_W
bool
diff --git a/rules/rootfs.in b/rules/rootfs.in
index d70a99d5a..41cb86485 100644
--- a/rules/rootfs.in
+++ b/rules/rootfs.in
@@ -6,7 +6,7 @@ config ROOTFS
bool
prompt "Create Directories in /"
default y
- select BB_FEATURE_SHADOWPASSWDS if BUSYBOX
+ select BB_CONFIG_FEATURE_SHADOWPASSWDS if BUSYBOX
help
In order to support a standard root filesystem some subdirectories are
mandatory. They will be created by ptxdist automatically. Some
diff --git a/rules/rootfs.make b/rules/rootfs.make
index 8f26475be..38db4c590 100644
--- a/rules/rootfs.make
+++ b/rules/rootfs.make
@@ -766,7 +766,7 @@ endif
# -----------------------------------------------------------------------------
# add telnetd if enabled
#
-ifdef PTXCONF_BB_FEATURE_TELNETD_STANDALONE
+ifdef PTXCONF_BB_CONFIG_FEATURE_TELNETD_STANDALONE
# remove all telnetd entries if this service is not enabled
@$(call install_replace, rootfs, /etc/inetd.conf, @TELNETD@, )
@$(call install_replace, rootfs, /etc/services, @TELNETD@, )
diff --git a/rules/rootfs_configfiles.in b/rules/rootfs_configfiles.in
index 122db6539..d18bb715a 100644
--- a/rules/rootfs_configfiles.in
+++ b/rules/rootfs_configfiles.in
@@ -241,7 +241,7 @@ menuconfig ROOTFS_HOSTS
#
menuconfig ROOTFS_INITTAB
depends on ROOTFS
- select BB_GETTY if BUSYBOX
+ select BB_CONFIG_GETTY if BUSYBOX
bool
prompt "/etc/inittab "
default y
@@ -415,7 +415,7 @@ menuconfig ROOTFS_PROTOCOLS
#
menuconfig ROOTFS_INETD
depends on ROOTFS
- depends on BB_INETD || INETUTILS_INETD
+ depends on BB_CONFIG_INETD || INETUTILS_INETD
bool
prompt "/etc/inetd.conf "
default y
@@ -468,8 +468,8 @@ config ROOTFS_ETC_MODULES
#
menuconfig ROOTFS_UDHCPC
depends on ROOTFS
- depends on BB_APP_UDHCPC
- select BB_IFCONFIG
+ depends on BB_CONFIG_APP_UDHCPC
+ select BB_CONFIG_IFCONFIG
bool
prompt "/etc/udhcpc.script "
default y
diff --git a/rules/rootfs_init_d_files.in b/rules/rootfs_init_d_files.in
index b96410148..026d0eba2 100644
--- a/rules/rootfs_init_d_files.in
+++ b/rules/rootfs_init_d_files.in
@@ -7,7 +7,7 @@ config ROOTFS_ETC_INITD
bool
prompt "Generic Scripts for /etc/init.d"
default y
- select BB_RUN_PARTS if BUSYBOX
+ select BB_CONFIG_RUN_PARTS if BUSYBOX
help
When enabled, this option copies the files from
${PTXDIST_TOPDIR}/generic/etc/init.d to the target root
@@ -53,7 +53,7 @@ menuconfig ROOTFS_ETC_INITD_RCS
# initd startscript is for busysbox only
config ROOTFS_ETC_INITD_INETD
depends on ROOTFS_ETC_INITD
- depends on BB_INETD
+ depends on BB_CONFIG_INETD
bool
prompt "inetd"
help
@@ -81,8 +81,8 @@ menuconfig ROOTFS_ETC_INITD_NETWORKING
bool
default y
prompt "networking "
- select BB_IFUPDOWN if BUSYBOX
- select BB_FEATURE_IFUPDOWN_IP if BUSYBOX
+ select BB_CONFIG_IFUPDOWN if BUSYBOX
+ select BB_CONFIG_FEATURE_IFUPDOWN_IP if BUSYBOX
help
When enabled, this option installs the generic
/etc/init.d/networking file. This script starts
@@ -101,8 +101,8 @@ menuconfig ROOTFS_ETC_INITD_NETWORKING
menuconfig ROOTFS_ETC_INITD_TELNETD
depends on ROOTFS_ETC_INITD
- depends on BB_TELNETD
- depends on BB_FEATURE_TELNETD_STANDALONE
+ depends on BB_CONFIG_TELNETD
+ depends on BB_CONFIG_FEATURE_TELNETD_STANDALONE
bool
default y
prompt "telnetd "
@@ -137,7 +137,7 @@ menuconfig ROOTFS_ETC_INITD_TELNETD
menuconfig ROOTFS_ETC_INITD_SYSLOGD_KLOGD
depends on ROOTFS_ETC_INITD
- depends on BB_SYSLOGD
+ depends on BB_CONFIG_SYSLOGD
bool
prompt "syslogd "
help
@@ -171,7 +171,7 @@ menuconfig ROOTFS_ETC_INITD_SYSLOGD_KLOGD
menuconfig ROOTFS_ETC_INITD_HWCLOCK
depends on ROOTFS_ETC_INITD
- depends on BB_HWCLOCK
+ depends on BB_CONFIG_HWCLOCK
bool
prompt "timekeeper "
help
@@ -244,7 +244,7 @@ menuconfig ROOTFS_ETC_INITD_BANNER
# this is for busybox' crond only
#
menuconfig ROOTFS_ETC_INITD_CROND
- depends on ROOTFS_ETC_INITD && BB_CROND
+ depends on ROOTFS_ETC_INITD && BB_CONFIG_CROND
bool
default y
prompt "crond "
diff --git a/rules/utelnetd.in b/rules/utelnetd.in
index e826a03fb..88b20c345 100644
--- a/rules/utelnetd.in
+++ b/rules/utelnetd.in
@@ -1,5 +1,5 @@
menuconfig UTELNETD
- depends on !BB_TELNETD
+ depends on !BB_CONFIG_TELNETD
bool
prompt "utelnetd "
help
diff --git a/rules/util-linux.in b/rules/util-linux.in
index 194ce9151..c7f9b76b4 100644
--- a/rules/util-linux.in
+++ b/rules/util-linux.in
@@ -7,12 +7,12 @@ config UTIL_LINUX_FDISK
bool
prompt "fdisk"
depends on UTIL_LINUX
- depends on !BB_FDISK
+ depends on !BB_CONFIG_FDISK
help
fdisk - Partition table manipulator for Linux
comment "busy box' fdisk is selected!"
- depends on UTIL_LINUX && BB_FDISK
+ depends on UTIL_LINUX && BB_CONFIG_FDISK
config UTIL_LINUX_SFDISK
bool
@@ -34,66 +34,66 @@ config UTIL_LINUX_MKSWAP
bool
prompt "mkswap"
depends on UTIL_LINUX
- depends on !BB_MKSWAP
+ depends on !BB_CONFIG_MKSWAP
help
mkswap sets up a Linux swap area on a device or in a file.
comment "busy box' mkswap is selected!"
- depends on UTIL_LINUX && BB_MKSWAP
+ depends on UTIL_LINUX && BB_CONFIG_MKSWAP
config UTIL_LINUX_SWAPON
bool
prompt "swapon"
depends on UTIL_LINUX
- depends on !BB_SWAPONOFF
+ depends on !BB_CONFIG_SWAPONOFF
help
Swapon is used to specify devices on which paging and swapping are to take place.
comment "busy box' swapon is selected!"
- depends on UTIL_LINUX && BB_SWAPONOFF
+ depends on UTIL_LINUX && BB_CONFIG_SWAPONOFF
config UTIL_LINUX_MOUNT
bool
prompt "mount"
depends on UTIL_LINUX
- depends on !BB_MOUNT
+ depends on !BB_CONFIG_MOUNT
help
The mount command serves to attach the file system
found on some device to the big file tree.
comment "busy box' mount is selected!"
- depends on UTIL_LINUX && BB_MOUNT
+ depends on UTIL_LINUX && BB_CONFIG_MOUNT
config UTIL_LINUX_UMOUNT
bool
prompt "umount"
depends on UTIL_LINUX
- depends on !BB_UMOUNT
+ depends on !BB_CONFIG_UMOUNT
help
The mount(8) command serves to attach the file system
found on some device to the big file tree.
Conversely, the umount(8) command will detach it again.
comment "busy box' umount is selected!"
- depends on UTIL_LINUX && BB_UMOUNT
+ depends on UTIL_LINUX && BB_CONFIG_UMOUNT
config UTIL_LINUX_IPCS
bool
prompt "ipcs"
depends on UTIL_LINUX
- depends on !BB_IPCS
+ depends on !BB_CONFIG_IPCS
help
ipcs provides information on the ipc facilities
for which the calling process has read acccess.
comment "busy box' ipcs is selected!"
- depends on UTIL_LINUX && BB_IPCS
+ depends on UTIL_LINUX && BB_CONFIG_IPCS
config UTIL_LINUX_READPROFILE
bool
prompt "readprofile"
depends on UTIL_LINUX
- depends on !BB_READPROFILE
+ depends on !BB_CONFIG_READPROFILE
help
The readprofile command uses the /proc/profile information
to print ascii data on standard output. The output is
@@ -105,5 +105,5 @@ config UTIL_LINUX_READPROFILE
procedure. The output is filled with blanks to ease readability.
comment "busy box' readprofile is selected!"
- depends on UTIL_LINUX && BB_READPROFILE
+ depends on UTIL_LINUX && BB_CONFIG_READPROFILE