remove defconfig. Now "make defconfig" simply uses defaults from Config.in
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
f0f9470061
commit
2f32bf8be6
20
Config.in
20
Config.in
@ -82,7 +82,7 @@ config SHOW_USAGE
|
|||||||
|
|
||||||
config FEATURE_VERBOSE_USAGE
|
config FEATURE_VERBOSE_USAGE
|
||||||
bool "Show verbose applet usage messages"
|
bool "Show verbose applet usage messages"
|
||||||
default n
|
default y
|
||||||
depends on SHOW_USAGE
|
depends on SHOW_USAGE
|
||||||
help
|
help
|
||||||
All BusyBox applets will show more verbose help messages when
|
All BusyBox applets will show more verbose help messages when
|
||||||
@ -106,7 +106,7 @@ config FEATURE_COMPRESS_USAGE
|
|||||||
|
|
||||||
config FEATURE_INSTALLER
|
config FEATURE_INSTALLER
|
||||||
bool "Support --install [-s] to install applet links at runtime"
|
bool "Support --install [-s] to install applet links at runtime"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Enable 'busybox --install [-s]' support. This will allow you to use
|
Enable 'busybox --install [-s]' support. This will allow you to use
|
||||||
busybox at runtime to create hard links or symlinks for all the
|
busybox at runtime to create hard links or symlinks for all the
|
||||||
@ -121,7 +121,7 @@ config LOCALE_SUPPORT
|
|||||||
|
|
||||||
config UNICODE_SUPPORT
|
config UNICODE_SUPPORT
|
||||||
bool "Support Unicode"
|
bool "Support Unicode"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
This makes various applets aware that one byte is not
|
This makes various applets aware that one byte is not
|
||||||
one character on screen.
|
one character on screen.
|
||||||
@ -141,7 +141,7 @@ config UNICODE_USING_LOCALE
|
|||||||
|
|
||||||
config FEATURE_CHECK_UNICODE_IN_ENV
|
config FEATURE_CHECK_UNICODE_IN_ENV
|
||||||
bool "Check $LANG environment variable"
|
bool "Check $LANG environment variable"
|
||||||
default y
|
default n
|
||||||
depends on UNICODE_SUPPORT && !UNICODE_USING_LOCALE
|
depends on UNICODE_SUPPORT && !UNICODE_USING_LOCALE
|
||||||
help
|
help
|
||||||
With this option on, Unicode support is activated
|
With this option on, Unicode support is activated
|
||||||
@ -265,7 +265,7 @@ config FEATURE_CLEAN_UP
|
|||||||
|
|
||||||
config FEATURE_UTMP
|
config FEATURE_UTMP
|
||||||
bool "Support utmp file"
|
bool "Support utmp file"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
The file /var/run/utmp is used to track who is currently logged in.
|
The file /var/run/utmp is used to track who is currently logged in.
|
||||||
With this option on, certain applets (getty, login, telnetd etc)
|
With this option on, certain applets (getty, login, telnetd etc)
|
||||||
@ -274,7 +274,7 @@ config FEATURE_UTMP
|
|||||||
|
|
||||||
config FEATURE_WTMP
|
config FEATURE_WTMP
|
||||||
bool "Support wtmp file"
|
bool "Support wtmp file"
|
||||||
default n
|
default y
|
||||||
select FEATURE_UTMP
|
select FEATURE_UTMP
|
||||||
help
|
help
|
||||||
The file /var/run/wtmp is used to track when users have logged into
|
The file /var/run/wtmp is used to track when users have logged into
|
||||||
@ -285,14 +285,14 @@ config FEATURE_WTMP
|
|||||||
|
|
||||||
config FEATURE_PIDFILE
|
config FEATURE_PIDFILE
|
||||||
bool "Support writing pidfiles"
|
bool "Support writing pidfiles"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
This option makes some applets (e.g. crond, syslogd, inetd) write
|
This option makes some applets (e.g. crond, syslogd, inetd) write
|
||||||
a pidfile in /var/run. Some applications rely on them.
|
a pidfile in /var/run. Some applications rely on them.
|
||||||
|
|
||||||
config FEATURE_SUID
|
config FEATURE_SUID
|
||||||
bool "Support for SUID/SGID handling"
|
bool "Support for SUID/SGID handling"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
With this option you can install the busybox binary belonging
|
With this option you can install the busybox binary belonging
|
||||||
to root with the suid bit set, and it will automatically drop
|
to root with the suid bit set, and it will automatically drop
|
||||||
@ -309,7 +309,7 @@ config FEATURE_SUID
|
|||||||
|
|
||||||
config FEATURE_SUID_CONFIG
|
config FEATURE_SUID_CONFIG
|
||||||
bool "Runtime SUID/SGID configuration via /etc/busybox.conf"
|
bool "Runtime SUID/SGID configuration via /etc/busybox.conf"
|
||||||
default n if FEATURE_SUID
|
default y if FEATURE_SUID
|
||||||
depends on FEATURE_SUID
|
depends on FEATURE_SUID
|
||||||
help
|
help
|
||||||
Allow the SUID / SGID state of an applet to be determined at runtime
|
Allow the SUID / SGID state of an applet to be determined at runtime
|
||||||
@ -528,7 +528,7 @@ config FEATURE_SHARED_BUSYBOX
|
|||||||
|
|
||||||
config LFS
|
config LFS
|
||||||
bool "Build with Large File Support (for accessing files > 2 GB)"
|
bool "Build with Large File Support (for accessing files > 2 GB)"
|
||||||
default n
|
default y
|
||||||
select FDISK_SUPPORT_LARGE_DISKS
|
select FDISK_SUPPORT_LARGE_DISKS
|
||||||
help
|
help
|
||||||
If you want to build BusyBox with large file support, then enable
|
If you want to build BusyBox with large file support, then enable
|
||||||
|
@ -11,7 +11,7 @@ test "$DD" || DD=dd
|
|||||||
|
|
||||||
exec >"$target"
|
exec >"$target"
|
||||||
|
|
||||||
echo '#define UNPACKED_USAGE \'
|
echo '#define UNPACKED_USAGE "" \'
|
||||||
"$loc/usage" | od -v -t x1 \
|
"$loc/usage" | od -v -t x1 \
|
||||||
| $SED -e 's/^[^ ]*//' \
|
| $SED -e 's/^[^ ]*//' \
|
||||||
-e 's/ //g' \
|
-e 's/ //g' \
|
||||||
|
@ -7,25 +7,25 @@ menu "Archival Utilities"
|
|||||||
|
|
||||||
config FEATURE_SEAMLESS_XZ
|
config FEATURE_SEAMLESS_XZ
|
||||||
bool "Make tar, rpm, modprobe etc understand .xz data"
|
bool "Make tar, rpm, modprobe etc understand .xz data"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Make tar, rpm, modprobe etc understand .xz data.
|
Make tar, rpm, modprobe etc understand .xz data.
|
||||||
|
|
||||||
config FEATURE_SEAMLESS_LZMA
|
config FEATURE_SEAMLESS_LZMA
|
||||||
bool "Make tar, rpm, modprobe etc understand .lzma data"
|
bool "Make tar, rpm, modprobe etc understand .lzma data"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Make tar, rpm, modprobe etc understand .lzma data.
|
Make tar, rpm, modprobe etc understand .lzma data.
|
||||||
|
|
||||||
config FEATURE_SEAMLESS_BZ2
|
config FEATURE_SEAMLESS_BZ2
|
||||||
bool "Make tar, rpm, modprobe etc understand .bz2 data"
|
bool "Make tar, rpm, modprobe etc understand .bz2 data"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Make tar, rpm, modprobe etc understand .bz2 data.
|
Make tar, rpm, modprobe etc understand .bz2 data.
|
||||||
|
|
||||||
config FEATURE_SEAMLESS_GZ
|
config FEATURE_SEAMLESS_GZ
|
||||||
bool "Make tar, rpm, modprobe etc understand .gz data"
|
bool "Make tar, rpm, modprobe etc understand .gz data"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Make tar, rpm, modprobe etc understand .gz data.
|
Make tar, rpm, modprobe etc understand .gz data.
|
||||||
|
|
||||||
@ -37,7 +37,7 @@ config FEATURE_SEAMLESS_Z
|
|||||||
|
|
||||||
config AR
|
config AR
|
||||||
bool "ar"
|
bool "ar"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
ar is an archival utility program used to create, modify, and
|
ar is an archival utility program used to create, modify, and
|
||||||
extract contents from archives. An archive is a single file holding
|
extract contents from archives. An archive is a single file holding
|
||||||
@ -60,7 +60,7 @@ config AR
|
|||||||
|
|
||||||
config FEATURE_AR_LONG_FILENAMES
|
config FEATURE_AR_LONG_FILENAMES
|
||||||
bool "Support for long filenames (not needed for debs)"
|
bool "Support for long filenames (not needed for debs)"
|
||||||
default n
|
default y
|
||||||
depends on AR
|
depends on AR
|
||||||
help
|
help
|
||||||
By default the ar format can only store the first 15 characters
|
By default the ar format can only store the first 15 characters
|
||||||
@ -70,14 +70,14 @@ config FEATURE_AR_LONG_FILENAMES
|
|||||||
|
|
||||||
config FEATURE_AR_CREATE
|
config FEATURE_AR_CREATE
|
||||||
bool "Support archive creation"
|
bool "Support archive creation"
|
||||||
default n
|
default y
|
||||||
depends on AR
|
depends on AR
|
||||||
help
|
help
|
||||||
This enables archive creation (-c and -r) with busybox ar.
|
This enables archive creation (-c and -r) with busybox ar.
|
||||||
|
|
||||||
config BUNZIP2
|
config BUNZIP2
|
||||||
bool "bunzip2"
|
bool "bunzip2"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
bunzip2 is a compression utility using the Burrows-Wheeler block
|
bunzip2 is a compression utility using the Burrows-Wheeler block
|
||||||
sorting text compression algorithm, and Huffman coding. Compression
|
sorting text compression algorithm, and Huffman coding. Compression
|
||||||
@ -90,7 +90,7 @@ config BUNZIP2
|
|||||||
|
|
||||||
config BZIP2
|
config BZIP2
|
||||||
bool "bzip2"
|
bool "bzip2"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
bzip2 is a compression utility using the Burrows-Wheeler block
|
bzip2 is a compression utility using the Burrows-Wheeler block
|
||||||
sorting text compression algorithm, and Huffman coding. Compression
|
sorting text compression algorithm, and Huffman coding. Compression
|
||||||
@ -103,7 +103,7 @@ config BZIP2
|
|||||||
|
|
||||||
config CPIO
|
config CPIO
|
||||||
bool "cpio"
|
bool "cpio"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
cpio is an archival utility program used to create, modify, and
|
cpio is an archival utility program used to create, modify, and
|
||||||
extract contents from archives.
|
extract contents from archives.
|
||||||
@ -117,7 +117,7 @@ config CPIO
|
|||||||
|
|
||||||
config FEATURE_CPIO_O
|
config FEATURE_CPIO_O
|
||||||
bool "Support for archive creation"
|
bool "Support for archive creation"
|
||||||
default n
|
default y
|
||||||
depends on CPIO
|
depends on CPIO
|
||||||
help
|
help
|
||||||
This implementation of cpio can create cpio archives in the "newc"
|
This implementation of cpio can create cpio archives in the "newc"
|
||||||
@ -125,7 +125,7 @@ config FEATURE_CPIO_O
|
|||||||
|
|
||||||
config FEATURE_CPIO_P
|
config FEATURE_CPIO_P
|
||||||
bool "Support for passthrough mode"
|
bool "Support for passthrough mode"
|
||||||
default n
|
default y
|
||||||
depends on FEATURE_CPIO_O
|
depends on FEATURE_CPIO_O
|
||||||
help
|
help
|
||||||
Passthrough mode. Rarely used.
|
Passthrough mode. Rarely used.
|
||||||
@ -165,7 +165,7 @@ config FEATURE_DPKG_DEB_EXTRACT_ONLY
|
|||||||
|
|
||||||
config GUNZIP
|
config GUNZIP
|
||||||
bool "gunzip"
|
bool "gunzip"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
gunzip is used to decompress archives created by gzip.
|
gunzip is used to decompress archives created by gzip.
|
||||||
You can use the `-t' option to test the integrity of
|
You can use the `-t' option to test the integrity of
|
||||||
@ -173,21 +173,21 @@ config GUNZIP
|
|||||||
|
|
||||||
config GZIP
|
config GZIP
|
||||||
bool "gzip"
|
bool "gzip"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
gzip is used to compress files.
|
gzip is used to compress files.
|
||||||
It's probably the most widely used UNIX compression program.
|
It's probably the most widely used UNIX compression program.
|
||||||
|
|
||||||
config FEATURE_GZIP_LONG_OPTIONS
|
config FEATURE_GZIP_LONG_OPTIONS
|
||||||
bool "Enable long options"
|
bool "Enable long options"
|
||||||
default n
|
default y
|
||||||
depends on GZIP && LONG_OPTS
|
depends on GZIP && LONG_OPTS
|
||||||
help
|
help
|
||||||
Enable use of long options, increases size by about 106 Bytes
|
Enable use of long options, increases size by about 106 Bytes
|
||||||
|
|
||||||
config LZOP
|
config LZOP
|
||||||
bool "lzop"
|
bool "lzop"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Lzop compression/decompresion.
|
Lzop compression/decompresion.
|
||||||
|
|
||||||
@ -202,19 +202,19 @@ config LZOP_COMPR_HIGH
|
|||||||
|
|
||||||
config RPM2CPIO
|
config RPM2CPIO
|
||||||
bool "rpm2cpio"
|
bool "rpm2cpio"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Converts an RPM file into a CPIO archive.
|
Converts an RPM file into a CPIO archive.
|
||||||
|
|
||||||
config RPM
|
config RPM
|
||||||
bool "rpm"
|
bool "rpm"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Mini RPM applet - queries and extracts RPM packages.
|
Mini RPM applet - queries and extracts RPM packages.
|
||||||
|
|
||||||
config TAR
|
config TAR
|
||||||
bool "tar"
|
bool "tar"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
tar is an archiving program. It's commonly used with gzip to
|
tar is an archiving program. It's commonly used with gzip to
|
||||||
create compressed archives. It's probably the most widely used
|
create compressed archives. It's probably the most widely used
|
||||||
@ -230,7 +230,7 @@ config FEATURE_TAR_CREATE
|
|||||||
|
|
||||||
config FEATURE_TAR_AUTODETECT
|
config FEATURE_TAR_AUTODETECT
|
||||||
bool "Autodetect compressed tarballs"
|
bool "Autodetect compressed tarballs"
|
||||||
default n
|
default y
|
||||||
depends on TAR && (FEATURE_SEAMLESS_Z || FEATURE_SEAMLESS_GZ || FEATURE_SEAMLESS_BZ2 || FEATURE_SEAMLESS_LZMA || FEATURE_SEAMLESS_XZ)
|
depends on TAR && (FEATURE_SEAMLESS_Z || FEATURE_SEAMLESS_GZ || FEATURE_SEAMLESS_BZ2 || FEATURE_SEAMLESS_LZMA || FEATURE_SEAMLESS_XZ)
|
||||||
help
|
help
|
||||||
With this option tar can automatically detect compressed
|
With this option tar can automatically detect compressed
|
||||||
@ -238,7 +238,7 @@ config FEATURE_TAR_AUTODETECT
|
|||||||
|
|
||||||
config FEATURE_TAR_FROM
|
config FEATURE_TAR_FROM
|
||||||
bool "Enable -X (exclude from) and -T (include from) options)"
|
bool "Enable -X (exclude from) and -T (include from) options)"
|
||||||
default n
|
default y
|
||||||
depends on TAR
|
depends on TAR
|
||||||
help
|
help
|
||||||
If you enable this option you'll be able to specify
|
If you enable this option you'll be able to specify
|
||||||
@ -246,7 +246,7 @@ config FEATURE_TAR_FROM
|
|||||||
|
|
||||||
config FEATURE_TAR_OLDGNU_COMPATIBILITY
|
config FEATURE_TAR_OLDGNU_COMPATIBILITY
|
||||||
bool "Support for old tar header format"
|
bool "Support for old tar header format"
|
||||||
default N
|
default y
|
||||||
depends on TAR || DPKG
|
depends on TAR || DPKG
|
||||||
help
|
help
|
||||||
This option is required to unpack archives created in
|
This option is required to unpack archives created in
|
||||||
@ -255,7 +255,7 @@ config FEATURE_TAR_OLDGNU_COMPATIBILITY
|
|||||||
|
|
||||||
config FEATURE_TAR_OLDSUN_COMPATIBILITY
|
config FEATURE_TAR_OLDSUN_COMPATIBILITY
|
||||||
bool "Enable untarring of tarballs with checksums produced by buggy Sun tar"
|
bool "Enable untarring of tarballs with checksums produced by buggy Sun tar"
|
||||||
default N
|
default y
|
||||||
depends on TAR || DPKG
|
depends on TAR || DPKG
|
||||||
help
|
help
|
||||||
This option is required to unpack archives created by some old
|
This option is required to unpack archives created by some old
|
||||||
@ -273,14 +273,14 @@ config FEATURE_TAR_GNU_EXTENSIONS
|
|||||||
|
|
||||||
config FEATURE_TAR_LONG_OPTIONS
|
config FEATURE_TAR_LONG_OPTIONS
|
||||||
bool "Enable long options"
|
bool "Enable long options"
|
||||||
default n
|
default y
|
||||||
depends on TAR && LONG_OPTS
|
depends on TAR && LONG_OPTS
|
||||||
help
|
help
|
||||||
Enable use of long options, increases size by about 400 Bytes
|
Enable use of long options, increases size by about 400 Bytes
|
||||||
|
|
||||||
config FEATURE_TAR_UNAME_GNAME
|
config FEATURE_TAR_UNAME_GNAME
|
||||||
bool "Enable use of user and group names"
|
bool "Enable use of user and group names"
|
||||||
default n
|
default y
|
||||||
depends on TAR
|
depends on TAR
|
||||||
help
|
help
|
||||||
Enables use of user and group names in tar. This affects contents
|
Enables use of user and group names in tar. This affects contents
|
||||||
@ -289,7 +289,7 @@ config FEATURE_TAR_UNAME_GNAME
|
|||||||
|
|
||||||
config FEATURE_TAR_NOPRESERVE_TIME
|
config FEATURE_TAR_NOPRESERVE_TIME
|
||||||
bool "Enable -m (do not preserve time) option"
|
bool "Enable -m (do not preserve time) option"
|
||||||
default n
|
default y
|
||||||
depends on TAR
|
depends on TAR
|
||||||
help
|
help
|
||||||
With this option busybox supports GNU tar -m
|
With this option busybox supports GNU tar -m
|
||||||
@ -312,7 +312,7 @@ config UNCOMPRESS
|
|||||||
|
|
||||||
config UNLZMA
|
config UNLZMA
|
||||||
bool "unlzma"
|
bool "unlzma"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
unlzma is a compression utility using the Lempel-Ziv-Markov chain
|
unlzma is a compression utility using the Lempel-Ziv-Markov chain
|
||||||
compression algorithm, and range coding. Compression
|
compression algorithm, and range coding. Compression
|
||||||
@ -327,7 +327,7 @@ config UNLZMA
|
|||||||
|
|
||||||
config FEATURE_LZMA_FAST
|
config FEATURE_LZMA_FAST
|
||||||
bool "Optimize unlzma for speed"
|
bool "Optimize unlzma for speed"
|
||||||
default n
|
default y
|
||||||
depends on UNLZMA
|
depends on UNLZMA
|
||||||
help
|
help
|
||||||
This option reduces decompression time by about 25% at the cost of
|
This option reduces decompression time by about 25% at the cost of
|
||||||
@ -335,7 +335,7 @@ config FEATURE_LZMA_FAST
|
|||||||
|
|
||||||
config LZMA
|
config LZMA
|
||||||
bool "Provide lzma alias which supports only unpacking"
|
bool "Provide lzma alias which supports only unpacking"
|
||||||
default n
|
default y
|
||||||
depends on UNLZMA
|
depends on UNLZMA
|
||||||
help
|
help
|
||||||
Enable this option if you want commands like "lzma -d" to work.
|
Enable this option if you want commands like "lzma -d" to work.
|
||||||
@ -343,13 +343,13 @@ config LZMA
|
|||||||
|
|
||||||
config UNXZ
|
config UNXZ
|
||||||
bool "unxz"
|
bool "unxz"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
unxz is a unlzma successor.
|
unxz is a unlzma successor.
|
||||||
|
|
||||||
config XZ
|
config XZ
|
||||||
bool "Provide xz alias which supports only unpacking"
|
bool "Provide xz alias which supports only unpacking"
|
||||||
default n
|
default y
|
||||||
depends on UNXZ
|
depends on UNXZ
|
||||||
help
|
help
|
||||||
Enable this option if you want commands like "xz -d" to work.
|
Enable this option if you want commands like "xz -d" to work.
|
||||||
@ -357,7 +357,7 @@ config XZ
|
|||||||
|
|
||||||
config UNZIP
|
config UNZIP
|
||||||
bool "unzip"
|
bool "unzip"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
unzip will list or extract files from a ZIP archive,
|
unzip will list or extract files from a ZIP archive,
|
||||||
commonly found on DOS/WIN systems. The default behavior
|
commonly found on DOS/WIN systems. The default behavior
|
||||||
|
@ -7,79 +7,79 @@ menu "Console Utilities"
|
|||||||
|
|
||||||
config CHVT
|
config CHVT
|
||||||
bool "chvt"
|
bool "chvt"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
This program is used to change to another terminal.
|
This program is used to change to another terminal.
|
||||||
Example: chvt 4 (change to terminal /dev/tty4)
|
Example: chvt 4 (change to terminal /dev/tty4)
|
||||||
|
|
||||||
config FGCONSOLE
|
config FGCONSOLE
|
||||||
bool "fgconsole"
|
bool "fgconsole"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
This program prints active (foreground) console number.
|
This program prints active (foreground) console number.
|
||||||
|
|
||||||
config CLEAR
|
config CLEAR
|
||||||
bool "clear"
|
bool "clear"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
This program clears the terminal screen.
|
This program clears the terminal screen.
|
||||||
|
|
||||||
config DEALLOCVT
|
config DEALLOCVT
|
||||||
bool "deallocvt"
|
bool "deallocvt"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
This program deallocates unused virtual consoles.
|
This program deallocates unused virtual consoles.
|
||||||
|
|
||||||
config DUMPKMAP
|
config DUMPKMAP
|
||||||
bool "dumpkmap"
|
bool "dumpkmap"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
This program dumps the kernel's keyboard translation table to
|
This program dumps the kernel's keyboard translation table to
|
||||||
stdout, in binary format. You can then use loadkmap to load it.
|
stdout, in binary format. You can then use loadkmap to load it.
|
||||||
|
|
||||||
config KBD_MODE
|
config KBD_MODE
|
||||||
bool "kbd_mode"
|
bool "kbd_mode"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
This program reports and sets keyboard mode.
|
This program reports and sets keyboard mode.
|
||||||
|
|
||||||
config LOADFONT
|
config LOADFONT
|
||||||
bool "loadfont"
|
bool "loadfont"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
This program loads a console font from standard input.
|
This program loads a console font from standard input.
|
||||||
|
|
||||||
config LOADKMAP
|
config LOADKMAP
|
||||||
bool "loadkmap"
|
bool "loadkmap"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
This program loads a keyboard translation table from
|
This program loads a keyboard translation table from
|
||||||
standard input.
|
standard input.
|
||||||
|
|
||||||
config OPENVT
|
config OPENVT
|
||||||
bool "openvt"
|
bool "openvt"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
This program is used to start a command on an unused
|
This program is used to start a command on an unused
|
||||||
virtual terminal.
|
virtual terminal.
|
||||||
|
|
||||||
config RESET
|
config RESET
|
||||||
bool "reset"
|
bool "reset"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
This program is used to reset the terminal screen, if it
|
This program is used to reset the terminal screen, if it
|
||||||
gets messed up.
|
gets messed up.
|
||||||
|
|
||||||
config RESIZE
|
config RESIZE
|
||||||
bool "resize"
|
bool "resize"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
This program is used to (re)set the width and height of your current
|
This program is used to (re)set the width and height of your current
|
||||||
terminal.
|
terminal.
|
||||||
|
|
||||||
config FEATURE_RESIZE_PRINT
|
config FEATURE_RESIZE_PRINT
|
||||||
bool "Print environment variables"
|
bool "Print environment variables"
|
||||||
default n
|
default y
|
||||||
depends on RESIZE
|
depends on RESIZE
|
||||||
help
|
help
|
||||||
Prints the newly set size (number of columns and rows) of
|
Prints the newly set size (number of columns and rows) of
|
||||||
@ -89,27 +89,27 @@ config FEATURE_RESIZE_PRINT
|
|||||||
|
|
||||||
config SETCONSOLE
|
config SETCONSOLE
|
||||||
bool "setconsole"
|
bool "setconsole"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
This program redirects the system console to another device,
|
This program redirects the system console to another device,
|
||||||
like the current tty while logged in via telnet.
|
like the current tty while logged in via telnet.
|
||||||
|
|
||||||
config FEATURE_SETCONSOLE_LONG_OPTIONS
|
config FEATURE_SETCONSOLE_LONG_OPTIONS
|
||||||
bool "Enable long options"
|
bool "Enable long options"
|
||||||
default n
|
default y
|
||||||
depends on SETCONSOLE && LONG_OPTS
|
depends on SETCONSOLE && LONG_OPTS
|
||||||
help
|
help
|
||||||
Support long options for the setconsole applet.
|
Support long options for the setconsole applet.
|
||||||
|
|
||||||
config SETFONT
|
config SETFONT
|
||||||
bool "setfont"
|
bool "setfont"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Allows to load console screen map. Useful for i18n.
|
Allows to load console screen map. Useful for i18n.
|
||||||
|
|
||||||
config FEATURE_SETFONT_TEXTUAL_MAP
|
config FEATURE_SETFONT_TEXTUAL_MAP
|
||||||
bool "Support reading textual screen maps"
|
bool "Support reading textual screen maps"
|
||||||
default n
|
default y
|
||||||
depends on SETFONT
|
depends on SETFONT
|
||||||
help
|
help
|
||||||
Support reading textual screen maps.
|
Support reading textual screen maps.
|
||||||
@ -124,20 +124,20 @@ config DEFAULT_SETFONT_DIR
|
|||||||
|
|
||||||
config SETKEYCODES
|
config SETKEYCODES
|
||||||
bool "setkeycodes"
|
bool "setkeycodes"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
This program loads entries into the kernel's scancode-to-keycode
|
This program loads entries into the kernel's scancode-to-keycode
|
||||||
map, allowing unusual keyboards to generate usable keycodes.
|
map, allowing unusual keyboards to generate usable keycodes.
|
||||||
|
|
||||||
config SETLOGCONS
|
config SETLOGCONS
|
||||||
bool "setlogcons"
|
bool "setlogcons"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
This program redirects the output console of kernel messages.
|
This program redirects the output console of kernel messages.
|
||||||
|
|
||||||
config SHOWKEY
|
config SHOWKEY
|
||||||
bool "showkey"
|
bool "showkey"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Shows keys pressed.
|
Shows keys pressed.
|
||||||
|
|
||||||
@ -146,14 +146,14 @@ comment "Common options for loadfont and setfont"
|
|||||||
|
|
||||||
config FEATURE_LOADFONT_PSF2
|
config FEATURE_LOADFONT_PSF2
|
||||||
bool "Support for PSF2 console fonts"
|
bool "Support for PSF2 console fonts"
|
||||||
default n
|
default y
|
||||||
depends on LOADFONT || SETFONT
|
depends on LOADFONT || SETFONT
|
||||||
help
|
help
|
||||||
Support PSF2 console fonts.
|
Support PSF2 console fonts.
|
||||||
|
|
||||||
config FEATURE_LOADFONT_RAW
|
config FEATURE_LOADFONT_RAW
|
||||||
bool "Support for old (raw) console fonts"
|
bool "Support for old (raw) console fonts"
|
||||||
default n
|
default y
|
||||||
depends on LOADFONT || SETFONT
|
depends on LOADFONT || SETFONT
|
||||||
help
|
help
|
||||||
Support old (raw) console fonts.
|
Support old (raw) console fonts.
|
||||||
|
@ -9,72 +9,72 @@ INSERT
|
|||||||
|
|
||||||
config CAL
|
config CAL
|
||||||
bool "cal"
|
bool "cal"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
cal is used to display a monthly calender.
|
cal is used to display a monthly calender.
|
||||||
|
|
||||||
config CATV
|
config CATV
|
||||||
bool "catv"
|
bool "catv"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Display nonprinting characters as escape sequences (like some
|
Display nonprinting characters as escape sequences (like some
|
||||||
implementations' cat -v option).
|
implementations' cat -v option).
|
||||||
|
|
||||||
config CHGRP
|
config CHGRP
|
||||||
bool "chgrp"
|
bool "chgrp"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
chgrp is used to change the group ownership of files.
|
chgrp is used to change the group ownership of files.
|
||||||
|
|
||||||
config CHMOD
|
config CHMOD
|
||||||
bool "chmod"
|
bool "chmod"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
chmod is used to change the access permission of files.
|
chmod is used to change the access permission of files.
|
||||||
|
|
||||||
config CHOWN
|
config CHOWN
|
||||||
bool "chown"
|
bool "chown"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
chown is used to change the user and/or group ownership
|
chown is used to change the user and/or group ownership
|
||||||
of files.
|
of files.
|
||||||
|
|
||||||
config FEATURE_CHOWN_LONG_OPTIONS
|
config FEATURE_CHOWN_LONG_OPTIONS
|
||||||
bool "Enable long options"
|
bool "Enable long options"
|
||||||
default n
|
default y
|
||||||
depends on CHOWN && LONG_OPTS
|
depends on CHOWN && LONG_OPTS
|
||||||
help
|
help
|
||||||
Enable use of long options
|
Enable use of long options
|
||||||
|
|
||||||
config CHROOT
|
config CHROOT
|
||||||
bool "chroot"
|
bool "chroot"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
chroot is used to change the root directory and run a command.
|
chroot is used to change the root directory and run a command.
|
||||||
The default command is `/bin/sh'.
|
The default command is `/bin/sh'.
|
||||||
|
|
||||||
config CKSUM
|
config CKSUM
|
||||||
bool "cksum"
|
bool "cksum"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
cksum is used to calculate the CRC32 checksum of a file.
|
cksum is used to calculate the CRC32 checksum of a file.
|
||||||
|
|
||||||
config COMM
|
config COMM
|
||||||
bool "comm"
|
bool "comm"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
comm is used to compare two files line by line and return
|
comm is used to compare two files line by line and return
|
||||||
a three-column output.
|
a three-column output.
|
||||||
|
|
||||||
config CP
|
config CP
|
||||||
bool "cp"
|
bool "cp"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
cp is used to copy files and directories.
|
cp is used to copy files and directories.
|
||||||
|
|
||||||
config FEATURE_CP_LONG_OPTIONS
|
config FEATURE_CP_LONG_OPTIONS
|
||||||
bool "Enable long options for cp"
|
bool "Enable long options for cp"
|
||||||
default n
|
default y
|
||||||
depends on CP && LONG_OPTS
|
depends on CP && LONG_OPTS
|
||||||
help
|
help
|
||||||
Enable long options for cp.
|
Enable long options for cp.
|
||||||
@ -82,14 +82,14 @@ config FEATURE_CP_LONG_OPTIONS
|
|||||||
|
|
||||||
config CUT
|
config CUT
|
||||||
bool "cut"
|
bool "cut"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
cut is used to print selected parts of lines from
|
cut is used to print selected parts of lines from
|
||||||
each file to stdout.
|
each file to stdout.
|
||||||
|
|
||||||
config DD
|
config DD
|
||||||
bool "dd"
|
bool "dd"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
dd copies a file (from standard input to standard output,
|
dd copies a file (from standard input to standard output,
|
||||||
by default) using specific input and output blocksizes,
|
by default) using specific input and output blocksizes,
|
||||||
@ -111,7 +111,7 @@ config FEATURE_DD_SIGNAL_HANDLING
|
|||||||
|
|
||||||
config FEATURE_DD_THIRD_STATUS_LINE
|
config FEATURE_DD_THIRD_STATUS_LINE
|
||||||
bool "Enable the third status line upon signal"
|
bool "Enable the third status line upon signal"
|
||||||
default n
|
default y
|
||||||
depends on DD && FEATURE_DD_SIGNAL_HANDLING
|
depends on DD && FEATURE_DD_SIGNAL_HANDLING
|
||||||
help
|
help
|
||||||
Displays a coreutils-like third status line with transferred bytes,
|
Displays a coreutils-like third status line with transferred bytes,
|
||||||
@ -119,7 +119,7 @@ config FEATURE_DD_THIRD_STATUS_LINE
|
|||||||
|
|
||||||
config FEATURE_DD_IBS_OBS
|
config FEATURE_DD_IBS_OBS
|
||||||
bool "Enable ibs, obs and conv options"
|
bool "Enable ibs, obs and conv options"
|
||||||
default n
|
default y
|
||||||
depends on DD
|
depends on DD
|
||||||
help
|
help
|
||||||
Enables support for writing a certain number of bytes in and out,
|
Enables support for writing a certain number of bytes in and out,
|
||||||
@ -127,14 +127,14 @@ config FEATURE_DD_IBS_OBS
|
|||||||
|
|
||||||
config DF
|
config DF
|
||||||
bool "df"
|
bool "df"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
df reports the amount of disk space used and available
|
df reports the amount of disk space used and available
|
||||||
on filesystems.
|
on filesystems.
|
||||||
|
|
||||||
config FEATURE_DF_FANCY
|
config FEATURE_DF_FANCY
|
||||||
bool "Enable -a, -i, -B"
|
bool "Enable -a, -i, -B"
|
||||||
default n
|
default y
|
||||||
depends on DF
|
depends on DF
|
||||||
help
|
help
|
||||||
This option enables -a, -i and -B.
|
This option enables -a, -i and -B.
|
||||||
@ -145,14 +145,14 @@ config FEATURE_DF_FANCY
|
|||||||
|
|
||||||
config DIRNAME
|
config DIRNAME
|
||||||
bool "dirname"
|
bool "dirname"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
dirname is used to strip a non-directory suffix from
|
dirname is used to strip a non-directory suffix from
|
||||||
a file name.
|
a file name.
|
||||||
|
|
||||||
config DOS2UNIX
|
config DOS2UNIX
|
||||||
bool "dos2unix/unix2dos"
|
bool "dos2unix/unix2dos"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
dos2unix is used to convert a text file from DOS format to
|
dos2unix is used to convert a text file from DOS format to
|
||||||
UNIX format, and vice versa.
|
UNIX format, and vice versa.
|
||||||
@ -167,7 +167,7 @@ config UNIX2DOS
|
|||||||
|
|
||||||
config DU
|
config DU
|
||||||
bool "du (default blocksize of 512 bytes)"
|
bool "du (default blocksize of 512 bytes)"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
du is used to report the amount of disk space used
|
du is used to report the amount of disk space used
|
||||||
for specified files.
|
for specified files.
|
||||||
@ -181,7 +181,7 @@ config FEATURE_DU_DEFAULT_BLOCKSIZE_1K
|
|||||||
|
|
||||||
config ECHO
|
config ECHO
|
||||||
bool "echo (basic SuSv3 version taking no options)"
|
bool "echo (basic SuSv3 version taking no options)"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
echo is used to print a specified string to stdout.
|
echo is used to print a specified string to stdout.
|
||||||
|
|
||||||
@ -195,7 +195,7 @@ config FEATURE_FANCY_ECHO
|
|||||||
|
|
||||||
config ENV
|
config ENV
|
||||||
bool "env"
|
bool "env"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
env is used to set an environment variable and run
|
env is used to set an environment variable and run
|
||||||
a command; without options it displays the current
|
a command; without options it displays the current
|
||||||
@ -203,34 +203,34 @@ config ENV
|
|||||||
|
|
||||||
config FEATURE_ENV_LONG_OPTIONS
|
config FEATURE_ENV_LONG_OPTIONS
|
||||||
bool "Enable long options"
|
bool "Enable long options"
|
||||||
default n
|
default y
|
||||||
depends on ENV && LONG_OPTS
|
depends on ENV && LONG_OPTS
|
||||||
help
|
help
|
||||||
Support long options for the env applet.
|
Support long options for the env applet.
|
||||||
|
|
||||||
config EXPAND
|
config EXPAND
|
||||||
bool "expand"
|
bool "expand"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
By default, convert all tabs to spaces.
|
By default, convert all tabs to spaces.
|
||||||
|
|
||||||
config FEATURE_EXPAND_LONG_OPTIONS
|
config FEATURE_EXPAND_LONG_OPTIONS
|
||||||
bool "Enable long options"
|
bool "Enable long options"
|
||||||
default n
|
default y
|
||||||
depends on EXPAND && LONG_OPTS
|
depends on EXPAND && LONG_OPTS
|
||||||
help
|
help
|
||||||
Support long options for the expand applet.
|
Support long options for the expand applet.
|
||||||
|
|
||||||
config EXPR
|
config EXPR
|
||||||
bool "expr"
|
bool "expr"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
expr is used to calculate numbers and print the result
|
expr is used to calculate numbers and print the result
|
||||||
to standard output.
|
to standard output.
|
||||||
|
|
||||||
config EXPR_MATH_SUPPORT_64
|
config EXPR_MATH_SUPPORT_64
|
||||||
bool "Extend Posix numbers support to 64 bit"
|
bool "Extend Posix numbers support to 64 bit"
|
||||||
default n
|
default y
|
||||||
depends on EXPR
|
depends on EXPR
|
||||||
help
|
help
|
||||||
Enable 64-bit math support in the expr applet. This will make
|
Enable 64-bit math support in the expr applet. This will make
|
||||||
@ -239,83 +239,83 @@ config EXPR_MATH_SUPPORT_64
|
|||||||
|
|
||||||
config FALSE
|
config FALSE
|
||||||
bool "false"
|
bool "false"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
false returns an exit code of FALSE (1).
|
false returns an exit code of FALSE (1).
|
||||||
|
|
||||||
config FOLD
|
config FOLD
|
||||||
bool "fold"
|
bool "fold"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Wrap text to fit a specific width.
|
Wrap text to fit a specific width.
|
||||||
|
|
||||||
config FSYNC
|
config FSYNC
|
||||||
bool "fsync"
|
bool "fsync"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
fsync is used to flush file-related cached blocks to disk.
|
fsync is used to flush file-related cached blocks to disk.
|
||||||
|
|
||||||
config HEAD
|
config HEAD
|
||||||
bool "head"
|
bool "head"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
head is used to print the first specified number of lines
|
head is used to print the first specified number of lines
|
||||||
from files.
|
from files.
|
||||||
|
|
||||||
config FEATURE_FANCY_HEAD
|
config FEATURE_FANCY_HEAD
|
||||||
bool "Enable head options (-c, -q, and -v)"
|
bool "Enable head options (-c, -q, and -v)"
|
||||||
default n
|
default y
|
||||||
depends on HEAD
|
depends on HEAD
|
||||||
help
|
help
|
||||||
This enables the head options (-c, -q, and -v).
|
This enables the head options (-c, -q, and -v).
|
||||||
|
|
||||||
config HOSTID
|
config HOSTID
|
||||||
bool "hostid"
|
bool "hostid"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
hostid prints the numeric identifier (in hexadecimal) for
|
hostid prints the numeric identifier (in hexadecimal) for
|
||||||
the current host.
|
the current host.
|
||||||
|
|
||||||
config ID
|
config ID
|
||||||
bool "id"
|
bool "id"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
id displays the current user and group ID names.
|
id displays the current user and group ID names.
|
||||||
|
|
||||||
config INSTALL
|
config INSTALL
|
||||||
bool "install"
|
bool "install"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Copy files and set attributes.
|
Copy files and set attributes.
|
||||||
|
|
||||||
config FEATURE_INSTALL_LONG_OPTIONS
|
config FEATURE_INSTALL_LONG_OPTIONS
|
||||||
bool "Enable long options"
|
bool "Enable long options"
|
||||||
default n
|
default y
|
||||||
depends on INSTALL && LONG_OPTS
|
depends on INSTALL && LONG_OPTS
|
||||||
help
|
help
|
||||||
Support long options for the install applet.
|
Support long options for the install applet.
|
||||||
|
|
||||||
config LENGTH
|
config LENGTH
|
||||||
bool "length"
|
bool "length"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
length is used to print out the length of a specified string.
|
length is used to print out the length of a specified string.
|
||||||
|
|
||||||
config LN
|
config LN
|
||||||
bool "ln"
|
bool "ln"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
ln is used to create hard or soft links between files.
|
ln is used to create hard or soft links between files.
|
||||||
|
|
||||||
config LOGNAME
|
config LOGNAME
|
||||||
bool "logname"
|
bool "logname"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
logname is used to print the current user's login name.
|
logname is used to print the current user's login name.
|
||||||
|
|
||||||
config LS
|
config LS
|
||||||
bool "ls"
|
bool "ls"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
ls is used to list the contents of directories.
|
ls is used to list the contents of directories.
|
||||||
|
|
||||||
@ -370,7 +370,7 @@ config FEATURE_LS_COLOR
|
|||||||
|
|
||||||
config FEATURE_LS_COLOR_IS_DEFAULT
|
config FEATURE_LS_COLOR_IS_DEFAULT
|
||||||
bool "Produce colored ls output by default"
|
bool "Produce colored ls output by default"
|
||||||
default n
|
default y
|
||||||
depends on FEATURE_LS_COLOR
|
depends on FEATURE_LS_COLOR
|
||||||
help
|
help
|
||||||
Saying yes here will turn coloring on by default,
|
Saying yes here will turn coloring on by default,
|
||||||
@ -381,123 +381,123 @@ config FEATURE_LS_COLOR_IS_DEFAULT
|
|||||||
|
|
||||||
config MD5SUM
|
config MD5SUM
|
||||||
bool "md5sum"
|
bool "md5sum"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
md5sum is used to print or check MD5 checksums.
|
md5sum is used to print or check MD5 checksums.
|
||||||
|
|
||||||
config MKDIR
|
config MKDIR
|
||||||
bool "mkdir"
|
bool "mkdir"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
mkdir is used to create directories with the specified names.
|
mkdir is used to create directories with the specified names.
|
||||||
|
|
||||||
config FEATURE_MKDIR_LONG_OPTIONS
|
config FEATURE_MKDIR_LONG_OPTIONS
|
||||||
bool "Enable long options"
|
bool "Enable long options"
|
||||||
default n
|
default y
|
||||||
depends on MKDIR && LONG_OPTS
|
depends on MKDIR && LONG_OPTS
|
||||||
help
|
help
|
||||||
Support long options for the mkdir applet.
|
Support long options for the mkdir applet.
|
||||||
|
|
||||||
config MKFIFO
|
config MKFIFO
|
||||||
bool "mkfifo"
|
bool "mkfifo"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
mkfifo is used to create FIFOs (named pipes).
|
mkfifo is used to create FIFOs (named pipes).
|
||||||
The `mknod' program can also create FIFOs.
|
The `mknod' program can also create FIFOs.
|
||||||
|
|
||||||
config MKNOD
|
config MKNOD
|
||||||
bool "mknod"
|
bool "mknod"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
mknod is used to create FIFOs or block/character special
|
mknod is used to create FIFOs or block/character special
|
||||||
files with the specified names.
|
files with the specified names.
|
||||||
|
|
||||||
config MV
|
config MV
|
||||||
bool "mv"
|
bool "mv"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
mv is used to move or rename files or directories.
|
mv is used to move or rename files or directories.
|
||||||
|
|
||||||
config FEATURE_MV_LONG_OPTIONS
|
config FEATURE_MV_LONG_OPTIONS
|
||||||
bool "Enable long options"
|
bool "Enable long options"
|
||||||
default n
|
default y
|
||||||
depends on MV && LONG_OPTS
|
depends on MV && LONG_OPTS
|
||||||
help
|
help
|
||||||
Support long options for the mv applet.
|
Support long options for the mv applet.
|
||||||
|
|
||||||
config NICE
|
config NICE
|
||||||
bool "nice"
|
bool "nice"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
nice runs a program with modified scheduling priority.
|
nice runs a program with modified scheduling priority.
|
||||||
|
|
||||||
config NOHUP
|
config NOHUP
|
||||||
bool "nohup"
|
bool "nohup"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
run a command immune to hangups, with output to a non-tty.
|
run a command immune to hangups, with output to a non-tty.
|
||||||
|
|
||||||
config OD
|
config OD
|
||||||
bool "od"
|
bool "od"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
od is used to dump binary files in octal and other formats.
|
od is used to dump binary files in octal and other formats.
|
||||||
|
|
||||||
config PRINTENV
|
config PRINTENV
|
||||||
bool "printenv"
|
bool "printenv"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
printenv is used to print all or part of environment.
|
printenv is used to print all or part of environment.
|
||||||
|
|
||||||
config PRINTF
|
config PRINTF
|
||||||
bool "printf"
|
bool "printf"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
printf is used to format and print specified strings.
|
printf is used to format and print specified strings.
|
||||||
It's similar to `echo' except it has more options.
|
It's similar to `echo' except it has more options.
|
||||||
|
|
||||||
config PWD
|
config PWD
|
||||||
bool "pwd"
|
bool "pwd"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
pwd is used to print the current directory.
|
pwd is used to print the current directory.
|
||||||
|
|
||||||
config READLINK
|
config READLINK
|
||||||
bool "readlink"
|
bool "readlink"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
This program reads a symbolic link and returns the name
|
This program reads a symbolic link and returns the name
|
||||||
of the file it points to
|
of the file it points to
|
||||||
|
|
||||||
config FEATURE_READLINK_FOLLOW
|
config FEATURE_READLINK_FOLLOW
|
||||||
bool "Enable canonicalization by following all symlinks (-f)"
|
bool "Enable canonicalization by following all symlinks (-f)"
|
||||||
default n
|
default y
|
||||||
depends on READLINK
|
depends on READLINK
|
||||||
help
|
help
|
||||||
Enable the readlink option (-f).
|
Enable the readlink option (-f).
|
||||||
|
|
||||||
config REALPATH
|
config REALPATH
|
||||||
bool "realpath"
|
bool "realpath"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Return the canonicalized absolute pathname.
|
Return the canonicalized absolute pathname.
|
||||||
This isn't provided by GNU shellutils, but where else does it belong.
|
This isn't provided by GNU shellutils, but where else does it belong.
|
||||||
|
|
||||||
config RM
|
config RM
|
||||||
bool "rm"
|
bool "rm"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
rm is used to remove files or directories.
|
rm is used to remove files or directories.
|
||||||
|
|
||||||
config RMDIR
|
config RMDIR
|
||||||
bool "rmdir"
|
bool "rmdir"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
rmdir is used to remove empty directories.
|
rmdir is used to remove empty directories.
|
||||||
|
|
||||||
config FEATURE_RMDIR_LONG_OPTIONS
|
config FEATURE_RMDIR_LONG_OPTIONS
|
||||||
bool "Enable long options"
|
bool "Enable long options"
|
||||||
default n
|
default y
|
||||||
depends on RMDIR && LONG_OPTS
|
depends on RMDIR && LONG_OPTS
|
||||||
help
|
help
|
||||||
Support long options for the rmdir applet, including
|
Support long options for the rmdir applet, including
|
||||||
@ -505,31 +505,31 @@ config FEATURE_RMDIR_LONG_OPTIONS
|
|||||||
|
|
||||||
config SEQ
|
config SEQ
|
||||||
bool "seq"
|
bool "seq"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
print a sequence of numbers
|
print a sequence of numbers
|
||||||
|
|
||||||
config SHA1SUM
|
config SHA1SUM
|
||||||
bool "sha1sum"
|
bool "sha1sum"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Compute and check SHA1 message digest
|
Compute and check SHA1 message digest
|
||||||
|
|
||||||
config SHA256SUM
|
config SHA256SUM
|
||||||
bool "sha256sum"
|
bool "sha256sum"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Compute and check SHA256 message digest
|
Compute and check SHA256 message digest
|
||||||
|
|
||||||
config SHA512SUM
|
config SHA512SUM
|
||||||
bool "sha512sum"
|
bool "sha512sum"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Compute and check SHA512 message digest
|
Compute and check SHA512 message digest
|
||||||
|
|
||||||
config SLEEP
|
config SLEEP
|
||||||
bool "sleep"
|
bool "sleep"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
sleep is used to pause for a specified number of seconds.
|
sleep is used to pause for a specified number of seconds.
|
||||||
It comes in 3 versions:
|
It comes in 3 versions:
|
||||||
@ -543,21 +543,21 @@ config SLEEP
|
|||||||
|
|
||||||
config FEATURE_FANCY_SLEEP
|
config FEATURE_FANCY_SLEEP
|
||||||
bool "Enable multiple arguments and s/m/h/d suffixes"
|
bool "Enable multiple arguments and s/m/h/d suffixes"
|
||||||
default n
|
default y
|
||||||
depends on SLEEP
|
depends on SLEEP
|
||||||
help
|
help
|
||||||
Allow sleep to pause for specified minutes, hours, and days.
|
Allow sleep to pause for specified minutes, hours, and days.
|
||||||
|
|
||||||
config FEATURE_FLOAT_SLEEP
|
config FEATURE_FLOAT_SLEEP
|
||||||
bool "Enable fractional arguments"
|
bool "Enable fractional arguments"
|
||||||
default n
|
default y
|
||||||
depends on FEATURE_FANCY_SLEEP
|
depends on FEATURE_FANCY_SLEEP
|
||||||
help
|
help
|
||||||
Allow for fractional numeric parameters.
|
Allow for fractional numeric parameters.
|
||||||
|
|
||||||
config SORT
|
config SORT
|
||||||
bool "sort"
|
bool "sort"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
sort is used to sort lines of text in specified files.
|
sort is used to sort lines of text in specified files.
|
||||||
|
|
||||||
@ -575,13 +575,13 @@ config FEATURE_SORT_BIG
|
|||||||
|
|
||||||
config SPLIT
|
config SPLIT
|
||||||
bool "split"
|
bool "split"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
split a file into pieces.
|
split a file into pieces.
|
||||||
|
|
||||||
config FEATURE_SPLIT_FANCY
|
config FEATURE_SPLIT_FANCY
|
||||||
bool "Fancy extensions"
|
bool "Fancy extensions"
|
||||||
default n
|
default y
|
||||||
depends on SPLIT
|
depends on SPLIT
|
||||||
help
|
help
|
||||||
Add support for features not required by SUSv3.
|
Add support for features not required by SUSv3.
|
||||||
@ -590,13 +590,13 @@ config FEATURE_SPLIT_FANCY
|
|||||||
|
|
||||||
config STAT
|
config STAT
|
||||||
bool "stat"
|
bool "stat"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
display file or filesystem status.
|
display file or filesystem status.
|
||||||
|
|
||||||
config FEATURE_STAT_FORMAT
|
config FEATURE_STAT_FORMAT
|
||||||
bool "Enable custom formats (-c)"
|
bool "Enable custom formats (-c)"
|
||||||
default n
|
default y
|
||||||
depends on STAT
|
depends on STAT
|
||||||
help
|
help
|
||||||
Without this, stat will not support the '-c format' option where
|
Without this, stat will not support the '-c format' option where
|
||||||
@ -605,31 +605,31 @@ config FEATURE_STAT_FORMAT
|
|||||||
|
|
||||||
config STTY
|
config STTY
|
||||||
bool "stty"
|
bool "stty"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
stty is used to change and print terminal line settings.
|
stty is used to change and print terminal line settings.
|
||||||
|
|
||||||
config SUM
|
config SUM
|
||||||
bool "sum"
|
bool "sum"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
checksum and count the blocks in a file
|
checksum and count the blocks in a file
|
||||||
|
|
||||||
config SYNC
|
config SYNC
|
||||||
bool "sync"
|
bool "sync"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
sync is used to flush filesystem buffers.
|
sync is used to flush filesystem buffers.
|
||||||
|
|
||||||
config TAC
|
config TAC
|
||||||
bool "tac"
|
bool "tac"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
tac is used to concatenate and print files in reverse.
|
tac is used to concatenate and print files in reverse.
|
||||||
|
|
||||||
config TAIL
|
config TAIL
|
||||||
bool "tail"
|
bool "tail"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
tail is used to print the last specified number of lines
|
tail is used to print the last specified number of lines
|
||||||
from files.
|
from files.
|
||||||
@ -648,112 +648,112 @@ config FEATURE_FANCY_TAIL
|
|||||||
|
|
||||||
config TEE
|
config TEE
|
||||||
bool "tee"
|
bool "tee"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
tee is used to read from standard input and write
|
tee is used to read from standard input and write
|
||||||
to standard output and files.
|
to standard output and files.
|
||||||
|
|
||||||
config FEATURE_TEE_USE_BLOCK_IO
|
config FEATURE_TEE_USE_BLOCK_IO
|
||||||
bool "Enable block I/O (larger/faster) instead of byte I/O"
|
bool "Enable block I/O (larger/faster) instead of byte I/O"
|
||||||
default n
|
default y
|
||||||
depends on TEE
|
depends on TEE
|
||||||
help
|
help
|
||||||
Enable this option for a faster tee, at expense of size.
|
Enable this option for a faster tee, at expense of size.
|
||||||
|
|
||||||
config TOUCH
|
config TOUCH
|
||||||
bool "touch"
|
bool "touch"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
touch is used to create or change the access and/or
|
touch is used to create or change the access and/or
|
||||||
modification timestamp of specified files.
|
modification timestamp of specified files.
|
||||||
|
|
||||||
config TRUE
|
config TRUE
|
||||||
bool "true"
|
bool "true"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
true returns an exit code of TRUE (0).
|
true returns an exit code of TRUE (0).
|
||||||
|
|
||||||
config TTY
|
config TTY
|
||||||
bool "tty"
|
bool "tty"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
tty is used to print the name of the current terminal to
|
tty is used to print the name of the current terminal to
|
||||||
standard output.
|
standard output.
|
||||||
|
|
||||||
config UNAME
|
config UNAME
|
||||||
bool "uname"
|
bool "uname"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
uname is used to print system information.
|
uname is used to print system information.
|
||||||
|
|
||||||
config UNEXPAND
|
config UNEXPAND
|
||||||
bool "unexpand"
|
bool "unexpand"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
By default, convert only leading sequences of blanks to tabs.
|
By default, convert only leading sequences of blanks to tabs.
|
||||||
|
|
||||||
config FEATURE_UNEXPAND_LONG_OPTIONS
|
config FEATURE_UNEXPAND_LONG_OPTIONS
|
||||||
bool "Enable long options"
|
bool "Enable long options"
|
||||||
default n
|
default y
|
||||||
depends on UNEXPAND && LONG_OPTS
|
depends on UNEXPAND && LONG_OPTS
|
||||||
help
|
help
|
||||||
Support long options for the unexpand applet.
|
Support long options for the unexpand applet.
|
||||||
|
|
||||||
config UNIQ
|
config UNIQ
|
||||||
bool "uniq"
|
bool "uniq"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
uniq is used to remove duplicate lines from a sorted file.
|
uniq is used to remove duplicate lines from a sorted file.
|
||||||
|
|
||||||
config USLEEP
|
config USLEEP
|
||||||
bool "usleep"
|
bool "usleep"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
usleep is used to pause for a specified number of microseconds.
|
usleep is used to pause for a specified number of microseconds.
|
||||||
|
|
||||||
config UUDECODE
|
config UUDECODE
|
||||||
bool "uudecode"
|
bool "uudecode"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
uudecode is used to decode a uuencoded file.
|
uudecode is used to decode a uuencoded file.
|
||||||
|
|
||||||
config UUENCODE
|
config UUENCODE
|
||||||
bool "uuencode"
|
bool "uuencode"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
uuencode is used to uuencode a file.
|
uuencode is used to uuencode a file.
|
||||||
|
|
||||||
config WC
|
config WC
|
||||||
bool "wc"
|
bool "wc"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
wc is used to print the number of bytes, words, and lines,
|
wc is used to print the number of bytes, words, and lines,
|
||||||
in specified files.
|
in specified files.
|
||||||
|
|
||||||
config FEATURE_WC_LARGE
|
config FEATURE_WC_LARGE
|
||||||
bool "Support very large files in wc"
|
bool "Support very large files in wc"
|
||||||
default n
|
default y
|
||||||
depends on WC
|
depends on WC
|
||||||
help
|
help
|
||||||
Use "unsigned long long" in wc for counter variables.
|
Use "unsigned long long" in wc for counter variables.
|
||||||
|
|
||||||
config WHO
|
config WHO
|
||||||
bool "who"
|
bool "who"
|
||||||
default n
|
default y
|
||||||
depends on FEATURE_UTMP
|
depends on FEATURE_UTMP
|
||||||
help
|
help
|
||||||
who is used to show who is logged on.
|
who is used to show who is logged on.
|
||||||
|
|
||||||
config WHOAMI
|
config WHOAMI
|
||||||
bool "whoami"
|
bool "whoami"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
whoami is used to print the username of the current
|
whoami is used to print the username of the current
|
||||||
user id (same as id -un).
|
user id (same as id -un).
|
||||||
|
|
||||||
config YES
|
config YES
|
||||||
bool "yes"
|
bool "yes"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
yes is used to repeatedly output a specific string, or
|
yes is used to repeatedly output a specific string, or
|
||||||
the default string `y'.
|
the default string `y'.
|
||||||
@ -763,7 +763,7 @@ comment "Common options for cp and mv"
|
|||||||
|
|
||||||
config FEATURE_PRESERVE_HARDLINKS
|
config FEATURE_PRESERVE_HARDLINKS
|
||||||
bool "Preserve hard links"
|
bool "Preserve hard links"
|
||||||
default n
|
default y
|
||||||
depends on CP || MV
|
depends on CP || MV
|
||||||
help
|
help
|
||||||
Allow cp and mv to preserve hard links.
|
Allow cp and mv to preserve hard links.
|
||||||
@ -787,7 +787,7 @@ comment "Common options for df, du, ls"
|
|||||||
|
|
||||||
config FEATURE_HUMAN_READABLE
|
config FEATURE_HUMAN_READABLE
|
||||||
bool "Support for human readable output (example 13k, 23M, 235G)"
|
bool "Support for human readable output (example 13k, 23M, 235G)"
|
||||||
default n
|
default y
|
||||||
depends on DF || DU || LS
|
depends on DF || DU || LS
|
||||||
help
|
help
|
||||||
Allow df, du, and ls to have human readable output.
|
Allow df, du, and ls to have human readable output.
|
||||||
@ -797,7 +797,7 @@ comment "Common options for md5sum, sha1sum, sha256sum, sha512sum"
|
|||||||
|
|
||||||
config FEATURE_MD5_SHA1_SUM_CHECK
|
config FEATURE_MD5_SHA1_SUM_CHECK
|
||||||
bool "Enable -c, -s and -w options"
|
bool "Enable -c, -s and -w options"
|
||||||
default n
|
default y
|
||||||
depends on MD5SUM || SHA1SUM || SHA256SUM || SHA512SUM
|
depends on MD5SUM || SHA1SUM || SHA256SUM || SHA512SUM
|
||||||
help
|
help
|
||||||
Enabling the -c options allows files to be checked
|
Enabling the -c options allows files to be checked
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
|
|
||||||
//config:config BASENAME
|
//config:config BASENAME
|
||||||
//config: bool "basename"
|
//config: bool "basename"
|
||||||
//config: default n
|
//config: default y
|
||||||
//config: help
|
//config: help
|
||||||
//config: basename is used to strip the directory and suffix from filenames,
|
//config: basename is used to strip the directory and suffix from filenames,
|
||||||
//config: leaving just the filename itself. Enable this option if you wish
|
//config: leaving just the filename itself. Enable this option if you wish
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
//config:config CAT
|
//config:config CAT
|
||||||
//config: bool "cat"
|
//config: bool "cat"
|
||||||
//config: default n
|
//config: default y
|
||||||
//config: help
|
//config: help
|
||||||
//config: cat is used to concatenate files and print them to the standard
|
//config: cat is used to concatenate files and print them to the standard
|
||||||
//config: output. Enable this option if you wish to enable the 'cat' utility.
|
//config: output. Enable this option if you wish to enable the 'cat' utility.
|
||||||
|
@ -56,7 +56,7 @@
|
|||||||
|
|
||||||
//config:config DATE
|
//config:config DATE
|
||||||
//config: bool "date"
|
//config: bool "date"
|
||||||
//config: default n
|
//config: default y
|
||||||
//config: help
|
//config: help
|
||||||
//config: date is used to set the system date or display the
|
//config: date is used to set the system date or display the
|
||||||
//config: current time in the given format.
|
//config: current time in the given format.
|
||||||
@ -71,7 +71,7 @@
|
|||||||
//config:
|
//config:
|
||||||
//config:config FEATURE_DATE_NANO
|
//config:config FEATURE_DATE_NANO
|
||||||
//config: bool "Support %[num]N nanosecond format specifier"
|
//config: bool "Support %[num]N nanosecond format specifier"
|
||||||
//config: default y
|
//config: default n
|
||||||
//config: depends on DATE
|
//config: depends on DATE
|
||||||
//config: help
|
//config: help
|
||||||
//config: Support %[num]N format specifier. Adds ~250 bytes of code.
|
//config: Support %[num]N format specifier. Adds ~250 bytes of code.
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
|
|
||||||
//config:config TEST
|
//config:config TEST
|
||||||
//config: bool "test"
|
//config: bool "test"
|
||||||
//config: default n
|
//config: default y
|
||||||
//config: help
|
//config: help
|
||||||
//config: test is used to check file types and compare values,
|
//config: test is used to check file types and compare values,
|
||||||
//config: returning an appropriate exit code. The bash shell
|
//config: returning an appropriate exit code. The bash shell
|
||||||
@ -34,7 +34,7 @@
|
|||||||
//config:
|
//config:
|
||||||
//config:config FEATURE_TEST_64
|
//config:config FEATURE_TEST_64
|
||||||
//config: bool "Extend test to 64 bit"
|
//config: bool "Extend test to 64 bit"
|
||||||
//config: default n
|
//config: default y
|
||||||
//config: depends on TEST || ASH_BUILTIN_TEST || HUSH
|
//config: depends on TEST || ASH_BUILTIN_TEST || HUSH
|
||||||
//config: help
|
//config: help
|
||||||
//config: Enable 64-bit support in test.
|
//config: Enable 64-bit support in test.
|
||||||
|
@ -23,14 +23,14 @@
|
|||||||
|
|
||||||
//config:config TR
|
//config:config TR
|
||||||
//config: bool "tr"
|
//config: bool "tr"
|
||||||
//config: default n
|
//config: default y
|
||||||
//config: help
|
//config: help
|
||||||
//config: tr is used to squeeze, and/or delete characters from standard
|
//config: tr is used to squeeze, and/or delete characters from standard
|
||||||
//config: input, writing to standard output.
|
//config: input, writing to standard output.
|
||||||
//config:
|
//config:
|
||||||
//config:config FEATURE_TR_CLASSES
|
//config:config FEATURE_TR_CLASSES
|
||||||
//config: bool "Enable character classes (such as [:upper:])"
|
//config: bool "Enable character classes (such as [:upper:])"
|
||||||
//config: default n
|
//config: default y
|
||||||
//config: depends on TR
|
//config: depends on TR
|
||||||
//config: help
|
//config: help
|
||||||
//config: Enable character classes, enabling commands such as:
|
//config: Enable character classes, enabling commands such as:
|
||||||
@ -38,7 +38,7 @@
|
|||||||
//config:
|
//config:
|
||||||
//config:config FEATURE_TR_EQUIV
|
//config:config FEATURE_TR_EQUIV
|
||||||
//config: bool "Enable equivalence classes"
|
//config: bool "Enable equivalence classes"
|
||||||
//config: default n
|
//config: default y
|
||||||
//config: depends on TR
|
//config: depends on TR
|
||||||
//config: help
|
//config: help
|
||||||
//config: Enable equivalence classes, which essentially add the enclosed
|
//config: Enable equivalence classes, which essentially add the enclosed
|
||||||
|
@ -7,19 +7,19 @@ menu "Debian Utilities"
|
|||||||
|
|
||||||
config MKTEMP
|
config MKTEMP
|
||||||
bool "mktemp"
|
bool "mktemp"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
mktemp is used to create unique temporary files
|
mktemp is used to create unique temporary files
|
||||||
|
|
||||||
config PIPE_PROGRESS
|
config PIPE_PROGRESS
|
||||||
bool "pipe_progress"
|
bool "pipe_progress"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Display a dot to indicate pipe activity.
|
Display a dot to indicate pipe activity.
|
||||||
|
|
||||||
config RUN_PARTS
|
config RUN_PARTS
|
||||||
bool "run-parts"
|
bool "run-parts"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
run-parts is a utility designed to run all the scripts in a directory.
|
run-parts is a utility designed to run all the scripts in a directory.
|
||||||
|
|
||||||
@ -34,14 +34,14 @@ config RUN_PARTS
|
|||||||
|
|
||||||
config FEATURE_RUN_PARTS_LONG_OPTIONS
|
config FEATURE_RUN_PARTS_LONG_OPTIONS
|
||||||
bool "Enable long options"
|
bool "Enable long options"
|
||||||
default n
|
default y
|
||||||
depends on RUN_PARTS && LONG_OPTS
|
depends on RUN_PARTS && LONG_OPTS
|
||||||
help
|
help
|
||||||
Support long options for the run-parts applet.
|
Support long options for the run-parts applet.
|
||||||
|
|
||||||
config FEATURE_RUN_PARTS_FANCY
|
config FEATURE_RUN_PARTS_FANCY
|
||||||
bool "Support additional arguments"
|
bool "Support additional arguments"
|
||||||
default n
|
default y
|
||||||
depends on RUN_PARTS
|
depends on RUN_PARTS
|
||||||
help
|
help
|
||||||
Support additional options:
|
Support additional options:
|
||||||
@ -50,7 +50,7 @@ config FEATURE_RUN_PARTS_FANCY
|
|||||||
|
|
||||||
config START_STOP_DAEMON
|
config START_STOP_DAEMON
|
||||||
bool "start-stop-daemon"
|
bool "start-stop-daemon"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
start-stop-daemon is used to control the creation and
|
start-stop-daemon is used to control the creation and
|
||||||
termination of system-level processes, usually the ones
|
termination of system-level processes, usually the ones
|
||||||
@ -58,7 +58,7 @@ config START_STOP_DAEMON
|
|||||||
|
|
||||||
config FEATURE_START_STOP_DAEMON_FANCY
|
config FEATURE_START_STOP_DAEMON_FANCY
|
||||||
bool "Support additional arguments"
|
bool "Support additional arguments"
|
||||||
default n
|
default y
|
||||||
depends on START_STOP_DAEMON
|
depends on START_STOP_DAEMON
|
||||||
help
|
help
|
||||||
Support additional arguments.
|
Support additional arguments.
|
||||||
@ -68,14 +68,14 @@ config FEATURE_START_STOP_DAEMON_FANCY
|
|||||||
|
|
||||||
config FEATURE_START_STOP_DAEMON_LONG_OPTIONS
|
config FEATURE_START_STOP_DAEMON_LONG_OPTIONS
|
||||||
bool "Enable long options"
|
bool "Enable long options"
|
||||||
default n
|
default y
|
||||||
depends on START_STOP_DAEMON && LONG_OPTS
|
depends on START_STOP_DAEMON && LONG_OPTS
|
||||||
help
|
help
|
||||||
Support long options for the start-stop-daemon applet.
|
Support long options for the start-stop-daemon applet.
|
||||||
|
|
||||||
config WHICH
|
config WHICH
|
||||||
bool "which"
|
bool "which"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
which is used to find programs in your PATH and
|
which is used to find programs in your PATH and
|
||||||
print out their pathnames.
|
print out their pathnames.
|
||||||
|
@ -7,13 +7,13 @@ menu "Linux Ext2 FS Progs"
|
|||||||
|
|
||||||
config CHATTR
|
config CHATTR
|
||||||
bool "chattr"
|
bool "chattr"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
chattr changes the file attributes on a second extended file system.
|
chattr changes the file attributes on a second extended file system.
|
||||||
|
|
||||||
### config E2FSCK
|
### config E2FSCK
|
||||||
### bool "e2fsck"
|
### bool "e2fsck"
|
||||||
### default n
|
### default y
|
||||||
### help
|
### help
|
||||||
### e2fsck is used to check Linux second extended file systems (ext2fs).
|
### e2fsck is used to check Linux second extended file systems (ext2fs).
|
||||||
### e2fsck also supports ext2 filesystems countaining a journal (ext3).
|
### e2fsck also supports ext2 filesystems countaining a journal (ext3).
|
||||||
@ -22,7 +22,7 @@ config CHATTR
|
|||||||
|
|
||||||
config FSCK
|
config FSCK
|
||||||
bool "fsck"
|
bool "fsck"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
fsck is used to check and optionally repair one or more filesystems.
|
fsck is used to check and optionally repair one or more filesystems.
|
||||||
In actuality, fsck is simply a front-end for the various file system
|
In actuality, fsck is simply a front-end for the various file system
|
||||||
@ -30,27 +30,27 @@ config FSCK
|
|||||||
|
|
||||||
config LSATTR
|
config LSATTR
|
||||||
bool "lsattr"
|
bool "lsattr"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
lsattr lists the file attributes on a second extended file system.
|
lsattr lists the file attributes on a second extended file system.
|
||||||
|
|
||||||
### config MKE2FS
|
### config MKE2FS
|
||||||
### bool "mke2fs"
|
### bool "mke2fs"
|
||||||
### default n
|
### default y
|
||||||
### help
|
### help
|
||||||
### mke2fs is used to create an ext2/ext3 filesystem. The normal compat
|
### mke2fs is used to create an ext2/ext3 filesystem. The normal compat
|
||||||
### symlinks 'mkfs.ext2' and 'mkfs.ext3' are also provided.
|
### symlinks 'mkfs.ext2' and 'mkfs.ext3' are also provided.
|
||||||
|
|
||||||
config TUNE2FS
|
config TUNE2FS
|
||||||
bool "tune2fs"
|
bool "tune2fs"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
tune2fs allows the system administrator to adjust various tunable
|
tune2fs allows the system administrator to adjust various tunable
|
||||||
filesystem parameters on Linux ext2/ext3 filesystems.
|
filesystem parameters on Linux ext2/ext3 filesystems.
|
||||||
|
|
||||||
### config E2LABEL
|
### config E2LABEL
|
||||||
### bool "e2label"
|
### bool "e2label"
|
||||||
### default n
|
### default y
|
||||||
### depends on TUNE2FS
|
### depends on TUNE2FS
|
||||||
### help
|
### help
|
||||||
### e2label will display or change the filesystem label on the ext2
|
### e2label will display or change the filesystem label on the ext2
|
||||||
@ -59,7 +59,7 @@ config TUNE2FS
|
|||||||
### NB: this one is now provided by util-linux/volume_id/*
|
### NB: this one is now provided by util-linux/volume_id/*
|
||||||
### config FINDFS
|
### config FINDFS
|
||||||
### bool "findfs"
|
### bool "findfs"
|
||||||
### default n
|
### default y
|
||||||
### depends on TUNE2FS
|
### depends on TUNE2FS
|
||||||
### help
|
### help
|
||||||
### findfs will search the disks in the system looking for a filesystem
|
### findfs will search the disks in the system looking for a filesystem
|
||||||
|
@ -7,14 +7,14 @@ menu "Editors"
|
|||||||
|
|
||||||
config AWK
|
config AWK
|
||||||
bool "awk"
|
bool "awk"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Awk is used as a pattern scanning and processing language. This is
|
Awk is used as a pattern scanning and processing language. This is
|
||||||
the BusyBox implementation of that programming language.
|
the BusyBox implementation of that programming language.
|
||||||
|
|
||||||
config FEATURE_AWK_LIBM
|
config FEATURE_AWK_LIBM
|
||||||
bool "Enable math functions (requires libm)"
|
bool "Enable math functions (requires libm)"
|
||||||
default n
|
default y
|
||||||
depends on AWK
|
depends on AWK
|
||||||
help
|
help
|
||||||
Enable math functions of the Awk programming language.
|
Enable math functions of the Awk programming language.
|
||||||
@ -22,14 +22,14 @@ config FEATURE_AWK_LIBM
|
|||||||
|
|
||||||
config CMP
|
config CMP
|
||||||
bool "cmp"
|
bool "cmp"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
cmp is used to compare two files and returns the result
|
cmp is used to compare two files and returns the result
|
||||||
to standard output.
|
to standard output.
|
||||||
|
|
||||||
config DIFF
|
config DIFF
|
||||||
bool "diff"
|
bool "diff"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
diff compares two files or directories and outputs the
|
diff compares two files or directories and outputs the
|
||||||
differences between them in a form that can be given to
|
differences between them in a form that can be given to
|
||||||
@ -37,7 +37,7 @@ config DIFF
|
|||||||
|
|
||||||
config FEATURE_DIFF_LONG_OPTIONS
|
config FEATURE_DIFF_LONG_OPTIONS
|
||||||
bool "Enable long options"
|
bool "Enable long options"
|
||||||
default n
|
default y
|
||||||
depends on DIFF && LONG_OPTS
|
depends on DIFF && LONG_OPTS
|
||||||
help
|
help
|
||||||
Enable use of long options.
|
Enable use of long options.
|
||||||
@ -52,7 +52,7 @@ config FEATURE_DIFF_DIR
|
|||||||
|
|
||||||
config ED
|
config ED
|
||||||
bool "ed"
|
bool "ed"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
The original 1970's Unix text editor, from the days of teletypes.
|
The original 1970's Unix text editor, from the days of teletypes.
|
||||||
Small, simple, evil. Part of SUSv3. If you're not already using
|
Small, simple, evil. Part of SUSv3. If you're not already using
|
||||||
@ -60,20 +60,20 @@ config ED
|
|||||||
|
|
||||||
config PATCH
|
config PATCH
|
||||||
bool "patch"
|
bool "patch"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Apply a unified diff formatted patch.
|
Apply a unified diff formatted patch.
|
||||||
|
|
||||||
config SED
|
config SED
|
||||||
bool "sed"
|
bool "sed"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
sed is used to perform text transformations on a file
|
sed is used to perform text transformations on a file
|
||||||
or input from a pipeline.
|
or input from a pipeline.
|
||||||
|
|
||||||
config VI
|
config VI
|
||||||
bool "vi"
|
bool "vi"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
'vi' is a text editor. More specifically, it is the One True
|
'vi' is a text editor. More specifically, it is the One True
|
||||||
text editor <grin>. It does, however, have a rather steep
|
text editor <grin>. It does, however, have a rather steep
|
||||||
@ -91,7 +91,7 @@ config FEATURE_VI_MAX_LEN
|
|||||||
|
|
||||||
config FEATURE_VI_8BIT
|
config FEATURE_VI_8BIT
|
||||||
bool "Allow vi to display 8-bit chars (otherwise shows dots)"
|
bool "Allow vi to display 8-bit chars (otherwise shows dots)"
|
||||||
default y
|
default n
|
||||||
depends on VI
|
depends on VI
|
||||||
help
|
help
|
||||||
If your terminal can display characters with high bit set,
|
If your terminal can display characters with high bit set,
|
||||||
@ -170,7 +170,7 @@ config FEATURE_VI_WIN_RESIZE
|
|||||||
|
|
||||||
config FEATURE_VI_ASK_TERMINAL
|
config FEATURE_VI_ASK_TERMINAL
|
||||||
bool "Use 'tell me cursor position' ESC sequence to measure window"
|
bool "Use 'tell me cursor position' ESC sequence to measure window"
|
||||||
default n
|
default y
|
||||||
depends on VI
|
depends on VI
|
||||||
help
|
help
|
||||||
If terminal size can't be retrieved and $LINES/$COLUMNS are not set,
|
If terminal size can't be retrieved and $LINES/$COLUMNS are not set,
|
||||||
|
@ -57,7 +57,7 @@
|
|||||||
//config:
|
//config:
|
||||||
//config:config FIND
|
//config:config FIND
|
||||||
//config: bool "find"
|
//config: bool "find"
|
||||||
//config: default n
|
//config: default y
|
||||||
//config: help
|
//config: help
|
||||||
//config: find is used to search your system to find specified files.
|
//config: find is used to search your system to find specified files.
|
||||||
//config:
|
//config:
|
||||||
@ -193,7 +193,7 @@
|
|||||||
//config:
|
//config:
|
||||||
//config:config FEATURE_FIND_DELETE
|
//config:config FEATURE_FIND_DELETE
|
||||||
//config: bool "Enable -delete: delete files/dirs"
|
//config: bool "Enable -delete: delete files/dirs"
|
||||||
//config: default n
|
//config: default y
|
||||||
//config: depends on FIND && FEATURE_FIND_DEPTH
|
//config: depends on FIND && FEATURE_FIND_DEPTH
|
||||||
//config: help
|
//config: help
|
||||||
//config: Support the 'find -delete' option for deleting files and directories.
|
//config: Support the 'find -delete' option for deleting files and directories.
|
||||||
@ -223,7 +223,7 @@
|
|||||||
//config:
|
//config:
|
||||||
//config:config FEATURE_FIND_LINKS
|
//config:config FEATURE_FIND_LINKS
|
||||||
//config: bool "Enable -links: link count matching"
|
//config: bool "Enable -links: link count matching"
|
||||||
//config: default n
|
//config: default y
|
||||||
//config: depends on FIND
|
//config: depends on FIND
|
||||||
//config: help
|
//config: help
|
||||||
//config: Support the 'find -links' option for matching number of links.
|
//config: Support the 'find -links' option for matching number of links.
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
//config:
|
//config:
|
||||||
//config:config GREP
|
//config:config GREP
|
||||||
//config: bool "grep"
|
//config: bool "grep"
|
||||||
//config: default n
|
//config: default y
|
||||||
//config: help
|
//config: help
|
||||||
//config: grep is used to search files for a specified pattern.
|
//config: grep is used to search files for a specified pattern.
|
||||||
//config:
|
//config:
|
||||||
|
@ -21,14 +21,14 @@
|
|||||||
//config:
|
//config:
|
||||||
//config:config XARGS
|
//config:config XARGS
|
||||||
//config: bool "xargs"
|
//config: bool "xargs"
|
||||||
//config: default n
|
//config: default y
|
||||||
//config: help
|
//config: help
|
||||||
//config: xargs is used to execute a specified command for
|
//config: xargs is used to execute a specified command for
|
||||||
//config: every item from standard input.
|
//config: every item from standard input.
|
||||||
//config:
|
//config:
|
||||||
//config:config FEATURE_XARGS_SUPPORT_CONFIRMATION
|
//config:config FEATURE_XARGS_SUPPORT_CONFIRMATION
|
||||||
//config: bool "Enable -p: prompt and confirmation"
|
//config: bool "Enable -p: prompt and confirmation"
|
||||||
//config: default n
|
//config: default y
|
||||||
//config: depends on XARGS
|
//config: depends on XARGS
|
||||||
//config: help
|
//config: help
|
||||||
//config: Support -p: prompt the user whether to run each command
|
//config: Support -p: prompt the user whether to run each command
|
||||||
@ -36,14 +36,14 @@
|
|||||||
//config:
|
//config:
|
||||||
//config:config FEATURE_XARGS_SUPPORT_QUOTES
|
//config:config FEATURE_XARGS_SUPPORT_QUOTES
|
||||||
//config: bool "Enable single and double quotes and backslash"
|
//config: bool "Enable single and double quotes and backslash"
|
||||||
//config: default n
|
//config: default y
|
||||||
//config: depends on XARGS
|
//config: depends on XARGS
|
||||||
//config: help
|
//config: help
|
||||||
//config: Support quoting in the input.
|
//config: Support quoting in the input.
|
||||||
//config:
|
//config:
|
||||||
//config:config FEATURE_XARGS_SUPPORT_TERMOPT
|
//config:config FEATURE_XARGS_SUPPORT_TERMOPT
|
||||||
//config: bool "Enable -x: exit if -s or -n is exceeded"
|
//config: bool "Enable -x: exit if -s or -n is exceeded"
|
||||||
//config: default n
|
//config: default y
|
||||||
//config: depends on XARGS
|
//config: depends on XARGS
|
||||||
//config: help
|
//config: help
|
||||||
//config: Support -x: exit if the command size (see the -s or -n option)
|
//config: Support -x: exit if the command size (see the -s or -n option)
|
||||||
@ -51,7 +51,7 @@
|
|||||||
//config:
|
//config:
|
||||||
//config:config FEATURE_XARGS_SUPPORT_ZERO_TERM
|
//config:config FEATURE_XARGS_SUPPORT_ZERO_TERM
|
||||||
//config: bool "Enable -0: NUL-terminated input"
|
//config: bool "Enable -0: NUL-terminated input"
|
||||||
//config: default n
|
//config: default y
|
||||||
//config: depends on XARGS
|
//config: depends on XARGS
|
||||||
//config: help
|
//config: help
|
||||||
//config: Support -0: input items are terminated by a NUL character
|
//config: Support -0: input items are terminated by a NUL character
|
||||||
|
@ -7,7 +7,7 @@ menu "Init Utilities"
|
|||||||
|
|
||||||
config INIT
|
config INIT
|
||||||
bool "init"
|
bool "init"
|
||||||
default n
|
default y
|
||||||
select FEATURE_SYSLOG
|
select FEATURE_SYSLOG
|
||||||
help
|
help
|
||||||
init is the first program run when the system boots.
|
init is the first program run when the system boots.
|
||||||
@ -21,12 +21,12 @@ config FEATURE_USE_INITTAB
|
|||||||
|
|
||||||
config FEATURE_KILL_REMOVED
|
config FEATURE_KILL_REMOVED
|
||||||
bool "Support killing processes that have been removed from inittab"
|
bool "Support killing processes that have been removed from inittab"
|
||||||
default y
|
default n
|
||||||
depends on FEATURE_USE_INITTAB
|
depends on FEATURE_USE_INITTAB
|
||||||
help
|
help
|
||||||
When respawn entries are removed from inittab and a SIGHUP is
|
When respawn entries are removed from inittab and a SIGHUP is
|
||||||
sent to init, this feature will kill the processes that have
|
sent to init, this option will make init kill the processes
|
||||||
been removed.
|
that have been removed.
|
||||||
|
|
||||||
config FEATURE_KILL_DELAY
|
config FEATURE_KILL_DELAY
|
||||||
int "How long to wait between TERM and KILL (0 - send TERM only)" if FEATURE_KILL_REMOVED
|
int "How long to wait between TERM and KILL (0 - send TERM only)" if FEATURE_KILL_REMOVED
|
||||||
@ -41,7 +41,7 @@ config FEATURE_KILL_DELAY
|
|||||||
|
|
||||||
config FEATURE_INIT_SCTTY
|
config FEATURE_INIT_SCTTY
|
||||||
bool "Run commands with leading dash with controlling tty"
|
bool "Run commands with leading dash with controlling tty"
|
||||||
default n
|
default y
|
||||||
depends on INIT
|
depends on INIT
|
||||||
help
|
help
|
||||||
If this option is enabled, init will try to give a controlling
|
If this option is enabled, init will try to give a controlling
|
||||||
@ -56,7 +56,7 @@ config FEATURE_INIT_SCTTY
|
|||||||
|
|
||||||
config FEATURE_INIT_SYSLOG
|
config FEATURE_INIT_SYSLOG
|
||||||
bool "Enable init to write to syslog"
|
bool "Enable init to write to syslog"
|
||||||
default n
|
default y
|
||||||
depends on INIT
|
depends on INIT
|
||||||
|
|
||||||
config FEATURE_EXTRA_QUIET
|
config FEATURE_EXTRA_QUIET
|
||||||
@ -68,7 +68,7 @@ config FEATURE_EXTRA_QUIET
|
|||||||
|
|
||||||
config FEATURE_INIT_COREDUMPS
|
config FEATURE_INIT_COREDUMPS
|
||||||
bool "Support dumping core for child processes (debugging only)"
|
bool "Support dumping core for child processes (debugging only)"
|
||||||
default n
|
default y
|
||||||
depends on INIT
|
depends on INIT
|
||||||
help
|
help
|
||||||
If this option is enabled and the file /.init_enable_core
|
If this option is enabled and the file /.init_enable_core
|
||||||
@ -89,13 +89,13 @@ config FEATURE_INITRD
|
|||||||
|
|
||||||
config HALT
|
config HALT
|
||||||
bool "poweroff, halt, and reboot"
|
bool "poweroff, halt, and reboot"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Stop all processes and either halt, reboot, or power off the system.
|
Stop all processes and either halt, reboot, or power off the system.
|
||||||
|
|
||||||
config FEATURE_CALL_TELINIT
|
config FEATURE_CALL_TELINIT
|
||||||
bool "Call telinit on shutdown and reboot"
|
bool "Call telinit on shutdown and reboot"
|
||||||
default n
|
default y
|
||||||
depends on HALT && !INIT
|
depends on HALT && !INIT
|
||||||
help
|
help
|
||||||
Call an external program (normally telinit) to facilitate
|
Call an external program (normally telinit) to facilitate
|
||||||
@ -115,14 +115,14 @@ config TELINIT_PATH
|
|||||||
|
|
||||||
config MESG
|
config MESG
|
||||||
bool "mesg"
|
bool "mesg"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Mesg controls access to your terminal by others. It is typically
|
Mesg controls access to your terminal by others. It is typically
|
||||||
used to allow or disallow other users to write to your terminal
|
used to allow or disallow other users to write to your terminal
|
||||||
|
|
||||||
config BOOTCHARTD
|
config BOOTCHARTD
|
||||||
bool "bootchartd"
|
bool "bootchartd"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
bootchartd is commonly used to profile the boot process
|
bootchartd is commonly used to profile the boot process
|
||||||
for the purpose of speeding it up. In this case, it is started
|
for the purpose of speeding it up. In this case, it is started
|
||||||
|
@ -28,7 +28,7 @@ config MD5_SIZE_VS_SPEED
|
|||||||
|
|
||||||
config FEATURE_FAST_TOP
|
config FEATURE_FAST_TOP
|
||||||
bool "Faster /proc scanning code (+100 bytes)"
|
bool "Faster /proc scanning code (+100 bytes)"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
This option makes top (and ps) ~20% faster (or 20% less CPU hungry),
|
This option makes top (and ps) ~20% faster (or 20% less CPU hungry),
|
||||||
but code size is slightly bigger.
|
but code size is slightly bigger.
|
||||||
@ -43,7 +43,7 @@ config FEATURE_ETC_NETWORKS
|
|||||||
|
|
||||||
config FEATURE_EDITING
|
config FEATURE_EDITING
|
||||||
bool "Command line editing"
|
bool "Command line editing"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Enable line editing (mainly for shell command line).
|
Enable line editing (mainly for shell command line).
|
||||||
|
|
||||||
@ -68,21 +68,21 @@ config FEATURE_EDITING_VI
|
|||||||
config FEATURE_EDITING_HISTORY
|
config FEATURE_EDITING_HISTORY
|
||||||
int "History size"
|
int "History size"
|
||||||
range 0 99999
|
range 0 99999
|
||||||
default 15
|
default 255
|
||||||
depends on FEATURE_EDITING
|
depends on FEATURE_EDITING
|
||||||
help
|
help
|
||||||
Specify command history size.
|
Specify command history size.
|
||||||
|
|
||||||
config FEATURE_EDITING_SAVEHISTORY
|
config FEATURE_EDITING_SAVEHISTORY
|
||||||
bool "History saving"
|
bool "History saving"
|
||||||
default n
|
default y
|
||||||
depends on ASH && FEATURE_EDITING
|
depends on ASH && FEATURE_EDITING
|
||||||
help
|
help
|
||||||
Enable history saving in ash shell.
|
Enable history saving in ash shell.
|
||||||
|
|
||||||
config FEATURE_TAB_COMPLETION
|
config FEATURE_TAB_COMPLETION
|
||||||
bool "Tab completion"
|
bool "Tab completion"
|
||||||
default n
|
default y
|
||||||
depends on FEATURE_EDITING
|
depends on FEATURE_EDITING
|
||||||
help
|
help
|
||||||
Enable tab completion.
|
Enable tab completion.
|
||||||
@ -150,7 +150,7 @@ config FEATURE_COPYBUF_KB
|
|||||||
|
|
||||||
config MONOTONIC_SYSCALL
|
config MONOTONIC_SYSCALL
|
||||||
bool "Use clock_gettime(CLOCK_MONOTONIC) syscall"
|
bool "Use clock_gettime(CLOCK_MONOTONIC) syscall"
|
||||||
default y
|
default n
|
||||||
help
|
help
|
||||||
Use clock_gettime(CLOCK_MONOTONIC) syscall for measuring
|
Use clock_gettime(CLOCK_MONOTONIC) syscall for measuring
|
||||||
time intervals (time, ping, traceroute etc need this).
|
time intervals (time, ping, traceroute etc need this).
|
||||||
|
@ -7,7 +7,7 @@ menu "Login/Password Management Utilities"
|
|||||||
|
|
||||||
config FEATURE_SHADOWPASSWDS
|
config FEATURE_SHADOWPASSWDS
|
||||||
bool "Support for shadow passwords"
|
bool "Support for shadow passwords"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Build support for shadow password in /etc/shadow. This file is only
|
Build support for shadow password in /etc/shadow. This file is only
|
||||||
readable by root and thus the encrypted passwords are no longer
|
readable by root and thus the encrypted passwords are no longer
|
||||||
@ -15,7 +15,7 @@ config FEATURE_SHADOWPASSWDS
|
|||||||
|
|
||||||
config USE_BB_PWD_GRP
|
config USE_BB_PWD_GRP
|
||||||
bool "Use internal password and group functions rather than system functions"
|
bool "Use internal password and group functions rather than system functions"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
If you leave this disabled, busybox will use the system's password
|
If you leave this disabled, busybox will use the system's password
|
||||||
and group functions. And if you are using the GNU C library
|
and group functions. And if you are using the GNU C library
|
||||||
@ -81,7 +81,7 @@ config USE_BB_CRYPT
|
|||||||
|
|
||||||
config USE_BB_CRYPT_SHA
|
config USE_BB_CRYPT_SHA
|
||||||
bool "Enable SHA256/512 crypt functions"
|
bool "Enable SHA256/512 crypt functions"
|
||||||
default n
|
default y
|
||||||
depends on USE_BB_CRYPT
|
depends on USE_BB_CRYPT
|
||||||
help
|
help
|
||||||
Enable this if you have passwords starting with "$5$" or "$6$"
|
Enable this if you have passwords starting with "$5$" or "$6$"
|
||||||
@ -93,20 +93,20 @@ config USE_BB_CRYPT_SHA
|
|||||||
|
|
||||||
config ADDGROUP
|
config ADDGROUP
|
||||||
bool "addgroup"
|
bool "addgroup"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Utility for creating a new group account.
|
Utility for creating a new group account.
|
||||||
|
|
||||||
config FEATURE_ADDGROUP_LONG_OPTIONS
|
config FEATURE_ADDGROUP_LONG_OPTIONS
|
||||||
bool "Enable long options"
|
bool "Enable long options"
|
||||||
default n
|
default y
|
||||||
depends on ADDGROUP && LONG_OPTS
|
depends on ADDGROUP && LONG_OPTS
|
||||||
help
|
help
|
||||||
Support long options for the addgroup applet.
|
Support long options for the addgroup applet.
|
||||||
|
|
||||||
config FEATURE_ADDUSER_TO_GROUP
|
config FEATURE_ADDUSER_TO_GROUP
|
||||||
bool "Support for adding users to groups"
|
bool "Support for adding users to groups"
|
||||||
default n
|
default y
|
||||||
depends on ADDGROUP
|
depends on ADDGROUP
|
||||||
help
|
help
|
||||||
If called with two non-option arguments,
|
If called with two non-option arguments,
|
||||||
@ -115,13 +115,13 @@ config FEATURE_ADDUSER_TO_GROUP
|
|||||||
|
|
||||||
config DELGROUP
|
config DELGROUP
|
||||||
bool "delgroup"
|
bool "delgroup"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Utility for deleting a group account.
|
Utility for deleting a group account.
|
||||||
|
|
||||||
config FEATURE_DEL_USER_FROM_GROUP
|
config FEATURE_DEL_USER_FROM_GROUP
|
||||||
bool "Support for removing users from groups"
|
bool "Support for removing users from groups"
|
||||||
default n
|
default y
|
||||||
depends on DELGROUP
|
depends on DELGROUP
|
||||||
help
|
help
|
||||||
If called with two non-option arguments, deluser
|
If called with two non-option arguments, deluser
|
||||||
@ -141,13 +141,13 @@ config FEATURE_CHECK_NAMES
|
|||||||
|
|
||||||
config ADDUSER
|
config ADDUSER
|
||||||
bool "adduser"
|
bool "adduser"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Utility for creating a new user account.
|
Utility for creating a new user account.
|
||||||
|
|
||||||
config FEATURE_ADDUSER_LONG_OPTIONS
|
config FEATURE_ADDUSER_LONG_OPTIONS
|
||||||
bool "Enable long options"
|
bool "Enable long options"
|
||||||
default n
|
default y
|
||||||
depends on ADDUSER && LONG_OPTS
|
depends on ADDUSER && LONG_OPTS
|
||||||
help
|
help
|
||||||
Support long options for the adduser applet.
|
Support long options for the adduser applet.
|
||||||
@ -170,20 +170,20 @@ config LAST_SYSTEM_ID
|
|||||||
|
|
||||||
config DELUSER
|
config DELUSER
|
||||||
bool "deluser"
|
bool "deluser"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Utility for deleting a user account.
|
Utility for deleting a user account.
|
||||||
|
|
||||||
config GETTY
|
config GETTY
|
||||||
bool "getty"
|
bool "getty"
|
||||||
default n
|
default y
|
||||||
select FEATURE_SYSLOG
|
select FEATURE_SYSLOG
|
||||||
help
|
help
|
||||||
getty lets you log in on a tty, it is normally invoked by init.
|
getty lets you log in on a tty, it is normally invoked by init.
|
||||||
|
|
||||||
config LOGIN
|
config LOGIN
|
||||||
bool "login"
|
bool "login"
|
||||||
default n
|
default y
|
||||||
select FEATURE_SUID
|
select FEATURE_SUID
|
||||||
select FEATURE_SYSLOG
|
select FEATURE_SYSLOG
|
||||||
help
|
help
|
||||||
@ -202,7 +202,7 @@ config PAM
|
|||||||
config LOGIN_SCRIPTS
|
config LOGIN_SCRIPTS
|
||||||
bool "Support for login scripts"
|
bool "Support for login scripts"
|
||||||
depends on LOGIN
|
depends on LOGIN
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Enable this if you want login to execute $LOGIN_PRE_SUID_SCRIPT
|
Enable this if you want login to execute $LOGIN_PRE_SUID_SCRIPT
|
||||||
just prior to switching from root to logged-in user.
|
just prior to switching from root to logged-in user.
|
||||||
@ -226,7 +226,7 @@ config FEATURE_SECURETTY
|
|||||||
|
|
||||||
config PASSWD
|
config PASSWD
|
||||||
bool "passwd"
|
bool "passwd"
|
||||||
default n
|
default y
|
||||||
select FEATURE_SUID
|
select FEATURE_SUID
|
||||||
select FEATURE_SYSLOG
|
select FEATURE_SYSLOG
|
||||||
help
|
help
|
||||||
@ -247,7 +247,7 @@ config FEATURE_PASSWD_WEAK_CHECK
|
|||||||
|
|
||||||
config CRYPTPW
|
config CRYPTPW
|
||||||
bool "cryptpw"
|
bool "cryptpw"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Encrypts the given password with the crypt(3) libc function
|
Encrypts the given password with the crypt(3) libc function
|
||||||
using the given salt. Debian has this utility under mkpasswd
|
using the given salt. Debian has this utility under mkpasswd
|
||||||
@ -255,14 +255,14 @@ config CRYPTPW
|
|||||||
|
|
||||||
config CHPASSWD
|
config CHPASSWD
|
||||||
bool "chpasswd"
|
bool "chpasswd"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Reads a file of user name and password pairs from standard input
|
Reads a file of user name and password pairs from standard input
|
||||||
and uses this information to update a group of existing users.
|
and uses this information to update a group of existing users.
|
||||||
|
|
||||||
config SU
|
config SU
|
||||||
bool "su"
|
bool "su"
|
||||||
default n
|
default y
|
||||||
select FEATURE_SUID
|
select FEATURE_SUID
|
||||||
select FEATURE_SYSLOG
|
select FEATURE_SYSLOG
|
||||||
help
|
help
|
||||||
@ -284,7 +284,7 @@ config FEATURE_SU_CHECKS_SHELLS
|
|||||||
|
|
||||||
config SULOGIN
|
config SULOGIN
|
||||||
bool "sulogin"
|
bool "sulogin"
|
||||||
default n
|
default y
|
||||||
select FEATURE_SYSLOG
|
select FEATURE_SYSLOG
|
||||||
help
|
help
|
||||||
sulogin is invoked when the system goes into single user
|
sulogin is invoked when the system goes into single user
|
||||||
@ -292,7 +292,7 @@ config SULOGIN
|
|||||||
|
|
||||||
config VLOCK
|
config VLOCK
|
||||||
bool "vlock"
|
bool "vlock"
|
||||||
default n
|
default y
|
||||||
select FEATURE_SUID
|
select FEATURE_SUID
|
||||||
help
|
help
|
||||||
Build the "vlock" applet which allows you to lock (virtual) terminals.
|
Build the "vlock" applet which allows you to lock (virtual) terminals.
|
||||||
|
@ -2,7 +2,7 @@ menu "Mail Utilities"
|
|||||||
|
|
||||||
config MAKEMIME
|
config MAKEMIME
|
||||||
bool "makemime"
|
bool "makemime"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Create MIME-formatted messages.
|
Create MIME-formatted messages.
|
||||||
|
|
||||||
@ -15,14 +15,14 @@ config FEATURE_MIME_CHARSET
|
|||||||
|
|
||||||
config POPMAILDIR
|
config POPMAILDIR
|
||||||
bool "popmaildir"
|
bool "popmaildir"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Simple yet powerful POP3 mail popper. Delivers content
|
Simple yet powerful POP3 mail popper. Delivers content
|
||||||
of remote mailboxes to local Maildir.
|
of remote mailboxes to local Maildir.
|
||||||
|
|
||||||
config FEATURE_POPMAILDIR_DELIVERY
|
config FEATURE_POPMAILDIR_DELIVERY
|
||||||
bool "Allow message filters and custom delivery program"
|
bool "Allow message filters and custom delivery program"
|
||||||
default n
|
default y
|
||||||
depends on POPMAILDIR
|
depends on POPMAILDIR
|
||||||
help
|
help
|
||||||
Allow to use a custom program to filter the content
|
Allow to use a custom program to filter the content
|
||||||
@ -32,7 +32,7 @@ config FEATURE_POPMAILDIR_DELIVERY
|
|||||||
|
|
||||||
config REFORMIME
|
config REFORMIME
|
||||||
bool "reformime"
|
bool "reformime"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Parse MIME-formatted messages.
|
Parse MIME-formatted messages.
|
||||||
|
|
||||||
@ -46,7 +46,7 @@ config FEATURE_REFORMIME_COMPAT
|
|||||||
|
|
||||||
config SENDMAIL
|
config SENDMAIL
|
||||||
bool "sendmail"
|
bool "sendmail"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Barebones sendmail.
|
Barebones sendmail.
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ menu "Miscellaneous Utilities"
|
|||||||
|
|
||||||
config ADJTIMEX
|
config ADJTIMEX
|
||||||
bool "adjtimex"
|
bool "adjtimex"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Adjtimex reads and optionally sets adjustment parameters for
|
Adjtimex reads and optionally sets adjustment parameters for
|
||||||
the Linux clock adjustment algorithm.
|
the Linux clock adjustment algorithm.
|
||||||
@ -21,7 +21,7 @@ config BBCONFIG
|
|||||||
|
|
||||||
config BEEP
|
config BEEP
|
||||||
bool "beep"
|
bool "beep"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
The beep applets beeps in a given freq/Hz.
|
The beep applets beeps in a given freq/Hz.
|
||||||
|
|
||||||
@ -43,7 +43,7 @@ config FEATURE_BEEP_LENGTH_MS
|
|||||||
|
|
||||||
config CHAT
|
config CHAT
|
||||||
bool "chat"
|
bool "chat"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Simple chat utility.
|
Simple chat utility.
|
||||||
|
|
||||||
@ -77,7 +77,7 @@ config FEATURE_CHAT_IMPLICIT_CR
|
|||||||
config FEATURE_CHAT_SWALLOW_OPTS
|
config FEATURE_CHAT_SWALLOW_OPTS
|
||||||
bool "Swallow options"
|
bool "Swallow options"
|
||||||
depends on CHAT
|
depends on CHAT
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Busybox chat require no options. To make it not fail when used
|
Busybox chat require no options. To make it not fail when used
|
||||||
in place of original chat (which has a bunch of options) turn
|
in place of original chat (which has a bunch of options) turn
|
||||||
@ -86,7 +86,7 @@ config FEATURE_CHAT_SWALLOW_OPTS
|
|||||||
config FEATURE_CHAT_SEND_ESCAPES
|
config FEATURE_CHAT_SEND_ESCAPES
|
||||||
bool "Support weird SEND escapes"
|
bool "Support weird SEND escapes"
|
||||||
depends on CHAT
|
depends on CHAT
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Original chat uses some escape sequences in SEND arguments which
|
Original chat uses some escape sequences in SEND arguments which
|
||||||
are not sent to device but rather performs special actions.
|
are not sent to device but rather performs special actions.
|
||||||
@ -97,27 +97,27 @@ config FEATURE_CHAT_SEND_ESCAPES
|
|||||||
config FEATURE_CHAT_VAR_ABORT_LEN
|
config FEATURE_CHAT_VAR_ABORT_LEN
|
||||||
bool "Support variable-length ABORT conditions"
|
bool "Support variable-length ABORT conditions"
|
||||||
depends on CHAT
|
depends on CHAT
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Original chat uses fixed 50-bytes length ABORT conditions. Say N here.
|
Original chat uses fixed 50-bytes length ABORT conditions. Say N here.
|
||||||
|
|
||||||
config FEATURE_CHAT_CLR_ABORT
|
config FEATURE_CHAT_CLR_ABORT
|
||||||
bool "Support revoking of ABORT conditions"
|
bool "Support revoking of ABORT conditions"
|
||||||
depends on CHAT
|
depends on CHAT
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Support CLR_ABORT directive.
|
Support CLR_ABORT directive.
|
||||||
|
|
||||||
config CHRT
|
config CHRT
|
||||||
bool "chrt"
|
bool "chrt"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
manipulate real-time attributes of a process.
|
manipulate real-time attributes of a process.
|
||||||
This requires sched_{g,s}etparam support in your libc.
|
This requires sched_{g,s}etparam support in your libc.
|
||||||
|
|
||||||
config CROND
|
config CROND
|
||||||
bool "crond"
|
bool "crond"
|
||||||
default n
|
default y
|
||||||
select FEATURE_SUID
|
select FEATURE_SUID
|
||||||
select FEATURE_SYSLOG
|
select FEATURE_SYSLOG
|
||||||
help
|
help
|
||||||
@ -132,13 +132,13 @@ config CROND
|
|||||||
config FEATURE_CROND_D
|
config FEATURE_CROND_D
|
||||||
bool "Support option -d to redirect output to stderr"
|
bool "Support option -d to redirect output to stderr"
|
||||||
depends on CROND
|
depends on CROND
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
-d sets loglevel to 0 (most verbose) and directs all output to stderr.
|
-d sets loglevel to 0 (most verbose) and directs all output to stderr.
|
||||||
|
|
||||||
config FEATURE_CROND_CALL_SENDMAIL
|
config FEATURE_CROND_CALL_SENDMAIL
|
||||||
bool "Report command output via email (using sendmail)"
|
bool "Report command output via email (using sendmail)"
|
||||||
default n
|
default y
|
||||||
depends on CROND
|
depends on CROND
|
||||||
help
|
help
|
||||||
Command output will be sent to corresponding user via email.
|
Command output will be sent to corresponding user via email.
|
||||||
@ -152,7 +152,7 @@ config FEATURE_CROND_DIR
|
|||||||
|
|
||||||
config CRONTAB
|
config CRONTAB
|
||||||
bool "crontab"
|
bool "crontab"
|
||||||
default n
|
default y
|
||||||
select FEATURE_SUID
|
select FEATURE_SUID
|
||||||
help
|
help
|
||||||
Crontab manipulates the crontab for a particular user. Only
|
Crontab manipulates the crontab for a particular user. Only
|
||||||
@ -162,14 +162,14 @@ config CRONTAB
|
|||||||
|
|
||||||
config DC
|
config DC
|
||||||
bool "dc"
|
bool "dc"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Dc is a reverse-polish desk calculator which supports unlimited
|
Dc is a reverse-polish desk calculator which supports unlimited
|
||||||
precision arithmetic.
|
precision arithmetic.
|
||||||
|
|
||||||
config FEATURE_DC_LIBM
|
config FEATURE_DC_LIBM
|
||||||
bool "Enable power and exp functions (requires libm)"
|
bool "Enable power and exp functions (requires libm)"
|
||||||
default n
|
default y
|
||||||
depends on DC
|
depends on DC
|
||||||
help
|
help
|
||||||
Enable power and exp functions.
|
Enable power and exp functions.
|
||||||
@ -196,7 +196,7 @@ config DEVFSD
|
|||||||
|
|
||||||
config DEVFSD_MODLOAD
|
config DEVFSD_MODLOAD
|
||||||
bool "Adds support for MODLOAD keyword in devsfd.conf"
|
bool "Adds support for MODLOAD keyword in devsfd.conf"
|
||||||
default n
|
default y
|
||||||
depends on DEVFSD
|
depends on DEVFSD
|
||||||
help
|
help
|
||||||
This actually doesn't work with busybox modutils but needs
|
This actually doesn't work with busybox modutils but needs
|
||||||
@ -204,7 +204,7 @@ config DEVFSD_MODLOAD
|
|||||||
|
|
||||||
config DEVFSD_FG_NP
|
config DEVFSD_FG_NP
|
||||||
bool "Enables the -fg and -np options"
|
bool "Enables the -fg and -np options"
|
||||||
default n
|
default y
|
||||||
depends on DEVFSD
|
depends on DEVFSD
|
||||||
help
|
help
|
||||||
-fg Run the daemon in the foreground.
|
-fg Run the daemon in the foreground.
|
||||||
@ -213,7 +213,7 @@ config DEVFSD_FG_NP
|
|||||||
|
|
||||||
config DEVFSD_VERBOSE
|
config DEVFSD_VERBOSE
|
||||||
bool "Increases logging (and size)"
|
bool "Increases logging (and size)"
|
||||||
default n
|
default y
|
||||||
depends on DEVFSD
|
depends on DEVFSD
|
||||||
help
|
help
|
||||||
Increases logging to stderr or syslog.
|
Increases logging to stderr or syslog.
|
||||||
@ -232,20 +232,20 @@ config FEATURE_DEVFS
|
|||||||
|
|
||||||
config DEVMEM
|
config DEVMEM
|
||||||
bool "devmem"
|
bool "devmem"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
devmem is a small program that reads and writes from physical
|
devmem is a small program that reads and writes from physical
|
||||||
memory using /dev/mem.
|
memory using /dev/mem.
|
||||||
|
|
||||||
config EJECT
|
config EJECT
|
||||||
bool "eject"
|
bool "eject"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Used to eject cdroms. (defaults to /dev/cdrom)
|
Used to eject cdroms. (defaults to /dev/cdrom)
|
||||||
|
|
||||||
config FEATURE_EJECT_SCSI
|
config FEATURE_EJECT_SCSI
|
||||||
bool "SCSI support"
|
bool "SCSI support"
|
||||||
default n
|
default y
|
||||||
depends on EJECT
|
depends on EJECT
|
||||||
help
|
help
|
||||||
Add the -s option to eject, this allows to eject SCSI-Devices and
|
Add the -s option to eject, this allows to eject SCSI-Devices and
|
||||||
@ -253,7 +253,7 @@ config FEATURE_EJECT_SCSI
|
|||||||
|
|
||||||
config FBSPLASH
|
config FBSPLASH
|
||||||
bool "fbsplash"
|
bool "fbsplash"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Shows splash image and progress bar on framebuffer device.
|
Shows splash image and progress bar on framebuffer device.
|
||||||
Can be used during boot phase of an embedded device. ~2kb.
|
Can be used during boot phase of an embedded device. ~2kb.
|
||||||
@ -274,49 +274,49 @@ config FBSPLASH
|
|||||||
|
|
||||||
config FLASHCP
|
config FLASHCP
|
||||||
bool "flashcp"
|
bool "flashcp"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
The flashcp binary, inspired by mtd-utils as of git head 5eceb74f7.
|
The flashcp binary, inspired by mtd-utils as of git head 5eceb74f7.
|
||||||
This utility is used to copy images into a MTD device.
|
This utility is used to copy images into a MTD device.
|
||||||
|
|
||||||
config FLASH_LOCK
|
config FLASH_LOCK
|
||||||
bool "flash_lock"
|
bool "flash_lock"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
The flash_lock binary from mtd-utils as of git head 5ec0c10d0. This
|
The flash_lock binary from mtd-utils as of git head 5ec0c10d0. This
|
||||||
utility locks part or all of the flash device.
|
utility locks part or all of the flash device.
|
||||||
|
|
||||||
config FLASH_UNLOCK
|
config FLASH_UNLOCK
|
||||||
bool "flash_unlock"
|
bool "flash_unlock"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
The flash_unlock binary from mtd-utils as of git head 5ec0c10d0. This
|
The flash_unlock binary from mtd-utils as of git head 5ec0c10d0. This
|
||||||
utility unlocks part or all of the flash device.
|
utility unlocks part or all of the flash device.
|
||||||
|
|
||||||
config FLASH_ERASEALL
|
config FLASH_ERASEALL
|
||||||
bool "flash_eraseall"
|
bool "flash_eraseall"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
The flash_eraseall binary from mtd-utils as of git head c4c6a59eb.
|
The flash_eraseall binary from mtd-utils as of git head c4c6a59eb.
|
||||||
This utility is used to erase the whole MTD device.
|
This utility is used to erase the whole MTD device.
|
||||||
|
|
||||||
config IONICE
|
config IONICE
|
||||||
bool "ionice"
|
bool "ionice"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Set/set program io scheduling class and priority
|
Set/set program io scheduling class and priority
|
||||||
Requires kernel >= 2.6.13
|
Requires kernel >= 2.6.13
|
||||||
|
|
||||||
config INOTIFYD
|
config INOTIFYD
|
||||||
bool "inotifyd"
|
bool "inotifyd"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Simple inotify daemon. Reports filesystem changes. Requires
|
Simple inotify daemon. Reports filesystem changes. Requires
|
||||||
kernel >= 2.6.13
|
kernel >= 2.6.13
|
||||||
|
|
||||||
config LAST
|
config LAST
|
||||||
bool "last"
|
bool "last"
|
||||||
default n
|
default y
|
||||||
depends on FEATURE_WTMP
|
depends on FEATURE_WTMP
|
||||||
help
|
help
|
||||||
'last' displays a list of the last users that logged into the system.
|
'last' displays a list of the last users that logged into the system.
|
||||||
@ -324,7 +324,7 @@ config LAST
|
|||||||
choice
|
choice
|
||||||
prompt "Choose last implementation"
|
prompt "Choose last implementation"
|
||||||
depends on LAST
|
depends on LAST
|
||||||
default FEATURE_LAST_SMALL
|
default FEATURE_LAST_FANCY
|
||||||
|
|
||||||
config FEATURE_LAST_SMALL
|
config FEATURE_LAST_SMALL
|
||||||
bool "small"
|
bool "small"
|
||||||
@ -341,7 +341,7 @@ endchoice
|
|||||||
|
|
||||||
config LESS
|
config LESS
|
||||||
bool "less"
|
bool "less"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
'less' is a pager, meaning that it displays text files. It possesses
|
'less' is a pager, meaning that it displays text files. It possesses
|
||||||
a wide array of features, and is an improvement over 'more'.
|
a wide array of features, and is an improvement over 'more'.
|
||||||
@ -371,28 +371,28 @@ config FEATURE_LESS_FLAGS
|
|||||||
|
|
||||||
config FEATURE_LESS_MARKS
|
config FEATURE_LESS_MARKS
|
||||||
bool "Enable marks"
|
bool "Enable marks"
|
||||||
default n
|
default y
|
||||||
depends on LESS
|
depends on LESS
|
||||||
help
|
help
|
||||||
Marks enable positions in a file to be stored for easy reference.
|
Marks enable positions in a file to be stored for easy reference.
|
||||||
|
|
||||||
config FEATURE_LESS_REGEXP
|
config FEATURE_LESS_REGEXP
|
||||||
bool "Enable regular expressions"
|
bool "Enable regular expressions"
|
||||||
default n
|
default y
|
||||||
depends on LESS
|
depends on LESS
|
||||||
help
|
help
|
||||||
Enable regular expressions, allowing complex file searches.
|
Enable regular expressions, allowing complex file searches.
|
||||||
|
|
||||||
config FEATURE_LESS_WINCH
|
config FEATURE_LESS_WINCH
|
||||||
bool "Enable automatic resizing on window size changes"
|
bool "Enable automatic resizing on window size changes"
|
||||||
default n
|
default y
|
||||||
depends on LESS
|
depends on LESS
|
||||||
help
|
help
|
||||||
Makes less track window size changes.
|
Makes less track window size changes.
|
||||||
|
|
||||||
config FEATURE_LESS_DASHCMD
|
config FEATURE_LESS_DASHCMD
|
||||||
bool "Enable flag changes ('-' command)"
|
bool "Enable flag changes ('-' command)"
|
||||||
default n
|
default y
|
||||||
depends on LESS
|
depends on LESS
|
||||||
help
|
help
|
||||||
This enables the ability to change command-line flags within
|
This enables the ability to change command-line flags within
|
||||||
@ -400,14 +400,14 @@ config FEATURE_LESS_DASHCMD
|
|||||||
|
|
||||||
config FEATURE_LESS_LINENUMS
|
config FEATURE_LESS_LINENUMS
|
||||||
bool "Enable dynamic switching of line numbers"
|
bool "Enable dynamic switching of line numbers"
|
||||||
default n
|
default y
|
||||||
depends on FEATURE_LESS_DASHCMD
|
depends on FEATURE_LESS_DASHCMD
|
||||||
help
|
help
|
||||||
Enable "-N" command.
|
Enable "-N" command.
|
||||||
|
|
||||||
config HDPARM
|
config HDPARM
|
||||||
bool "hdparm"
|
bool "hdparm"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Get/Set hard drive parameters. Primarily intended for ATA
|
Get/Set hard drive parameters. Primarily intended for ATA
|
||||||
drives. Adds about 13k (or around 30k if you enable the
|
drives. Adds about 13k (or around 30k if you enable the
|
||||||
@ -425,7 +425,7 @@ config FEATURE_HDPARM_GET_IDENTITY
|
|||||||
|
|
||||||
config FEATURE_HDPARM_HDIO_SCAN_HWIF
|
config FEATURE_HDPARM_HDIO_SCAN_HWIF
|
||||||
bool "Register an IDE interface (DANGEROUS)"
|
bool "Register an IDE interface (DANGEROUS)"
|
||||||
default n
|
default y
|
||||||
depends on HDPARM
|
depends on HDPARM
|
||||||
help
|
help
|
||||||
Enables the 'hdparm -R' option to register an IDE interface.
|
Enables the 'hdparm -R' option to register an IDE interface.
|
||||||
@ -433,7 +433,7 @@ config FEATURE_HDPARM_HDIO_SCAN_HWIF
|
|||||||
|
|
||||||
config FEATURE_HDPARM_HDIO_UNREGISTER_HWIF
|
config FEATURE_HDPARM_HDIO_UNREGISTER_HWIF
|
||||||
bool "Un-register an IDE interface (DANGEROUS)"
|
bool "Un-register an IDE interface (DANGEROUS)"
|
||||||
default n
|
default y
|
||||||
depends on HDPARM
|
depends on HDPARM
|
||||||
help
|
help
|
||||||
Enables the 'hdparm -U' option to un-register an IDE interface.
|
Enables the 'hdparm -U' option to un-register an IDE interface.
|
||||||
@ -441,7 +441,7 @@ config FEATURE_HDPARM_HDIO_UNREGISTER_HWIF
|
|||||||
|
|
||||||
config FEATURE_HDPARM_HDIO_DRIVE_RESET
|
config FEATURE_HDPARM_HDIO_DRIVE_RESET
|
||||||
bool "Perform device reset (DANGEROUS)"
|
bool "Perform device reset (DANGEROUS)"
|
||||||
default n
|
default y
|
||||||
depends on HDPARM
|
depends on HDPARM
|
||||||
help
|
help
|
||||||
Enables the 'hdparm -w' option to perform a device reset.
|
Enables the 'hdparm -w' option to perform a device reset.
|
||||||
@ -449,7 +449,7 @@ config FEATURE_HDPARM_HDIO_DRIVE_RESET
|
|||||||
|
|
||||||
config FEATURE_HDPARM_HDIO_TRISTATE_HWIF
|
config FEATURE_HDPARM_HDIO_TRISTATE_HWIF
|
||||||
bool "Tristate device for hotswap (DANGEROUS)"
|
bool "Tristate device for hotswap (DANGEROUS)"
|
||||||
default n
|
default y
|
||||||
depends on HDPARM
|
depends on HDPARM
|
||||||
help
|
help
|
||||||
Enables the 'hdparm -x' option to tristate device for hotswap,
|
Enables the 'hdparm -x' option to tristate device for hotswap,
|
||||||
@ -458,14 +458,14 @@ config FEATURE_HDPARM_HDIO_TRISTATE_HWIF
|
|||||||
|
|
||||||
config FEATURE_HDPARM_HDIO_GETSET_DMA
|
config FEATURE_HDPARM_HDIO_GETSET_DMA
|
||||||
bool "Get/set using_dma flag"
|
bool "Get/set using_dma flag"
|
||||||
default n
|
default y
|
||||||
depends on HDPARM
|
depends on HDPARM
|
||||||
help
|
help
|
||||||
Enables the 'hdparm -d' option to get/set using_dma flag.
|
Enables the 'hdparm -d' option to get/set using_dma flag.
|
||||||
|
|
||||||
config MAKEDEVS
|
config MAKEDEVS
|
||||||
bool "makedevs"
|
bool "makedevs"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
'makedevs' is a utility used to create a batch of devices with
|
'makedevs' is a utility used to create a batch of devices with
|
||||||
one command.
|
one command.
|
||||||
@ -497,25 +497,25 @@ endchoice
|
|||||||
|
|
||||||
config MAN
|
config MAN
|
||||||
bool "man"
|
bool "man"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Format and display manual pages.
|
Format and display manual pages.
|
||||||
|
|
||||||
config MICROCOM
|
config MICROCOM
|
||||||
bool "microcom"
|
bool "microcom"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
The poor man's minicom utility for chatting with serial port devices.
|
The poor man's minicom utility for chatting with serial port devices.
|
||||||
|
|
||||||
config MOUNTPOINT
|
config MOUNTPOINT
|
||||||
bool "mountpoint"
|
bool "mountpoint"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
mountpoint checks if the directory is a mountpoint.
|
mountpoint checks if the directory is a mountpoint.
|
||||||
|
|
||||||
config MT
|
config MT
|
||||||
bool "mt"
|
bool "mt"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
mt is used to control tape devices. You can use the mt utility
|
mt is used to control tape devices. You can use the mt utility
|
||||||
to advance or rewind a tape past a specified number of archive
|
to advance or rewind a tape past a specified number of archive
|
||||||
@ -523,14 +523,14 @@ config MT
|
|||||||
|
|
||||||
config RAIDAUTORUN
|
config RAIDAUTORUN
|
||||||
bool "raidautorun"
|
bool "raidautorun"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
raidautorun tells the kernel md driver to
|
raidautorun tells the kernel md driver to
|
||||||
search and start RAID arrays.
|
search and start RAID arrays.
|
||||||
|
|
||||||
config READAHEAD
|
config READAHEAD
|
||||||
bool "readahead"
|
bool "readahead"
|
||||||
default n
|
default y
|
||||||
depends on LFS
|
depends on LFS
|
||||||
help
|
help
|
||||||
Preload the files listed on the command line into RAM cache so that
|
Preload the files listed on the command line into RAM cache so that
|
||||||
@ -547,7 +547,7 @@ config READAHEAD
|
|||||||
|
|
||||||
config RFKILL
|
config RFKILL
|
||||||
bool "rfkill"
|
bool "rfkill"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Enable/disable wireless devices.
|
Enable/disable wireless devices.
|
||||||
|
|
||||||
@ -558,7 +558,7 @@ config RFKILL
|
|||||||
|
|
||||||
config RUNLEVEL
|
config RUNLEVEL
|
||||||
bool "runlevel"
|
bool "runlevel"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
find the current and previous system runlevel.
|
find the current and previous system runlevel.
|
||||||
|
|
||||||
@ -567,26 +567,26 @@ config RUNLEVEL
|
|||||||
|
|
||||||
config RX
|
config RX
|
||||||
bool "rx"
|
bool "rx"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Receive files using the Xmodem protocol.
|
Receive files using the Xmodem protocol.
|
||||||
|
|
||||||
config SETSID
|
config SETSID
|
||||||
bool "setsid"
|
bool "setsid"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
setsid runs a program in a new session
|
setsid runs a program in a new session
|
||||||
|
|
||||||
config STRINGS
|
config STRINGS
|
||||||
bool "strings"
|
bool "strings"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
strings prints the printable character sequences for each file
|
strings prints the printable character sequences for each file
|
||||||
specified.
|
specified.
|
||||||
|
|
||||||
config TASKSET
|
config TASKSET
|
||||||
bool "taskset"
|
bool "taskset"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Retrieve or set a processes's CPU affinity.
|
Retrieve or set a processes's CPU affinity.
|
||||||
This requires sched_{g,s}etaffinity support in your libc.
|
This requires sched_{g,s}etaffinity support in your libc.
|
||||||
@ -602,7 +602,7 @@ config FEATURE_TASKSET_FANCY
|
|||||||
|
|
||||||
config TIME
|
config TIME
|
||||||
bool "time"
|
bool "time"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
The time command runs the specified program with the given arguments.
|
The time command runs the specified program with the given arguments.
|
||||||
When the command finishes, time writes a message to standard output
|
When the command finishes, time writes a message to standard output
|
||||||
@ -610,14 +610,14 @@ config TIME
|
|||||||
|
|
||||||
config TIMEOUT
|
config TIMEOUT
|
||||||
bool "timeout"
|
bool "timeout"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Runs a program and watches it. If it does not terminate in
|
Runs a program and watches it. If it does not terminate in
|
||||||
specified number of seconds, it is sent a signal.
|
specified number of seconds, it is sent a signal.
|
||||||
|
|
||||||
config TTYSIZE
|
config TTYSIZE
|
||||||
bool "ttysize"
|
bool "ttysize"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
A replacement for "stty size". Unlike stty, can report only width,
|
A replacement for "stty size". Unlike stty, can report only width,
|
||||||
only height, or both, in any order. It also does not complain on
|
only height, or both, in any order. It also does not complain on
|
||||||
@ -626,19 +626,19 @@ config TTYSIZE
|
|||||||
|
|
||||||
config VOLNAME
|
config VOLNAME
|
||||||
bool "volname"
|
bool "volname"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Prints a CD-ROM volume name.
|
Prints a CD-ROM volume name.
|
||||||
|
|
||||||
config WALL
|
config WALL
|
||||||
bool "wall"
|
bool "wall"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Write a message to all users that are logged in.
|
Write a message to all users that are logged in.
|
||||||
|
|
||||||
config WATCHDOG
|
config WATCHDOG
|
||||||
bool "watchdog"
|
bool "watchdog"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
The watchdog utility is used with hardware or software watchdog
|
The watchdog utility is used with hardware or software watchdog
|
||||||
device drivers. It opens the specified watchdog device special file
|
device drivers. It opens the specified watchdog device special file
|
||||||
|
@ -7,7 +7,7 @@ menu "Linux Module Utilities"
|
|||||||
|
|
||||||
config MODPROBE_SMALL
|
config MODPROBE_SMALL
|
||||||
bool "Simplified modutils"
|
bool "Simplified modutils"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Simplified modutils.
|
Simplified modutils.
|
||||||
|
|
||||||
@ -40,14 +40,14 @@ config MODPROBE_SMALL
|
|||||||
|
|
||||||
config FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE
|
config FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE
|
||||||
bool "Accept module options on modprobe command line"
|
bool "Accept module options on modprobe command line"
|
||||||
default n
|
default y
|
||||||
depends on MODPROBE_SMALL
|
depends on MODPROBE_SMALL
|
||||||
help
|
help
|
||||||
Allow insmod and modprobe take module options from command line.
|
Allow insmod and modprobe take module options from command line.
|
||||||
|
|
||||||
config FEATURE_MODPROBE_SMALL_CHECK_ALREADY_LOADED
|
config FEATURE_MODPROBE_SMALL_CHECK_ALREADY_LOADED
|
||||||
bool "Skip loading of already loaded modules"
|
bool "Skip loading of already loaded modules"
|
||||||
default n
|
default y
|
||||||
depends on MODPROBE_SMALL
|
depends on MODPROBE_SMALL
|
||||||
help
|
help
|
||||||
Check if the module is already loaded.
|
Check if the module is already loaded.
|
||||||
|
@ -7,7 +7,7 @@ menu "Networking Utilities"
|
|||||||
|
|
||||||
config FEATURE_IPV6
|
config FEATURE_IPV6
|
||||||
bool "Enable IPv6 support"
|
bool "Enable IPv6 support"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Enable IPv6 support in busybox.
|
Enable IPv6 support in busybox.
|
||||||
This adds IPv6 support in the networking applets.
|
This adds IPv6 support in the networking applets.
|
||||||
@ -48,26 +48,26 @@ config VERBOSE_RESOLUTION_ERRORS
|
|||||||
|
|
||||||
config ARP
|
config ARP
|
||||||
bool "arp"
|
bool "arp"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Manipulate the system ARP cache.
|
Manipulate the system ARP cache.
|
||||||
|
|
||||||
config ARPING
|
config ARPING
|
||||||
bool "arping"
|
bool "arping"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Ping hosts by ARP packets.
|
Ping hosts by ARP packets.
|
||||||
|
|
||||||
config BRCTL
|
config BRCTL
|
||||||
bool "brctl"
|
bool "brctl"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Manage ethernet bridges.
|
Manage ethernet bridges.
|
||||||
Supports addbr/delbr and addif/delif.
|
Supports addbr/delbr and addif/delif.
|
||||||
|
|
||||||
config FEATURE_BRCTL_FANCY
|
config FEATURE_BRCTL_FANCY
|
||||||
bool "Fancy options"
|
bool "Fancy options"
|
||||||
default n
|
default y
|
||||||
depends on BRCTL
|
depends on BRCTL
|
||||||
help
|
help
|
||||||
Add support for extended option like:
|
Add support for extended option like:
|
||||||
@ -78,7 +78,7 @@ config FEATURE_BRCTL_FANCY
|
|||||||
|
|
||||||
config FEATURE_BRCTL_SHOW
|
config FEATURE_BRCTL_SHOW
|
||||||
bool "Support show, showmac and showstp"
|
bool "Support show, showmac and showstp"
|
||||||
default n
|
default y
|
||||||
depends on BRCTL && FEATURE_BRCTL_FANCY
|
depends on BRCTL && FEATURE_BRCTL_FANCY
|
||||||
help
|
help
|
||||||
Add support for option which prints the current config:
|
Add support for option which prints the current config:
|
||||||
@ -86,19 +86,19 @@ config FEATURE_BRCTL_SHOW
|
|||||||
|
|
||||||
config DNSD
|
config DNSD
|
||||||
bool "dnsd"
|
bool "dnsd"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Small and static DNS server daemon.
|
Small and static DNS server daemon.
|
||||||
|
|
||||||
config ETHER_WAKE
|
config ETHER_WAKE
|
||||||
bool "ether-wake"
|
bool "ether-wake"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Send a magic packet to wake up sleeping machines.
|
Send a magic packet to wake up sleeping machines.
|
||||||
|
|
||||||
config FAKEIDENTD
|
config FAKEIDENTD
|
||||||
bool "fakeidentd"
|
bool "fakeidentd"
|
||||||
default n
|
default y
|
||||||
select FEATURE_SYSLOG
|
select FEATURE_SYSLOG
|
||||||
help
|
help
|
||||||
fakeidentd listens on the ident port and returns a predefined
|
fakeidentd listens on the ident port and returns a predefined
|
||||||
@ -106,7 +106,7 @@ config FAKEIDENTD
|
|||||||
|
|
||||||
config FTPD
|
config FTPD
|
||||||
bool "ftpd"
|
bool "ftpd"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
simple FTP daemon. You have to run it via inetd.
|
simple FTP daemon. You have to run it via inetd.
|
||||||
|
|
||||||
@ -130,38 +130,38 @@ config FEATURE_FTPD_ACCEPT_BROKEN_LIST
|
|||||||
|
|
||||||
config FTPGET
|
config FTPGET
|
||||||
bool "ftpget"
|
bool "ftpget"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Retrieve a remote file via FTP.
|
Retrieve a remote file via FTP.
|
||||||
|
|
||||||
config FTPPUT
|
config FTPPUT
|
||||||
bool "ftpput"
|
bool "ftpput"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Store a remote file via FTP.
|
Store a remote file via FTP.
|
||||||
|
|
||||||
config FEATURE_FTPGETPUT_LONG_OPTIONS
|
config FEATURE_FTPGETPUT_LONG_OPTIONS
|
||||||
bool "Enable long options in ftpget/ftpput"
|
bool "Enable long options in ftpget/ftpput"
|
||||||
default n
|
default y
|
||||||
depends on LONG_OPTS && (FTPGET || FTPPUT)
|
depends on LONG_OPTS && (FTPGET || FTPPUT)
|
||||||
help
|
help
|
||||||
Support long options for the ftpget/ftpput applet.
|
Support long options for the ftpget/ftpput applet.
|
||||||
|
|
||||||
config HOSTNAME
|
config HOSTNAME
|
||||||
bool "hostname"
|
bool "hostname"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Show or set the system's host name.
|
Show or set the system's host name.
|
||||||
|
|
||||||
config HTTPD
|
config HTTPD
|
||||||
bool "httpd"
|
bool "httpd"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Serve web pages via an HTTP server.
|
Serve web pages via an HTTP server.
|
||||||
|
|
||||||
config FEATURE_HTTPD_RANGES
|
config FEATURE_HTTPD_RANGES
|
||||||
bool "Support 'Ranges:' header"
|
bool "Support 'Ranges:' header"
|
||||||
default n
|
default y
|
||||||
depends on HTTPD
|
depends on HTTPD
|
||||||
help
|
help
|
||||||
Makes httpd emit "Accept-Ranges: bytes" header and understand
|
Makes httpd emit "Accept-Ranges: bytes" header and understand
|
||||||
@ -170,7 +170,7 @@ config FEATURE_HTTPD_RANGES
|
|||||||
|
|
||||||
config FEATURE_HTTPD_USE_SENDFILE
|
config FEATURE_HTTPD_USE_SENDFILE
|
||||||
bool "Use sendfile system call"
|
bool "Use sendfile system call"
|
||||||
default n
|
default y
|
||||||
depends on HTTPD
|
depends on HTTPD
|
||||||
help
|
help
|
||||||
When enabled, httpd will use the kernel sendfile() function
|
When enabled, httpd will use the kernel sendfile() function
|
||||||
@ -178,7 +178,7 @@ config FEATURE_HTTPD_USE_SENDFILE
|
|||||||
|
|
||||||
config FEATURE_HTTPD_SETUID
|
config FEATURE_HTTPD_SETUID
|
||||||
bool "Enable -u <user> option"
|
bool "Enable -u <user> option"
|
||||||
default n
|
default y
|
||||||
depends on HTTPD
|
depends on HTTPD
|
||||||
help
|
help
|
||||||
This option allows the server to run as a specific user
|
This option allows the server to run as a specific user
|
||||||
@ -196,7 +196,7 @@ config FEATURE_HTTPD_BASIC_AUTH
|
|||||||
|
|
||||||
config FEATURE_HTTPD_AUTH_MD5
|
config FEATURE_HTTPD_AUTH_MD5
|
||||||
bool "Support MD5 crypted passwords for http Authentication"
|
bool "Support MD5 crypted passwords for http Authentication"
|
||||||
default n
|
default y
|
||||||
depends on FEATURE_HTTPD_BASIC_AUTH
|
depends on FEATURE_HTTPD_BASIC_AUTH
|
||||||
help
|
help
|
||||||
Enables basic per URL authentication from /etc/httpd.conf
|
Enables basic per URL authentication from /etc/httpd.conf
|
||||||
@ -212,7 +212,7 @@ config FEATURE_HTTPD_CGI
|
|||||||
|
|
||||||
config FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
|
config FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
|
||||||
bool "Support for running scripts through an interpreter"
|
bool "Support for running scripts through an interpreter"
|
||||||
default n
|
default y
|
||||||
depends on FEATURE_HTTPD_CGI
|
depends on FEATURE_HTTPD_CGI
|
||||||
help
|
help
|
||||||
This option enables support for running scripts through an
|
This option enables support for running scripts through an
|
||||||
@ -223,7 +223,7 @@ config FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
|
|||||||
|
|
||||||
config FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
|
config FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
|
||||||
bool "Set REMOTE_PORT environment variable for CGI"
|
bool "Set REMOTE_PORT environment variable for CGI"
|
||||||
default n
|
default y
|
||||||
depends on FEATURE_HTTPD_CGI
|
depends on FEATURE_HTTPD_CGI
|
||||||
help
|
help
|
||||||
Use of this option can assist scripts in generating
|
Use of this option can assist scripts in generating
|
||||||
@ -241,7 +241,7 @@ config FEATURE_HTTPD_ENCODE_URL_STR
|
|||||||
|
|
||||||
config FEATURE_HTTPD_ERROR_PAGES
|
config FEATURE_HTTPD_ERROR_PAGES
|
||||||
bool "Support for custom error pages"
|
bool "Support for custom error pages"
|
||||||
default n
|
default y
|
||||||
depends on HTTPD
|
depends on HTTPD
|
||||||
help
|
help
|
||||||
This option allows you to define custom error pages in
|
This option allows you to define custom error pages in
|
||||||
@ -254,7 +254,7 @@ config FEATURE_HTTPD_ERROR_PAGES
|
|||||||
|
|
||||||
config FEATURE_HTTPD_PROXY
|
config FEATURE_HTTPD_PROXY
|
||||||
bool "Support for reverse proxy"
|
bool "Support for reverse proxy"
|
||||||
default n
|
default y
|
||||||
depends on HTTPD
|
depends on HTTPD
|
||||||
help
|
help
|
||||||
This option allows you to define URLs that will be forwarded
|
This option allows you to define URLs that will be forwarded
|
||||||
@ -266,7 +266,7 @@ config FEATURE_HTTPD_PROXY
|
|||||||
|
|
||||||
config IFCONFIG
|
config IFCONFIG
|
||||||
bool "ifconfig"
|
bool "ifconfig"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Ifconfig is used to configure the kernel-resident network interfaces.
|
Ifconfig is used to configure the kernel-resident network interfaces.
|
||||||
|
|
||||||
@ -280,7 +280,7 @@ config FEATURE_IFCONFIG_STATUS
|
|||||||
|
|
||||||
config FEATURE_IFCONFIG_SLIP
|
config FEATURE_IFCONFIG_SLIP
|
||||||
bool "Enable slip-specific options \"keepalive\" and \"outfill\""
|
bool "Enable slip-specific options \"keepalive\" and \"outfill\""
|
||||||
default n
|
default y
|
||||||
depends on IFCONFIG
|
depends on IFCONFIG
|
||||||
help
|
help
|
||||||
Allow "keepalive" and "outfill" support for SLIP. If you're not
|
Allow "keepalive" and "outfill" support for SLIP. If you're not
|
||||||
@ -288,7 +288,7 @@ config FEATURE_IFCONFIG_SLIP
|
|||||||
|
|
||||||
config FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
|
config FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
|
||||||
bool "Enable options \"mem_start\", \"io_addr\", and \"irq\""
|
bool "Enable options \"mem_start\", \"io_addr\", and \"irq\""
|
||||||
default n
|
default y
|
||||||
depends on IFCONFIG
|
depends on IFCONFIG
|
||||||
help
|
help
|
||||||
Allow the start address for shared memory, start address for I/O,
|
Allow the start address for shared memory, start address for I/O,
|
||||||
@ -305,7 +305,7 @@ config FEATURE_IFCONFIG_HW
|
|||||||
|
|
||||||
config FEATURE_IFCONFIG_BROADCAST_PLUS
|
config FEATURE_IFCONFIG_BROADCAST_PLUS
|
||||||
bool "Set the broadcast automatically"
|
bool "Set the broadcast automatically"
|
||||||
default n
|
default y
|
||||||
depends on IFCONFIG
|
depends on IFCONFIG
|
||||||
help
|
help
|
||||||
Setting this will make ifconfig attempt to find the broadcast
|
Setting this will make ifconfig attempt to find the broadcast
|
||||||
@ -313,20 +313,20 @@ config FEATURE_IFCONFIG_BROADCAST_PLUS
|
|||||||
|
|
||||||
config IFENSLAVE
|
config IFENSLAVE
|
||||||
bool "ifenslave"
|
bool "ifenslave"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Userspace application to bind several interfaces
|
Userspace application to bind several interfaces
|
||||||
to a logical interface (use with kernel bonding driver).
|
to a logical interface (use with kernel bonding driver).
|
||||||
|
|
||||||
config IFPLUGD
|
config IFPLUGD
|
||||||
bool "ifplugd"
|
bool "ifplugd"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Network interface plug detection daemon.
|
Network interface plug detection daemon.
|
||||||
|
|
||||||
config IFUPDOWN
|
config IFUPDOWN
|
||||||
bool "ifupdown"
|
bool "ifupdown"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Activate or deactivate the specified interfaces. This applet makes
|
Activate or deactivate the specified interfaces. This applet makes
|
||||||
use of either "ifconfig" and "route" or the "ip" command to actually
|
use of either "ifconfig" and "route" or the "ip" command to actually
|
||||||
@ -353,7 +353,7 @@ config IFUPDOWN_IFSTATE_PATH
|
|||||||
|
|
||||||
config FEATURE_IFUPDOWN_IP
|
config FEATURE_IFUPDOWN_IP
|
||||||
bool "Use ip applet"
|
bool "Use ip applet"
|
||||||
default n
|
default y
|
||||||
depends on IFUPDOWN
|
depends on IFUPDOWN
|
||||||
help
|
help
|
||||||
Use the iproute "ip" command to implement "ifup" and "ifdown", rather
|
Use the iproute "ip" command to implement "ifup" and "ifdown", rather
|
||||||
@ -375,7 +375,7 @@ config FEATURE_IFUPDOWN_IP_BUILTIN
|
|||||||
|
|
||||||
config FEATURE_IFUPDOWN_IFCONFIG_BUILTIN
|
config FEATURE_IFUPDOWN_IFCONFIG_BUILTIN
|
||||||
bool "Use busybox ifconfig and route applets"
|
bool "Use busybox ifconfig and route applets"
|
||||||
default y
|
default n
|
||||||
depends on IFUPDOWN && !FEATURE_IFUPDOWN_IP
|
depends on IFUPDOWN && !FEATURE_IFUPDOWN_IP
|
||||||
select IFCONFIG
|
select IFCONFIG
|
||||||
select ROUTE
|
select ROUTE
|
||||||
@ -396,7 +396,7 @@ config FEATURE_IFUPDOWN_IPV4
|
|||||||
|
|
||||||
config FEATURE_IFUPDOWN_IPV6
|
config FEATURE_IFUPDOWN_IPV6
|
||||||
bool "Support for IPv6"
|
bool "Support for IPv6"
|
||||||
default n
|
default y
|
||||||
depends on IFUPDOWN && FEATURE_IPV6
|
depends on IFUPDOWN && FEATURE_IPV6
|
||||||
help
|
help
|
||||||
If you need support for IPv6, turn this option on.
|
If you need support for IPv6, turn this option on.
|
||||||
@ -404,7 +404,7 @@ config FEATURE_IFUPDOWN_IPV6
|
|||||||
### UNUSED
|
### UNUSED
|
||||||
###config FEATURE_IFUPDOWN_IPX
|
###config FEATURE_IFUPDOWN_IPX
|
||||||
### bool "Support for IPX"
|
### bool "Support for IPX"
|
||||||
### default n
|
### default y
|
||||||
### depends on IFUPDOWN
|
### depends on IFUPDOWN
|
||||||
### help
|
### help
|
||||||
### If this option is selected you can use busybox to work with IPX
|
### If this option is selected you can use busybox to work with IPX
|
||||||
@ -412,7 +412,7 @@ config FEATURE_IFUPDOWN_IPV6
|
|||||||
|
|
||||||
config FEATURE_IFUPDOWN_MAPPING
|
config FEATURE_IFUPDOWN_MAPPING
|
||||||
bool "Enable mapping support"
|
bool "Enable mapping support"
|
||||||
default n
|
default y
|
||||||
depends on IFUPDOWN
|
depends on IFUPDOWN
|
||||||
help
|
help
|
||||||
This enables support for the "mapping" stanza, unless you have
|
This enables support for the "mapping" stanza, unless you have
|
||||||
@ -430,7 +430,7 @@ config FEATURE_IFUPDOWN_EXTERNAL_DHCP
|
|||||||
|
|
||||||
config INETD
|
config INETD
|
||||||
bool "inetd"
|
bool "inetd"
|
||||||
default n
|
default y
|
||||||
select FEATURE_SYSLOG
|
select FEATURE_SYSLOG
|
||||||
help
|
help
|
||||||
Internet superserver daemon
|
Internet superserver daemon
|
||||||
@ -472,7 +472,7 @@ config FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
|
|||||||
|
|
||||||
config FEATURE_INETD_RPC
|
config FEATURE_INETD_RPC
|
||||||
bool "Support RPC services"
|
bool "Support RPC services"
|
||||||
default n
|
default y
|
||||||
depends on INETD
|
depends on INETD
|
||||||
select FEATURE_HAVE_RPC
|
select FEATURE_HAVE_RPC
|
||||||
help
|
help
|
||||||
@ -480,7 +480,7 @@ config FEATURE_INETD_RPC
|
|||||||
|
|
||||||
config IP
|
config IP
|
||||||
bool "ip"
|
bool "ip"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
The "ip" applet is a TCP/IP interface configuration and routing
|
The "ip" applet is a TCP/IP interface configuration and routing
|
||||||
utility. You generally don't need "ip" to use busybox with
|
utility. You generally don't need "ip" to use busybox with
|
||||||
@ -509,21 +509,21 @@ config FEATURE_IP_ROUTE
|
|||||||
|
|
||||||
config FEATURE_IP_TUNNEL
|
config FEATURE_IP_TUNNEL
|
||||||
bool "ip tunnel"
|
bool "ip tunnel"
|
||||||
default n
|
default y
|
||||||
depends on IP
|
depends on IP
|
||||||
help
|
help
|
||||||
Add support for tunneling commands to "ip".
|
Add support for tunneling commands to "ip".
|
||||||
|
|
||||||
config FEATURE_IP_RULE
|
config FEATURE_IP_RULE
|
||||||
bool "ip rule"
|
bool "ip rule"
|
||||||
default n
|
default y
|
||||||
depends on IP
|
depends on IP
|
||||||
help
|
help
|
||||||
Add support for rule commands to "ip".
|
Add support for rule commands to "ip".
|
||||||
|
|
||||||
config FEATURE_IP_SHORT_FORMS
|
config FEATURE_IP_SHORT_FORMS
|
||||||
bool "Support short forms of ip commands"
|
bool "Support short forms of ip commands"
|
||||||
default n
|
default y
|
||||||
depends on IP
|
depends on IP
|
||||||
help
|
help
|
||||||
Also support short-form of ip <OBJECT> commands:
|
Also support short-form of ip <OBJECT> commands:
|
||||||
@ -573,7 +573,7 @@ config IPRULE
|
|||||||
|
|
||||||
config IPCALC
|
config IPCALC
|
||||||
bool "ipcalc"
|
bool "ipcalc"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
ipcalc takes an IP address and netmask and calculates the
|
ipcalc takes an IP address and netmask and calculates the
|
||||||
resulting broadcast, network, and host range.
|
resulting broadcast, network, and host range.
|
||||||
@ -588,14 +588,14 @@ config FEATURE_IPCALC_FANCY
|
|||||||
|
|
||||||
config FEATURE_IPCALC_LONG_OPTIONS
|
config FEATURE_IPCALC_LONG_OPTIONS
|
||||||
bool "Enable long options"
|
bool "Enable long options"
|
||||||
default n
|
default y
|
||||||
depends on IPCALC && LONG_OPTS
|
depends on IPCALC && LONG_OPTS
|
||||||
help
|
help
|
||||||
Support long options for the ipcalc applet.
|
Support long options for the ipcalc applet.
|
||||||
|
|
||||||
config NAMEIF
|
config NAMEIF
|
||||||
bool "nameif"
|
bool "nameif"
|
||||||
default n
|
default y
|
||||||
select FEATURE_SYSLOG
|
select FEATURE_SYSLOG
|
||||||
help
|
help
|
||||||
nameif is used to rename network interface by its MAC address.
|
nameif is used to rename network interface by its MAC address.
|
||||||
@ -610,7 +610,7 @@ config NAMEIF
|
|||||||
|
|
||||||
config FEATURE_NAMEIF_EXTENDED
|
config FEATURE_NAMEIF_EXTENDED
|
||||||
bool "Extended nameif"
|
bool "Extended nameif"
|
||||||
default n
|
default y
|
||||||
depends on NAMEIF
|
depends on NAMEIF
|
||||||
help
|
help
|
||||||
This extends the nameif syntax to support the bus_info and driver
|
This extends the nameif syntax to support the bus_info and driver
|
||||||
@ -623,21 +623,21 @@ config FEATURE_NAMEIF_EXTENDED
|
|||||||
|
|
||||||
config NC
|
config NC
|
||||||
bool "nc"
|
bool "nc"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
A simple Unix utility which reads and writes data across network
|
A simple Unix utility which reads and writes data across network
|
||||||
connections.
|
connections.
|
||||||
|
|
||||||
config NC_SERVER
|
config NC_SERVER
|
||||||
bool "Netcat server options (-l)"
|
bool "Netcat server options (-l)"
|
||||||
default n
|
default y
|
||||||
depends on NC
|
depends on NC
|
||||||
help
|
help
|
||||||
Allow netcat to act as a server.
|
Allow netcat to act as a server.
|
||||||
|
|
||||||
config NC_EXTRA
|
config NC_EXTRA
|
||||||
bool "Netcat extensions (-eiw and filename)"
|
bool "Netcat extensions (-eiw and filename)"
|
||||||
default n
|
default y
|
||||||
depends on NC
|
depends on NC
|
||||||
help
|
help
|
||||||
Add -e (support for executing the rest of the command line after
|
Add -e (support for executing the rest of the command line after
|
||||||
@ -646,13 +646,13 @@ config NC_EXTRA
|
|||||||
|
|
||||||
config NETSTAT
|
config NETSTAT
|
||||||
bool "netstat"
|
bool "netstat"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
netstat prints information about the Linux networking subsystem.
|
netstat prints information about the Linux networking subsystem.
|
||||||
|
|
||||||
config FEATURE_NETSTAT_WIDE
|
config FEATURE_NETSTAT_WIDE
|
||||||
bool "Enable wide netstat output"
|
bool "Enable wide netstat output"
|
||||||
default n
|
default y
|
||||||
depends on NETSTAT
|
depends on NETSTAT
|
||||||
help
|
help
|
||||||
Add support for wide columns. Useful when displaying IPv6 addresses
|
Add support for wide columns. Useful when displaying IPv6 addresses
|
||||||
@ -660,7 +660,7 @@ config FEATURE_NETSTAT_WIDE
|
|||||||
|
|
||||||
config FEATURE_NETSTAT_PRG
|
config FEATURE_NETSTAT_PRG
|
||||||
bool "Enable PID/Program name output"
|
bool "Enable PID/Program name output"
|
||||||
default n
|
default y
|
||||||
depends on NETSTAT
|
depends on NETSTAT
|
||||||
help
|
help
|
||||||
Add support for -p flag to print out PID and program name.
|
Add support for -p flag to print out PID and program name.
|
||||||
@ -668,13 +668,13 @@ config FEATURE_NETSTAT_PRG
|
|||||||
|
|
||||||
config NSLOOKUP
|
config NSLOOKUP
|
||||||
bool "nslookup"
|
bool "nslookup"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
nslookup is a tool to query Internet name servers.
|
nslookup is a tool to query Internet name servers.
|
||||||
|
|
||||||
config NTPD
|
config NTPD
|
||||||
bool "ntpd"
|
bool "ntpd"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
The NTP client/server daemon.
|
The NTP client/server daemon.
|
||||||
|
|
||||||
@ -688,14 +688,14 @@ config FEATURE_NTPD_SERVER
|
|||||||
|
|
||||||
config PING
|
config PING
|
||||||
bool "ping"
|
bool "ping"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to
|
ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to
|
||||||
elicit an ICMP ECHO_RESPONSE from a host or gateway.
|
elicit an ICMP ECHO_RESPONSE from a host or gateway.
|
||||||
|
|
||||||
config PING6
|
config PING6
|
||||||
bool "ping6"
|
bool "ping6"
|
||||||
default n
|
default y
|
||||||
depends on FEATURE_IPV6 && PING
|
depends on FEATURE_IPV6 && PING
|
||||||
help
|
help
|
||||||
This will give you a ping that can talk IPv6.
|
This will give you a ping that can talk IPv6.
|
||||||
@ -710,26 +710,26 @@ config FEATURE_FANCY_PING
|
|||||||
|
|
||||||
config PSCAN
|
config PSCAN
|
||||||
bool "pscan"
|
bool "pscan"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Simple network port scanner.
|
Simple network port scanner.
|
||||||
|
|
||||||
config ROUTE
|
config ROUTE
|
||||||
bool "route"
|
bool "route"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Route displays or manipulates the kernel's IP routing tables.
|
Route displays or manipulates the kernel's IP routing tables.
|
||||||
|
|
||||||
config SLATTACH
|
config SLATTACH
|
||||||
bool "slattach"
|
bool "slattach"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
slattach is a small utility to attach network interfaces to serial
|
slattach is a small utility to attach network interfaces to serial
|
||||||
lines.
|
lines.
|
||||||
|
|
||||||
#config TC
|
#config TC
|
||||||
# bool "tc"
|
# bool "tc"
|
||||||
# default n
|
# default y
|
||||||
# help
|
# help
|
||||||
# show / manipulate traffic control settings
|
# show / manipulate traffic control settings
|
||||||
#
|
#
|
||||||
@ -739,14 +739,14 @@ config SLATTACH
|
|||||||
|
|
||||||
config TCPSVD
|
config TCPSVD
|
||||||
bool "tcpsvd"
|
bool "tcpsvd"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
tcpsvd listens on a TCP port and runs a program for each new
|
tcpsvd listens on a TCP port and runs a program for each new
|
||||||
connection.
|
connection.
|
||||||
|
|
||||||
config TELNET
|
config TELNET
|
||||||
bool "telnet"
|
bool "telnet"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Telnet is an interface to the TELNET protocol, but is also commonly
|
Telnet is an interface to the TELNET protocol, but is also commonly
|
||||||
used to test other simple protocols.
|
used to test other simple protocols.
|
||||||
@ -772,7 +772,7 @@ config FEATURE_TELNET_AUTOLOGIN
|
|||||||
|
|
||||||
config TELNETD
|
config TELNETD
|
||||||
bool "telnetd"
|
bool "telnetd"
|
||||||
default n
|
default y
|
||||||
select FEATURE_SYSLOG
|
select FEATURE_SYSLOG
|
||||||
help
|
help
|
||||||
A daemon for the TELNET protocol, allowing you to log onto the host
|
A daemon for the TELNET protocol, allowing you to log onto the host
|
||||||
@ -815,14 +815,14 @@ config TELNETD
|
|||||||
|
|
||||||
config FEATURE_TELNETD_STANDALONE
|
config FEATURE_TELNETD_STANDALONE
|
||||||
bool "Support standalone telnetd (not inetd only)"
|
bool "Support standalone telnetd (not inetd only)"
|
||||||
default n
|
default y
|
||||||
depends on TELNETD
|
depends on TELNETD
|
||||||
help
|
help
|
||||||
Selecting this will make telnetd able to run standalone.
|
Selecting this will make telnetd able to run standalone.
|
||||||
|
|
||||||
config FEATURE_TELNETD_INETD_WAIT
|
config FEATURE_TELNETD_INETD_WAIT
|
||||||
bool "Support -w SEC option (inetd wait mode)"
|
bool "Support -w SEC option (inetd wait mode)"
|
||||||
default n
|
default y
|
||||||
depends on FEATURE_TELNETD_STANDALONE
|
depends on FEATURE_TELNETD_STANDALONE
|
||||||
help
|
help
|
||||||
This option allows you to run telnetd in "inet wait" mode.
|
This option allows you to run telnetd in "inet wait" mode.
|
||||||
@ -843,7 +843,7 @@ config FEATURE_TELNETD_INETD_WAIT
|
|||||||
|
|
||||||
config TFTP
|
config TFTP
|
||||||
bool "tftp"
|
bool "tftp"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
This enables the Trivial File Transfer Protocol client program. TFTP
|
This enables the Trivial File Transfer Protocol client program. TFTP
|
||||||
is usually used for simple, small transfers such as a root image
|
is usually used for simple, small transfers such as a root image
|
||||||
@ -851,7 +851,7 @@ config TFTP
|
|||||||
|
|
||||||
config TFTPD
|
config TFTPD
|
||||||
bool "tftpd"
|
bool "tftpd"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
This enables the Trivial File Transfer Protocol server program.
|
This enables the Trivial File Transfer Protocol server program.
|
||||||
It expects that stdin is a datagram socket and a packet
|
It expects that stdin is a datagram socket and a packet
|
||||||
@ -882,7 +882,7 @@ config FEATURE_TFTP_PUT
|
|||||||
|
|
||||||
config FEATURE_TFTP_BLOCKSIZE
|
config FEATURE_TFTP_BLOCKSIZE
|
||||||
bool "Enable 'blksize' and 'tsize' protocol options"
|
bool "Enable 'blksize' and 'tsize' protocol options"
|
||||||
default n
|
default y
|
||||||
depends on TFTP || TFTPD
|
depends on TFTP || TFTPD
|
||||||
help
|
help
|
||||||
Allow tftp to specify block size, and tftpd to understand
|
Allow tftp to specify block size, and tftpd to understand
|
||||||
@ -890,7 +890,7 @@ config FEATURE_TFTP_BLOCKSIZE
|
|||||||
|
|
||||||
config FEATURE_TFTP_PROGRESS_BAR
|
config FEATURE_TFTP_PROGRESS_BAR
|
||||||
bool "Enable tftp progress meter"
|
bool "Enable tftp progress meter"
|
||||||
default n
|
default y
|
||||||
depends on TFTP && FEATURE_TFTP_BLOCKSIZE
|
depends on TFTP && FEATURE_TFTP_BLOCKSIZE
|
||||||
help
|
help
|
||||||
Show progress bar.
|
Show progress bar.
|
||||||
@ -905,20 +905,20 @@ config TFTP_DEBUG
|
|||||||
|
|
||||||
config TRACEROUTE
|
config TRACEROUTE
|
||||||
bool "traceroute"
|
bool "traceroute"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Utility to trace the route of IP packets.
|
Utility to trace the route of IP packets.
|
||||||
|
|
||||||
config TRACEROUTE6
|
config TRACEROUTE6
|
||||||
bool "traceroute6"
|
bool "traceroute6"
|
||||||
default n
|
default y
|
||||||
depends on FEATURE_IPV6 && TRACEROUTE
|
depends on FEATURE_IPV6 && TRACEROUTE
|
||||||
help
|
help
|
||||||
Utility to trace the route of IPv6 packets.
|
Utility to trace the route of IPv6 packets.
|
||||||
|
|
||||||
config FEATURE_TRACEROUTE_VERBOSE
|
config FEATURE_TRACEROUTE_VERBOSE
|
||||||
bool "Enable verbose output"
|
bool "Enable verbose output"
|
||||||
default n
|
default y
|
||||||
depends on TRACEROUTE
|
depends on TRACEROUTE
|
||||||
help
|
help
|
||||||
Add some verbosity to traceroute. This includes among other things
|
Add some verbosity to traceroute. This includes among other things
|
||||||
@ -941,13 +941,13 @@ config FEATURE_TRACEROUTE_USE_ICMP
|
|||||||
|
|
||||||
config TUNCTL
|
config TUNCTL
|
||||||
bool "tunctl"
|
bool "tunctl"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
tunctl creates or deletes tun devices.
|
tunctl creates or deletes tun devices.
|
||||||
|
|
||||||
config FEATURE_TUNCTL_UG
|
config FEATURE_TUNCTL_UG
|
||||||
bool "Support owner:group assignment"
|
bool "Support owner:group assignment"
|
||||||
default n
|
default y
|
||||||
depends on TUNCTL
|
depends on TUNCTL
|
||||||
help
|
help
|
||||||
Allow to specify owner and group of newly created interface.
|
Allow to specify owner and group of newly created interface.
|
||||||
@ -966,20 +966,20 @@ config IFUPDOWN_UDHCPC_CMD_OPTIONS
|
|||||||
|
|
||||||
config UDPSVD
|
config UDPSVD
|
||||||
bool "udpsvd"
|
bool "udpsvd"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
udpsvd listens on an UDP port and runs a program for each new
|
udpsvd listens on an UDP port and runs a program for each new
|
||||||
connection.
|
connection.
|
||||||
|
|
||||||
config VCONFIG
|
config VCONFIG
|
||||||
bool "vconfig"
|
bool "vconfig"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Creates, removes, and configures VLAN interfaces
|
Creates, removes, and configures VLAN interfaces
|
||||||
|
|
||||||
config WGET
|
config WGET
|
||||||
bool "wget"
|
bool "wget"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
wget is a utility for non-interactive download of files from HTTP,
|
wget is a utility for non-interactive download of files from HTTP,
|
||||||
HTTPS, and FTP servers.
|
HTTPS, and FTP servers.
|
||||||
@ -1000,14 +1000,14 @@ config FEATURE_WGET_AUTHENTICATION
|
|||||||
|
|
||||||
config FEATURE_WGET_LONG_OPTIONS
|
config FEATURE_WGET_LONG_OPTIONS
|
||||||
bool "Enable long options"
|
bool "Enable long options"
|
||||||
default n
|
default y
|
||||||
depends on WGET && LONG_OPTS
|
depends on WGET && LONG_OPTS
|
||||||
help
|
help
|
||||||
Support long options for the wget applet.
|
Support long options for the wget applet.
|
||||||
|
|
||||||
config ZCIP
|
config ZCIP
|
||||||
bool "zcip"
|
bool "zcip"
|
||||||
default n
|
default y
|
||||||
select FEATURE_SYSLOG
|
select FEATURE_SYSLOG
|
||||||
help
|
help
|
||||||
ZCIP provides ZeroConf IPv4 address selection, according to RFC 3927.
|
ZCIP provides ZeroConf IPv4 address selection, according to RFC 3927.
|
||||||
|
@ -5,14 +5,14 @@
|
|||||||
|
|
||||||
config UDHCPD
|
config UDHCPD
|
||||||
bool "udhcp server (udhcpd)"
|
bool "udhcp server (udhcpd)"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
udhcpd is a DHCP server geared primarily toward embedded systems,
|
udhcpd is a DHCP server geared primarily toward embedded systems,
|
||||||
while striving to be fully functional and RFC compliant.
|
while striving to be fully functional and RFC compliant.
|
||||||
|
|
||||||
config DHCPRELAY
|
config DHCPRELAY
|
||||||
bool "dhcprelay"
|
bool "dhcprelay"
|
||||||
default n
|
default y
|
||||||
depends on UDHCPD
|
depends on UDHCPD
|
||||||
help
|
help
|
||||||
dhcprelay listens for dhcp requests on one or more interfaces
|
dhcprelay listens for dhcp requests on one or more interfaces
|
||||||
@ -21,7 +21,7 @@ config DHCPRELAY
|
|||||||
|
|
||||||
config DUMPLEASES
|
config DUMPLEASES
|
||||||
bool "Lease display utility (dumpleases)"
|
bool "Lease display utility (dumpleases)"
|
||||||
default n
|
default y
|
||||||
depends on UDHCPD
|
depends on UDHCPD
|
||||||
help
|
help
|
||||||
dumpleases displays the leases written out by the udhcpd server.
|
dumpleases displays the leases written out by the udhcpd server.
|
||||||
@ -30,7 +30,7 @@ config DUMPLEASES
|
|||||||
|
|
||||||
config FEATURE_UDHCPD_WRITE_LEASES_EARLY
|
config FEATURE_UDHCPD_WRITE_LEASES_EARLY
|
||||||
bool "Rewrite the lease file at every new acknowledge"
|
bool "Rewrite the lease file at every new acknowledge"
|
||||||
default n
|
default y
|
||||||
depends on UDHCPD
|
depends on UDHCPD
|
||||||
help
|
help
|
||||||
If selected, udhcpd will write a new file with leases every
|
If selected, udhcpd will write a new file with leases every
|
||||||
@ -48,7 +48,7 @@ config DHCPD_LEASES_FILE
|
|||||||
|
|
||||||
config UDHCPC
|
config UDHCPC
|
||||||
bool "udhcp client (udhcpc)"
|
bool "udhcp client (udhcpc)"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
udhcpc is a DHCP client geared primarily toward embedded systems,
|
udhcpc is a DHCP client geared primarily toward embedded systems,
|
||||||
while striving to be fully functional and RFC compliant.
|
while striving to be fully functional and RFC compliant.
|
||||||
@ -68,7 +68,7 @@ config FEATURE_UDHCPC_ARPING
|
|||||||
|
|
||||||
config FEATURE_UDHCP_PORT
|
config FEATURE_UDHCP_PORT
|
||||||
bool "Enable '-P port' option for udhcpd and udhcpc"
|
bool "Enable '-P port' option for udhcpd and udhcpc"
|
||||||
default n
|
default y
|
||||||
depends on UDHCPD || UDHCPC
|
depends on UDHCPD || UDHCPC
|
||||||
help
|
help
|
||||||
At the cost of ~300 bytes, enables -P port option.
|
At the cost of ~300 bytes, enables -P port option.
|
||||||
@ -76,7 +76,7 @@ config FEATURE_UDHCP_PORT
|
|||||||
|
|
||||||
config UDHCP_DEBUG
|
config UDHCP_DEBUG
|
||||||
int "Maximum verbosity level for udhcp applets (0..9)"
|
int "Maximum verbosity level for udhcp applets (0..9)"
|
||||||
default 0
|
default 9
|
||||||
range 0 9
|
range 0 9
|
||||||
depends on UDHCPD || UDHCPC || DHCPRELAY
|
depends on UDHCPD || UDHCPC || DHCPRELAY
|
||||||
help
|
help
|
||||||
@ -88,7 +88,7 @@ config UDHCP_DEBUG
|
|||||||
|
|
||||||
config FEATURE_UDHCP_RFC3397
|
config FEATURE_UDHCP_RFC3397
|
||||||
bool "Support for RFC3397 domain search (experimental)"
|
bool "Support for RFC3397 domain search (experimental)"
|
||||||
default n
|
default y
|
||||||
depends on UDHCPD || UDHCPC
|
depends on UDHCPD || UDHCPC
|
||||||
help
|
help
|
||||||
If selected, both client and server will support passing of domain
|
If selected, both client and server will support passing of domain
|
||||||
|
@ -7,19 +7,19 @@ menu "Print Utilities"
|
|||||||
|
|
||||||
config LPD
|
config LPD
|
||||||
bool "lpd"
|
bool "lpd"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
lpd is a print spooling daemon.
|
lpd is a print spooling daemon.
|
||||||
|
|
||||||
config LPR
|
config LPR
|
||||||
bool "lpr"
|
bool "lpr"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
lpr sends files (or standard input) to a print spooling daemon.
|
lpr sends files (or standard input) to a print spooling daemon.
|
||||||
|
|
||||||
config LPQ
|
config LPQ
|
||||||
bool "lpq"
|
bool "lpq"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
lpq is a print spool queue examination and manipulation program.
|
lpq is a print spool queue examination and manipulation program.
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ menu "Process Utilities"
|
|||||||
|
|
||||||
config FREE
|
config FREE
|
||||||
bool "free"
|
bool "free"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
free displays the total amount of free and used physical and swap
|
free displays the total amount of free and used physical and swap
|
||||||
memory in the system, as well as the buffers used by the kernel.
|
memory in the system, as well as the buffers used by the kernel.
|
||||||
@ -15,7 +15,7 @@ config FREE
|
|||||||
|
|
||||||
config FUSER
|
config FUSER
|
||||||
bool "fuser"
|
bool "fuser"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
fuser lists all PIDs (Process IDs) that currently have a given
|
fuser lists all PIDs (Process IDs) that currently have a given
|
||||||
file open. fuser can also list all PIDs that have a given network
|
file open. fuser can also list all PIDs that have a given network
|
||||||
@ -23,7 +23,7 @@ config FUSER
|
|||||||
|
|
||||||
config KILL
|
config KILL
|
||||||
bool "kill"
|
bool "kill"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
The command kill sends the specified signal to the specified
|
The command kill sends the specified signal to the specified
|
||||||
process or process group. If no signal is specified, the TERM
|
process or process group. If no signal is specified, the TERM
|
||||||
@ -31,7 +31,7 @@ config KILL
|
|||||||
|
|
||||||
config KILLALL
|
config KILLALL
|
||||||
bool "killall"
|
bool "killall"
|
||||||
default n
|
default y
|
||||||
depends on KILL
|
depends on KILL
|
||||||
help
|
help
|
||||||
killall sends a signal to all processes running any of the
|
killall sends a signal to all processes running any of the
|
||||||
@ -40,38 +40,38 @@ config KILLALL
|
|||||||
|
|
||||||
config KILLALL5
|
config KILLALL5
|
||||||
bool "killall5"
|
bool "killall5"
|
||||||
default n
|
default y
|
||||||
depends on KILL
|
depends on KILL
|
||||||
|
|
||||||
config NMETER
|
config NMETER
|
||||||
bool "nmeter"
|
bool "nmeter"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Prints selected system stats continuously, one line per update.
|
Prints selected system stats continuously, one line per update.
|
||||||
|
|
||||||
config PGREP
|
config PGREP
|
||||||
bool "pgrep"
|
bool "pgrep"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Look for processes by name.
|
Look for processes by name.
|
||||||
|
|
||||||
config PIDOF
|
config PIDOF
|
||||||
bool "pidof"
|
bool "pidof"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Pidof finds the process id's (pids) of the named programs. It prints
|
Pidof finds the process id's (pids) of the named programs. It prints
|
||||||
those id's on the standard output.
|
those id's on the standard output.
|
||||||
|
|
||||||
config FEATURE_PIDOF_SINGLE
|
config FEATURE_PIDOF_SINGLE
|
||||||
bool "Enable argument for single shot (-s)"
|
bool "Enable argument for single shot (-s)"
|
||||||
default n
|
default y
|
||||||
depends on PIDOF
|
depends on PIDOF
|
||||||
help
|
help
|
||||||
Support argument '-s' for returning only the first pid found.
|
Support argument '-s' for returning only the first pid found.
|
||||||
|
|
||||||
config FEATURE_PIDOF_OMIT
|
config FEATURE_PIDOF_OMIT
|
||||||
bool "Enable argument for omitting pids (-o)"
|
bool "Enable argument for omitting pids (-o)"
|
||||||
default n
|
default y
|
||||||
depends on PIDOF
|
depends on PIDOF
|
||||||
help
|
help
|
||||||
Support argument '-o' for omitting the given pids in output.
|
Support argument '-o' for omitting the given pids in output.
|
||||||
@ -80,19 +80,19 @@ config FEATURE_PIDOF_OMIT
|
|||||||
|
|
||||||
config PKILL
|
config PKILL
|
||||||
bool "pkill"
|
bool "pkill"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Send signals to processes by name.
|
Send signals to processes by name.
|
||||||
|
|
||||||
config PS
|
config PS
|
||||||
bool "ps"
|
bool "ps"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
ps gives a snapshot of the current processes.
|
ps gives a snapshot of the current processes.
|
||||||
|
|
||||||
config FEATURE_PS_WIDE
|
config FEATURE_PS_WIDE
|
||||||
bool "Enable wide output option (-w)"
|
bool "Enable wide output option (-w)"
|
||||||
default n
|
default y
|
||||||
depends on PS
|
depends on PS
|
||||||
help
|
help
|
||||||
Support argument 'w' for wide output.
|
Support argument 'w' for wide output.
|
||||||
@ -101,14 +101,14 @@ config FEATURE_PS_WIDE
|
|||||||
|
|
||||||
config FEATURE_PS_TIME
|
config FEATURE_PS_TIME
|
||||||
bool "Enable time and elapsed time output"
|
bool "Enable time and elapsed time output"
|
||||||
default n
|
default y
|
||||||
depends on PS && DESKTOP
|
depends on PS && DESKTOP
|
||||||
help
|
help
|
||||||
Support -o time and -o etime output specifiers.
|
Support -o time and -o etime output specifiers.
|
||||||
|
|
||||||
config FEATURE_PS_ADDITIONAL_COLUMNS
|
config FEATURE_PS_ADDITIONAL_COLUMNS
|
||||||
bool "Enable additional ps columns"
|
bool "Enable additional ps columns"
|
||||||
default n
|
default y
|
||||||
depends on PS && DESKTOP
|
depends on PS && DESKTOP
|
||||||
help
|
help
|
||||||
Support -o rgroup, -o ruser, -o nice output specifiers.
|
Support -o rgroup, -o ruser, -o nice output specifiers.
|
||||||
@ -123,20 +123,20 @@ config FEATURE_PS_UNUSUAL_SYSTEMS
|
|||||||
|
|
||||||
config RENICE
|
config RENICE
|
||||||
bool "renice"
|
bool "renice"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Renice alters the scheduling priority of one or more running
|
Renice alters the scheduling priority of one or more running
|
||||||
processes.
|
processes.
|
||||||
|
|
||||||
config BB_SYSCTL
|
config BB_SYSCTL
|
||||||
bool "sysctl"
|
bool "sysctl"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Configure kernel parameters at runtime.
|
Configure kernel parameters at runtime.
|
||||||
|
|
||||||
config TOP
|
config TOP
|
||||||
bool "top"
|
bool "top"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
The top program provides a dynamic real-time view of a running
|
The top program provides a dynamic real-time view of a running
|
||||||
system.
|
system.
|
||||||
@ -159,7 +159,7 @@ config FEATURE_TOP_CPU_GLOBAL_PERCENTS
|
|||||||
|
|
||||||
config FEATURE_TOP_SMP_CPU
|
config FEATURE_TOP_SMP_CPU
|
||||||
bool "SMP CPU usage display ('c' key)"
|
bool "SMP CPU usage display ('c' key)"
|
||||||
default n
|
default y
|
||||||
depends on FEATURE_TOP_CPU_GLOBAL_PERCENTS
|
depends on FEATURE_TOP_CPU_GLOBAL_PERCENTS
|
||||||
help
|
help
|
||||||
Allow 'c' key to switch between individual/cumulative CPU stats
|
Allow 'c' key to switch between individual/cumulative CPU stats
|
||||||
@ -167,7 +167,7 @@ config FEATURE_TOP_SMP_CPU
|
|||||||
|
|
||||||
config FEATURE_TOP_DECIMALS
|
config FEATURE_TOP_DECIMALS
|
||||||
bool "Show 1/10th of a percent in CPU/mem statistics"
|
bool "Show 1/10th of a percent in CPU/mem statistics"
|
||||||
default n
|
default y
|
||||||
depends on FEATURE_TOP_CPU_USAGE_PERCENTAGE
|
depends on FEATURE_TOP_CPU_USAGE_PERCENTAGE
|
||||||
help
|
help
|
||||||
Show 1/10th of a percent in CPU/mem statistics.
|
Show 1/10th of a percent in CPU/mem statistics.
|
||||||
@ -175,7 +175,7 @@ config FEATURE_TOP_DECIMALS
|
|||||||
|
|
||||||
config FEATURE_TOP_SMP_PROCESS
|
config FEATURE_TOP_SMP_PROCESS
|
||||||
bool "Show CPU process runs on ('j' field)"
|
bool "Show CPU process runs on ('j' field)"
|
||||||
default n
|
default y
|
||||||
depends on TOP
|
depends on TOP
|
||||||
help
|
help
|
||||||
Show CPU where process was last found running on.
|
Show CPU where process was last found running on.
|
||||||
@ -183,21 +183,21 @@ config FEATURE_TOP_SMP_PROCESS
|
|||||||
|
|
||||||
config FEATURE_TOPMEM
|
config FEATURE_TOPMEM
|
||||||
bool "Topmem command ('s' key)"
|
bool "Topmem command ('s' key)"
|
||||||
default n
|
default y
|
||||||
depends on TOP
|
depends on TOP
|
||||||
help
|
help
|
||||||
Enable 's' in top (gives lots of memory info).
|
Enable 's' in top (gives lots of memory info).
|
||||||
|
|
||||||
config FEATURE_SHOW_THREADS
|
config FEATURE_SHOW_THREADS
|
||||||
bool "Support for showing threads in ps/top"
|
bool "Support for showing threads in ps/top"
|
||||||
default n
|
default y
|
||||||
depends on PS || TOP
|
depends on PS || TOP
|
||||||
help
|
help
|
||||||
Enables ps -T option and 'h' command in top
|
Enables ps -T option and 'h' command in top
|
||||||
|
|
||||||
config UPTIME
|
config UPTIME
|
||||||
bool "uptime"
|
bool "uptime"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
uptime gives a one line display of the current time, how long
|
uptime gives a one line display of the current time, how long
|
||||||
the system has been running, how many users are currently logged
|
the system has been running, how many users are currently logged
|
||||||
@ -205,7 +205,7 @@ config UPTIME
|
|||||||
|
|
||||||
config WATCH
|
config WATCH
|
||||||
bool "watch"
|
bool "watch"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
watch is used to execute a program periodically, showing
|
watch is used to execute a program periodically, showing
|
||||||
output to the screen.
|
output to the screen.
|
||||||
|
@ -7,14 +7,14 @@ menu "Runit Utilities"
|
|||||||
|
|
||||||
config RUNSV
|
config RUNSV
|
||||||
bool "runsv"
|
bool "runsv"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
runsv starts and monitors a service and optionally an appendant log
|
runsv starts and monitors a service and optionally an appendant log
|
||||||
service.
|
service.
|
||||||
|
|
||||||
config RUNSVDIR
|
config RUNSVDIR
|
||||||
bool "runsvdir"
|
bool "runsvdir"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
runsvdir starts a runsv process for each subdirectory, or symlink to
|
runsvdir starts a runsv process for each subdirectory, or symlink to
|
||||||
a directory, in the services directory dir, up to a limit of 1000
|
a directory, in the services directory dir, up to a limit of 1000
|
||||||
@ -31,7 +31,7 @@ config FEATURE_RUNSVDIR_LOG
|
|||||||
|
|
||||||
config SV
|
config SV
|
||||||
bool "sv"
|
bool "sv"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
sv reports the current status and controls the state of services
|
sv reports the current status and controls the state of services
|
||||||
monitored by the runsv supervisor.
|
monitored by the runsv supervisor.
|
||||||
@ -46,7 +46,7 @@ config SV_DEFAULT_SERVICE_DIR
|
|||||||
|
|
||||||
config SVLOGD
|
config SVLOGD
|
||||||
bool "svlogd"
|
bool "svlogd"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
svlogd continuously reads log data from its standard input, optionally
|
svlogd continuously reads log data from its standard input, optionally
|
||||||
filters log messages, and writes the data to one or more automatically
|
filters log messages, and writes the data to one or more automatically
|
||||||
@ -54,29 +54,33 @@ config SVLOGD
|
|||||||
|
|
||||||
config CHPST
|
config CHPST
|
||||||
bool "chpst"
|
bool "chpst"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
chpst changes the process state according to the given options, and
|
chpst changes the process state according to the given options, and
|
||||||
execs specified program.
|
execs specified program.
|
||||||
|
|
||||||
config SETUIDGID
|
config SETUIDGID
|
||||||
bool "setuidgid"
|
bool "setuidgid"
|
||||||
|
default y
|
||||||
help
|
help
|
||||||
Sets soft resource limits as specified by options
|
Sets soft resource limits as specified by options
|
||||||
|
|
||||||
config ENVUIDGID
|
config ENVUIDGID
|
||||||
bool "envuidgid"
|
bool "envuidgid"
|
||||||
|
default y
|
||||||
help
|
help
|
||||||
Sets $UID to account's uid and $GID to account's gid
|
Sets $UID to account's uid and $GID to account's gid
|
||||||
|
|
||||||
config ENVDIR
|
config ENVDIR
|
||||||
bool "envdir"
|
bool "envdir"
|
||||||
|
default y
|
||||||
help
|
help
|
||||||
Sets various environment variables as specified by files
|
Sets various environment variables as specified by files
|
||||||
in the given directory
|
in the given directory
|
||||||
|
|
||||||
config SOFTLIMIT
|
config SOFTLIMIT
|
||||||
bool "softlimit"
|
bool "softlimit"
|
||||||
|
default y
|
||||||
help
|
help
|
||||||
Sets soft resource limits as specified by options
|
Sets soft resource limits as specified by options
|
||||||
|
|
||||||
|
@ -1,927 +0,0 @@
|
|||||||
#
|
|
||||||
# Automatically generated make config: don't edit
|
|
||||||
# Busybox version: 1.16.0
|
|
||||||
# Wed Jan 27 20:00:00 2010
|
|
||||||
#
|
|
||||||
CONFIG_HAVE_DOT_CONFIG=y
|
|
||||||
|
|
||||||
#
|
|
||||||
# Busybox Settings
|
|
||||||
#
|
|
||||||
|
|
||||||
#
|
|
||||||
# General Configuration
|
|
||||||
#
|
|
||||||
# CONFIG_DESKTOP is not set
|
|
||||||
# CONFIG_EXTRA_COMPAT is not set
|
|
||||||
CONFIG_INCLUDE_SUSv2=y
|
|
||||||
# CONFIG_USE_PORTABLE_CODE is not set
|
|
||||||
CONFIG_FEATURE_BUFFERS_USE_MALLOC=y
|
|
||||||
# CONFIG_FEATURE_BUFFERS_GO_ON_STACK is not set
|
|
||||||
# CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set
|
|
||||||
CONFIG_SHOW_USAGE=y
|
|
||||||
CONFIG_FEATURE_VERBOSE_USAGE=y
|
|
||||||
CONFIG_FEATURE_COMPRESS_USAGE=y
|
|
||||||
CONFIG_FEATURE_INSTALLER=y
|
|
||||||
CONFIG_LOCALE_SUPPORT=y
|
|
||||||
CONFIG_UNICODE_SUPPORT=y
|
|
||||||
# CONFIG_FEATURE_CHECK_UNICODE_IN_ENV is not set
|
|
||||||
CONFIG_LONG_OPTS=y
|
|
||||||
CONFIG_FEATURE_DEVPTS=y
|
|
||||||
# CONFIG_FEATURE_CLEAN_UP is not set
|
|
||||||
CONFIG_FEATURE_PIDFILE=y
|
|
||||||
CONFIG_FEATURE_SUID=y
|
|
||||||
CONFIG_FEATURE_SUID_CONFIG=y
|
|
||||||
CONFIG_FEATURE_SUID_CONFIG_QUIET=y
|
|
||||||
# CONFIG_SELINUX is not set
|
|
||||||
# CONFIG_FEATURE_PREFER_APPLETS is not set
|
|
||||||
CONFIG_BUSYBOX_EXEC_PATH="/proc/self/exe"
|
|
||||||
CONFIG_FEATURE_SYSLOG=y
|
|
||||||
CONFIG_FEATURE_HAVE_RPC=y
|
|
||||||
|
|
||||||
#
|
|
||||||
# Build Options
|
|
||||||
#
|
|
||||||
# CONFIG_STATIC is not set
|
|
||||||
# CONFIG_PIE is not set
|
|
||||||
# CONFIG_NOMMU is not set
|
|
||||||
# CONFIG_BUILD_LIBBUSYBOX is not set
|
|
||||||
# CONFIG_FEATURE_INDIVIDUAL is not set
|
|
||||||
# CONFIG_FEATURE_SHARED_BUSYBOX is not set
|
|
||||||
CONFIG_LFS=y
|
|
||||||
CONFIG_CROSS_COMPILER_PREFIX=""
|
|
||||||
CONFIG_EXTRA_CFLAGS=""
|
|
||||||
|
|
||||||
#
|
|
||||||
# Debugging Options
|
|
||||||
#
|
|
||||||
# CONFIG_DEBUG is not set
|
|
||||||
# CONFIG_DEBUG_PESSIMIZE is not set
|
|
||||||
# CONFIG_WERROR is not set
|
|
||||||
CONFIG_NO_DEBUG_LIB=y
|
|
||||||
# CONFIG_DMALLOC is not set
|
|
||||||
# CONFIG_EFENCE is not set
|
|
||||||
|
|
||||||
#
|
|
||||||
# Installation Options
|
|
||||||
#
|
|
||||||
# CONFIG_INSTALL_NO_USR is not set
|
|
||||||
CONFIG_INSTALL_APPLET_SYMLINKS=y
|
|
||||||
# CONFIG_INSTALL_APPLET_HARDLINKS is not set
|
|
||||||
# CONFIG_INSTALL_APPLET_SCRIPT_WRAPPERS is not set
|
|
||||||
# CONFIG_INSTALL_APPLET_DONT is not set
|
|
||||||
# CONFIG_INSTALL_SH_APPLET_SYMLINK is not set
|
|
||||||
# CONFIG_INSTALL_SH_APPLET_HARDLINK is not set
|
|
||||||
# CONFIG_INSTALL_SH_APPLET_SCRIPT_WRAPPER is not set
|
|
||||||
CONFIG_PREFIX="./_install"
|
|
||||||
|
|
||||||
#
|
|
||||||
# Busybox Library Tuning
|
|
||||||
#
|
|
||||||
CONFIG_PASSWORD_MINLEN=6
|
|
||||||
CONFIG_MD5_SIZE_VS_SPEED=2
|
|
||||||
CONFIG_FEATURE_FAST_TOP=y
|
|
||||||
# CONFIG_FEATURE_ETC_NETWORKS is not set
|
|
||||||
CONFIG_FEATURE_EDITING=y
|
|
||||||
CONFIG_FEATURE_EDITING_MAX_LEN=1024
|
|
||||||
# CONFIG_FEATURE_EDITING_VI is not set
|
|
||||||
CONFIG_FEATURE_EDITING_HISTORY=15
|
|
||||||
CONFIG_FEATURE_EDITING_SAVEHISTORY=y
|
|
||||||
CONFIG_FEATURE_TAB_COMPLETION=y
|
|
||||||
# CONFIG_FEATURE_USERNAME_COMPLETION is not set
|
|
||||||
# CONFIG_FEATURE_EDITING_FANCY_PROMPT is not set
|
|
||||||
# CONFIG_FEATURE_EDITING_ASK_TERMINAL is not set
|
|
||||||
CONFIG_FEATURE_NON_POSIX_CP=y
|
|
||||||
# CONFIG_FEATURE_VERBOSE_CP_MESSAGE is not set
|
|
||||||
CONFIG_FEATURE_COPYBUF_KB=4
|
|
||||||
# CONFIG_MONOTONIC_SYSCALL is not set
|
|
||||||
CONFIG_IOCTL_HEX2STR_ERROR=y
|
|
||||||
CONFIG_FEATURE_HWIB=y
|
|
||||||
|
|
||||||
#
|
|
||||||
# Applets
|
|
||||||
#
|
|
||||||
|
|
||||||
#
|
|
||||||
# Archival Utilities
|
|
||||||
#
|
|
||||||
CONFIG_FEATURE_SEAMLESS_LZMA=y
|
|
||||||
CONFIG_FEATURE_SEAMLESS_BZ2=y
|
|
||||||
CONFIG_FEATURE_SEAMLESS_GZ=y
|
|
||||||
CONFIG_FEATURE_SEAMLESS_Z=y
|
|
||||||
CONFIG_AR=y
|
|
||||||
CONFIG_FEATURE_AR_LONG_FILENAMES=y
|
|
||||||
CONFIG_FEATURE_AR_CREATE=y
|
|
||||||
CONFIG_BUNZIP2=y
|
|
||||||
CONFIG_BZIP2=y
|
|
||||||
CONFIG_CPIO=y
|
|
||||||
CONFIG_FEATURE_CPIO_O=y
|
|
||||||
CONFIG_FEATURE_CPIO_P=y
|
|
||||||
# CONFIG_DPKG is not set
|
|
||||||
# CONFIG_DPKG_DEB is not set
|
|
||||||
# CONFIG_FEATURE_DPKG_DEB_EXTRACT_ONLY is not set
|
|
||||||
CONFIG_GUNZIP=y
|
|
||||||
CONFIG_GZIP=y
|
|
||||||
CONFIG_FEATURE_GZIP_LONG_OPTIONS=y
|
|
||||||
CONFIG_LZOP=y
|
|
||||||
# CONFIG_LZOP_COMPR_HIGH is not set
|
|
||||||
CONFIG_RPM2CPIO=y
|
|
||||||
CONFIG_RPM=y
|
|
||||||
CONFIG_TAR=y
|
|
||||||
CONFIG_FEATURE_TAR_CREATE=y
|
|
||||||
CONFIG_FEATURE_TAR_AUTODETECT=y
|
|
||||||
CONFIG_FEATURE_TAR_FROM=y
|
|
||||||
CONFIG_FEATURE_TAR_OLDGNU_COMPATIBILITY=y
|
|
||||||
CONFIG_FEATURE_TAR_OLDSUN_COMPATIBILITY=y
|
|
||||||
CONFIG_FEATURE_TAR_GNU_EXTENSIONS=y
|
|
||||||
CONFIG_FEATURE_TAR_LONG_OPTIONS=y
|
|
||||||
CONFIG_FEATURE_TAR_UNAME_GNAME=y
|
|
||||||
CONFIG_FEATURE_TAR_NOPRESERVE_TIME=y
|
|
||||||
CONFIG_UNCOMPRESS=y
|
|
||||||
CONFIG_UNLZMA=y
|
|
||||||
CONFIG_FEATURE_LZMA_FAST=y
|
|
||||||
CONFIG_UNZIP=y
|
|
||||||
|
|
||||||
#
|
|
||||||
# Coreutils
|
|
||||||
#
|
|
||||||
CONFIG_BASENAME=y
|
|
||||||
CONFIG_CAL=y
|
|
||||||
CONFIG_CAT=y
|
|
||||||
CONFIG_CATV=y
|
|
||||||
CONFIG_CHGRP=y
|
|
||||||
CONFIG_CHMOD=y
|
|
||||||
CONFIG_CHOWN=y
|
|
||||||
CONFIG_FEATURE_CHOWN_LONG_OPTIONS=y
|
|
||||||
CONFIG_CHROOT=y
|
|
||||||
CONFIG_CKSUM=y
|
|
||||||
CONFIG_COMM=y
|
|
||||||
CONFIG_CP=y
|
|
||||||
CONFIG_FEATURE_CP_LONG_OPTIONS=y
|
|
||||||
CONFIG_CUT=y
|
|
||||||
CONFIG_DATE=y
|
|
||||||
CONFIG_FEATURE_DATE_ISOFMT=y
|
|
||||||
CONFIG_FEATURE_DATE_COMPAT=y
|
|
||||||
CONFIG_DD=y
|
|
||||||
CONFIG_FEATURE_DD_SIGNAL_HANDLING=y
|
|
||||||
CONFIG_FEATURE_DD_THIRD_STATUS_LINE=y
|
|
||||||
CONFIG_FEATURE_DD_IBS_OBS=y
|
|
||||||
CONFIG_DF=y
|
|
||||||
CONFIG_FEATURE_DF_FANCY=y
|
|
||||||
CONFIG_DIRNAME=y
|
|
||||||
CONFIG_DOS2UNIX=y
|
|
||||||
CONFIG_UNIX2DOS=y
|
|
||||||
CONFIG_DU=y
|
|
||||||
CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K=y
|
|
||||||
CONFIG_ECHO=y
|
|
||||||
CONFIG_FEATURE_FANCY_ECHO=y
|
|
||||||
CONFIG_ENV=y
|
|
||||||
CONFIG_FEATURE_ENV_LONG_OPTIONS=y
|
|
||||||
CONFIG_EXPAND=y
|
|
||||||
CONFIG_FEATURE_EXPAND_LONG_OPTIONS=y
|
|
||||||
CONFIG_EXPR=y
|
|
||||||
CONFIG_EXPR_MATH_SUPPORT_64=y
|
|
||||||
CONFIG_FALSE=y
|
|
||||||
CONFIG_FOLD=y
|
|
||||||
CONFIG_FSYNC=y
|
|
||||||
CONFIG_HEAD=y
|
|
||||||
CONFIG_FEATURE_FANCY_HEAD=y
|
|
||||||
CONFIG_HOSTID=y
|
|
||||||
CONFIG_ID=y
|
|
||||||
CONFIG_INSTALL=y
|
|
||||||
CONFIG_FEATURE_INSTALL_LONG_OPTIONS=y
|
|
||||||
CONFIG_LENGTH=y
|
|
||||||
CONFIG_LN=y
|
|
||||||
CONFIG_LOGNAME=y
|
|
||||||
CONFIG_LS=y
|
|
||||||
CONFIG_FEATURE_LS_FILETYPES=y
|
|
||||||
CONFIG_FEATURE_LS_FOLLOWLINKS=y
|
|
||||||
CONFIG_FEATURE_LS_RECURSIVE=y
|
|
||||||
CONFIG_FEATURE_LS_SORTFILES=y
|
|
||||||
CONFIG_FEATURE_LS_TIMESTAMPS=y
|
|
||||||
CONFIG_FEATURE_LS_USERNAME=y
|
|
||||||
CONFIG_FEATURE_LS_COLOR=y
|
|
||||||
CONFIG_FEATURE_LS_COLOR_IS_DEFAULT=y
|
|
||||||
CONFIG_MD5SUM=y
|
|
||||||
CONFIG_MKDIR=y
|
|
||||||
CONFIG_FEATURE_MKDIR_LONG_OPTIONS=y
|
|
||||||
CONFIG_MKFIFO=y
|
|
||||||
CONFIG_MKNOD=y
|
|
||||||
CONFIG_MV=y
|
|
||||||
CONFIG_FEATURE_MV_LONG_OPTIONS=y
|
|
||||||
CONFIG_NICE=y
|
|
||||||
CONFIG_NOHUP=y
|
|
||||||
CONFIG_OD=y
|
|
||||||
CONFIG_PRINTENV=y
|
|
||||||
CONFIG_PRINTF=y
|
|
||||||
CONFIG_PWD=y
|
|
||||||
CONFIG_READLINK=y
|
|
||||||
CONFIG_FEATURE_READLINK_FOLLOW=y
|
|
||||||
CONFIG_REALPATH=y
|
|
||||||
CONFIG_RM=y
|
|
||||||
CONFIG_RMDIR=y
|
|
||||||
CONFIG_FEATURE_RMDIR_LONG_OPTIONS=y
|
|
||||||
CONFIG_SEQ=y
|
|
||||||
CONFIG_SHA1SUM=y
|
|
||||||
CONFIG_SHA256SUM=y
|
|
||||||
CONFIG_SHA512SUM=y
|
|
||||||
CONFIG_SLEEP=y
|
|
||||||
CONFIG_FEATURE_FANCY_SLEEP=y
|
|
||||||
CONFIG_FEATURE_FLOAT_SLEEP=y
|
|
||||||
CONFIG_SORT=y
|
|
||||||
CONFIG_FEATURE_SORT_BIG=y
|
|
||||||
CONFIG_SPLIT=y
|
|
||||||
CONFIG_FEATURE_SPLIT_FANCY=y
|
|
||||||
CONFIG_STAT=y
|
|
||||||
CONFIG_FEATURE_STAT_FORMAT=y
|
|
||||||
CONFIG_STTY=y
|
|
||||||
CONFIG_SUM=y
|
|
||||||
CONFIG_SYNC=y
|
|
||||||
CONFIG_TAC=y
|
|
||||||
CONFIG_TAIL=y
|
|
||||||
CONFIG_FEATURE_FANCY_TAIL=y
|
|
||||||
CONFIG_TEE=y
|
|
||||||
CONFIG_FEATURE_TEE_USE_BLOCK_IO=y
|
|
||||||
CONFIG_TEST=y
|
|
||||||
CONFIG_FEATURE_TEST_64=y
|
|
||||||
CONFIG_TOUCH=y
|
|
||||||
CONFIG_TR=y
|
|
||||||
CONFIG_FEATURE_TR_CLASSES=y
|
|
||||||
CONFIG_FEATURE_TR_EQUIV=y
|
|
||||||
CONFIG_TRUE=y
|
|
||||||
CONFIG_TTY=y
|
|
||||||
CONFIG_UNAME=y
|
|
||||||
CONFIG_UNEXPAND=y
|
|
||||||
CONFIG_FEATURE_UNEXPAND_LONG_OPTIONS=y
|
|
||||||
CONFIG_UNIQ=y
|
|
||||||
CONFIG_USLEEP=y
|
|
||||||
CONFIG_UUDECODE=y
|
|
||||||
CONFIG_UUENCODE=y
|
|
||||||
CONFIG_WC=y
|
|
||||||
CONFIG_FEATURE_WC_LARGE=y
|
|
||||||
CONFIG_WHO=y
|
|
||||||
CONFIG_WHOAMI=y
|
|
||||||
CONFIG_YES=y
|
|
||||||
|
|
||||||
#
|
|
||||||
# Common options for cp and mv
|
|
||||||
#
|
|
||||||
CONFIG_FEATURE_PRESERVE_HARDLINKS=y
|
|
||||||
|
|
||||||
#
|
|
||||||
# Common options for ls, more and telnet
|
|
||||||
#
|
|
||||||
CONFIG_FEATURE_AUTOWIDTH=y
|
|
||||||
|
|
||||||
#
|
|
||||||
# Common options for df, du, ls
|
|
||||||
#
|
|
||||||
CONFIG_FEATURE_HUMAN_READABLE=y
|
|
||||||
|
|
||||||
#
|
|
||||||
# Common options for md5sum, sha1sum, sha256sum, sha512sum
|
|
||||||
#
|
|
||||||
CONFIG_FEATURE_MD5_SHA1_SUM_CHECK=y
|
|
||||||
|
|
||||||
#
|
|
||||||
# Console Utilities
|
|
||||||
#
|
|
||||||
CONFIG_CHVT=y
|
|
||||||
CONFIG_FGCONSOLE=y
|
|
||||||
CONFIG_CLEAR=y
|
|
||||||
CONFIG_DEALLOCVT=y
|
|
||||||
CONFIG_DUMPKMAP=y
|
|
||||||
CONFIG_KBD_MODE=y
|
|
||||||
CONFIG_LOADFONT=y
|
|
||||||
CONFIG_LOADKMAP=y
|
|
||||||
CONFIG_OPENVT=y
|
|
||||||
CONFIG_RESET=y
|
|
||||||
CONFIG_RESIZE=y
|
|
||||||
CONFIG_FEATURE_RESIZE_PRINT=y
|
|
||||||
CONFIG_SETCONSOLE=y
|
|
||||||
CONFIG_FEATURE_SETCONSOLE_LONG_OPTIONS=y
|
|
||||||
CONFIG_SETFONT=y
|
|
||||||
CONFIG_FEATURE_SETFONT_TEXTUAL_MAP=y
|
|
||||||
CONFIG_DEFAULT_SETFONT_DIR=""
|
|
||||||
CONFIG_SETKEYCODES=y
|
|
||||||
CONFIG_SETLOGCONS=y
|
|
||||||
CONFIG_SHOWKEY=y
|
|
||||||
|
|
||||||
#
|
|
||||||
# Debian Utilities
|
|
||||||
#
|
|
||||||
CONFIG_MKTEMP=y
|
|
||||||
CONFIG_PIPE_PROGRESS=y
|
|
||||||
CONFIG_RUN_PARTS=y
|
|
||||||
CONFIG_FEATURE_RUN_PARTS_LONG_OPTIONS=y
|
|
||||||
CONFIG_FEATURE_RUN_PARTS_FANCY=y
|
|
||||||
CONFIG_START_STOP_DAEMON=y
|
|
||||||
CONFIG_FEATURE_START_STOP_DAEMON_FANCY=y
|
|
||||||
CONFIG_FEATURE_START_STOP_DAEMON_LONG_OPTIONS=y
|
|
||||||
CONFIG_WHICH=y
|
|
||||||
|
|
||||||
#
|
|
||||||
# Editors
|
|
||||||
#
|
|
||||||
CONFIG_AWK=y
|
|
||||||
CONFIG_FEATURE_AWK_LIBM=y
|
|
||||||
CONFIG_CMP=y
|
|
||||||
CONFIG_DIFF=y
|
|
||||||
CONFIG_FEATURE_DIFF_LONG_OPTIONS=y
|
|
||||||
CONFIG_FEATURE_DIFF_DIR=y
|
|
||||||
CONFIG_ED=y
|
|
||||||
CONFIG_PATCH=y
|
|
||||||
CONFIG_SED=y
|
|
||||||
CONFIG_VI=y
|
|
||||||
CONFIG_FEATURE_VI_MAX_LEN=4096
|
|
||||||
# CONFIG_FEATURE_VI_8BIT is not set
|
|
||||||
CONFIG_FEATURE_VI_COLON=y
|
|
||||||
CONFIG_FEATURE_VI_YANKMARK=y
|
|
||||||
CONFIG_FEATURE_VI_SEARCH=y
|
|
||||||
CONFIG_FEATURE_VI_USE_SIGNALS=y
|
|
||||||
CONFIG_FEATURE_VI_DOT_CMD=y
|
|
||||||
CONFIG_FEATURE_VI_READONLY=y
|
|
||||||
CONFIG_FEATURE_VI_SETOPTS=y
|
|
||||||
CONFIG_FEATURE_VI_SET=y
|
|
||||||
CONFIG_FEATURE_VI_WIN_RESIZE=y
|
|
||||||
CONFIG_FEATURE_VI_OPTIMIZE_CURSOR=y
|
|
||||||
CONFIG_FEATURE_ALLOW_EXEC=y
|
|
||||||
|
|
||||||
#
|
|
||||||
# Finding Utilities
|
|
||||||
#
|
|
||||||
CONFIG_FIND=y
|
|
||||||
CONFIG_FEATURE_FIND_PRINT0=y
|
|
||||||
CONFIG_FEATURE_FIND_MTIME=y
|
|
||||||
CONFIG_FEATURE_FIND_MMIN=y
|
|
||||||
CONFIG_FEATURE_FIND_PERM=y
|
|
||||||
CONFIG_FEATURE_FIND_TYPE=y
|
|
||||||
CONFIG_FEATURE_FIND_XDEV=y
|
|
||||||
CONFIG_FEATURE_FIND_MAXDEPTH=y
|
|
||||||
CONFIG_FEATURE_FIND_NEWER=y
|
|
||||||
CONFIG_FEATURE_FIND_INUM=y
|
|
||||||
CONFIG_FEATURE_FIND_EXEC=y
|
|
||||||
CONFIG_FEATURE_FIND_USER=y
|
|
||||||
CONFIG_FEATURE_FIND_GROUP=y
|
|
||||||
CONFIG_FEATURE_FIND_NOT=y
|
|
||||||
CONFIG_FEATURE_FIND_DEPTH=y
|
|
||||||
CONFIG_FEATURE_FIND_PAREN=y
|
|
||||||
CONFIG_FEATURE_FIND_SIZE=y
|
|
||||||
CONFIG_FEATURE_FIND_PRUNE=y
|
|
||||||
CONFIG_FEATURE_FIND_DELETE=y
|
|
||||||
CONFIG_FEATURE_FIND_PATH=y
|
|
||||||
CONFIG_FEATURE_FIND_REGEX=y
|
|
||||||
# CONFIG_FEATURE_FIND_CONTEXT is not set
|
|
||||||
CONFIG_FEATURE_FIND_LINKS=y
|
|
||||||
CONFIG_GREP=y
|
|
||||||
CONFIG_FEATURE_GREP_EGREP_ALIAS=y
|
|
||||||
CONFIG_FEATURE_GREP_FGREP_ALIAS=y
|
|
||||||
CONFIG_FEATURE_GREP_CONTEXT=y
|
|
||||||
CONFIG_XARGS=y
|
|
||||||
CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION=y
|
|
||||||
CONFIG_FEATURE_XARGS_SUPPORT_QUOTES=y
|
|
||||||
CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT=y
|
|
||||||
CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM=y
|
|
||||||
|
|
||||||
#
|
|
||||||
# Init Utilities
|
|
||||||
#
|
|
||||||
CONFIG_INIT=y
|
|
||||||
CONFIG_FEATURE_USE_INITTAB=y
|
|
||||||
# CONFIG_FEATURE_KILL_REMOVED is not set
|
|
||||||
CONFIG_FEATURE_KILL_DELAY=0
|
|
||||||
CONFIG_FEATURE_INIT_SCTTY=y
|
|
||||||
CONFIG_FEATURE_INIT_SYSLOG=y
|
|
||||||
CONFIG_FEATURE_EXTRA_QUIET=y
|
|
||||||
CONFIG_FEATURE_INIT_COREDUMPS=y
|
|
||||||
CONFIG_FEATURE_INITRD=y
|
|
||||||
CONFIG_HALT=y
|
|
||||||
# CONFIG_FEATURE_CALL_TELINIT is not set
|
|
||||||
CONFIG_TELINIT_PATH=""
|
|
||||||
CONFIG_MESG=y
|
|
||||||
|
|
||||||
#
|
|
||||||
# Login/Password Management Utilities
|
|
||||||
#
|
|
||||||
CONFIG_FEATURE_SHADOWPASSWDS=y
|
|
||||||
CONFIG_USE_BB_PWD_GRP=y
|
|
||||||
CONFIG_USE_BB_SHADOW=y
|
|
||||||
CONFIG_USE_BB_CRYPT=y
|
|
||||||
CONFIG_USE_BB_CRYPT_SHA=y
|
|
||||||
CONFIG_ADDGROUP=y
|
|
||||||
CONFIG_FEATURE_ADDGROUP_LONG_OPTIONS=y
|
|
||||||
CONFIG_FEATURE_ADDUSER_TO_GROUP=y
|
|
||||||
CONFIG_DELGROUP=y
|
|
||||||
CONFIG_FEATURE_DEL_USER_FROM_GROUP=y
|
|
||||||
# CONFIG_FEATURE_CHECK_NAMES is not set
|
|
||||||
CONFIG_ADDUSER=y
|
|
||||||
CONFIG_FEATURE_ADDUSER_LONG_OPTIONS=y
|
|
||||||
CONFIG_FIRST_SYSTEM_ID=100
|
|
||||||
CONFIG_LAST_SYSTEM_ID=999
|
|
||||||
CONFIG_DELUSER=y
|
|
||||||
CONFIG_GETTY=y
|
|
||||||
CONFIG_FEATURE_UTMP=y
|
|
||||||
CONFIG_FEATURE_WTMP=y
|
|
||||||
CONFIG_LOGIN=y
|
|
||||||
# CONFIG_PAM is not set
|
|
||||||
CONFIG_LOGIN_SCRIPTS=y
|
|
||||||
CONFIG_FEATURE_NOLOGIN=y
|
|
||||||
CONFIG_FEATURE_SECURETTY=y
|
|
||||||
CONFIG_PASSWD=y
|
|
||||||
CONFIG_FEATURE_PASSWD_WEAK_CHECK=y
|
|
||||||
CONFIG_CRYPTPW=y
|
|
||||||
CONFIG_CHPASSWD=y
|
|
||||||
CONFIG_SU=y
|
|
||||||
CONFIG_FEATURE_SU_SYSLOG=y
|
|
||||||
CONFIG_FEATURE_SU_CHECKS_SHELLS=y
|
|
||||||
CONFIG_SULOGIN=y
|
|
||||||
CONFIG_VLOCK=y
|
|
||||||
|
|
||||||
#
|
|
||||||
# Linux Ext2 FS Progs
|
|
||||||
#
|
|
||||||
CONFIG_CHATTR=y
|
|
||||||
CONFIG_FSCK=y
|
|
||||||
CONFIG_LSATTR=y
|
|
||||||
|
|
||||||
#
|
|
||||||
# Linux Module Utilities
|
|
||||||
#
|
|
||||||
CONFIG_MODPROBE_SMALL=y
|
|
||||||
CONFIG_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE=y
|
|
||||||
CONFIG_FEATURE_MODPROBE_SMALL_CHECK_ALREADY_LOADED=y
|
|
||||||
# CONFIG_INSMOD is not set
|
|
||||||
# CONFIG_RMMOD is not set
|
|
||||||
# CONFIG_LSMOD is not set
|
|
||||||
# CONFIG_FEATURE_LSMOD_PRETTY_2_6_OUTPUT is not set
|
|
||||||
# CONFIG_MODPROBE is not set
|
|
||||||
# CONFIG_FEATURE_MODPROBE_BLACKLIST is not set
|
|
||||||
# CONFIG_DEPMOD is not set
|
|
||||||
|
|
||||||
#
|
|
||||||
# Options common to multiple modutils
|
|
||||||
#
|
|
||||||
# CONFIG_FEATURE_2_4_MODULES is not set
|
|
||||||
# CONFIG_FEATURE_INSMOD_TRY_MMAP is not set
|
|
||||||
# CONFIG_FEATURE_INSMOD_VERSION_CHECKING is not set
|
|
||||||
# CONFIG_FEATURE_INSMOD_KSYMOOPS_SYMBOLS is not set
|
|
||||||
# CONFIG_FEATURE_INSMOD_LOADINKMEM is not set
|
|
||||||
# CONFIG_FEATURE_INSMOD_LOAD_MAP is not set
|
|
||||||
# CONFIG_FEATURE_INSMOD_LOAD_MAP_FULL is not set
|
|
||||||
# CONFIG_FEATURE_CHECK_TAINTED_MODULE is not set
|
|
||||||
# CONFIG_FEATURE_MODUTILS_ALIAS is not set
|
|
||||||
# CONFIG_FEATURE_MODUTILS_SYMBOLS is not set
|
|
||||||
CONFIG_DEFAULT_MODULES_DIR="/lib/modules"
|
|
||||||
CONFIG_DEFAULT_DEPMOD_FILE="modules.dep"
|
|
||||||
|
|
||||||
#
|
|
||||||
# Linux System Utilities
|
|
||||||
#
|
|
||||||
CONFIG_ACPID=y
|
|
||||||
CONFIG_FEATURE_ACPID_COMPAT=y
|
|
||||||
CONFIG_BLKID=y
|
|
||||||
CONFIG_DMESG=y
|
|
||||||
CONFIG_FEATURE_DMESG_PRETTY=y
|
|
||||||
CONFIG_FBSET=y
|
|
||||||
CONFIG_FEATURE_FBSET_FANCY=y
|
|
||||||
CONFIG_FEATURE_FBSET_READMODE=y
|
|
||||||
CONFIG_FDFLUSH=y
|
|
||||||
CONFIG_FDFORMAT=y
|
|
||||||
CONFIG_FDISK=y
|
|
||||||
CONFIG_FDISK_SUPPORT_LARGE_DISKS=y
|
|
||||||
CONFIG_FEATURE_FDISK_WRITABLE=y
|
|
||||||
# CONFIG_FEATURE_AIX_LABEL is not set
|
|
||||||
# CONFIG_FEATURE_SGI_LABEL is not set
|
|
||||||
# CONFIG_FEATURE_SUN_LABEL is not set
|
|
||||||
# CONFIG_FEATURE_OSF_LABEL is not set
|
|
||||||
CONFIG_FEATURE_FDISK_ADVANCED=y
|
|
||||||
CONFIG_FINDFS=y
|
|
||||||
CONFIG_FREERAMDISK=y
|
|
||||||
CONFIG_FSCK_MINIX=y
|
|
||||||
CONFIG_MKFS_EXT2=y
|
|
||||||
CONFIG_MKFS_MINIX=y
|
|
||||||
|
|
||||||
#
|
|
||||||
# Minix filesystem support
|
|
||||||
#
|
|
||||||
CONFIG_FEATURE_MINIX2=y
|
|
||||||
# CONFIG_MKFS_REISER is not set
|
|
||||||
CONFIG_MKFS_VFAT=y
|
|
||||||
CONFIG_GETOPT=y
|
|
||||||
CONFIG_FEATURE_GETOPT_LONG=y
|
|
||||||
CONFIG_HEXDUMP=y
|
|
||||||
CONFIG_FEATURE_HEXDUMP_REVERSE=y
|
|
||||||
CONFIG_HD=y
|
|
||||||
CONFIG_HWCLOCK=y
|
|
||||||
CONFIG_FEATURE_HWCLOCK_LONG_OPTIONS=y
|
|
||||||
CONFIG_FEATURE_HWCLOCK_ADJTIME_FHS=y
|
|
||||||
CONFIG_IPCRM=y
|
|
||||||
CONFIG_IPCS=y
|
|
||||||
CONFIG_LOSETUP=y
|
|
||||||
CONFIG_LSPCI=y
|
|
||||||
CONFIG_LSUSB=y
|
|
||||||
CONFIG_MDEV=y
|
|
||||||
CONFIG_FEATURE_MDEV_CONF=y
|
|
||||||
CONFIG_FEATURE_MDEV_RENAME=y
|
|
||||||
CONFIG_FEATURE_MDEV_RENAME_REGEXP=y
|
|
||||||
CONFIG_FEATURE_MDEV_EXEC=y
|
|
||||||
CONFIG_FEATURE_MDEV_LOAD_FIRMWARE=y
|
|
||||||
CONFIG_MKSWAP=y
|
|
||||||
CONFIG_FEATURE_MKSWAP_UUID=y
|
|
||||||
CONFIG_MORE=y
|
|
||||||
CONFIG_FEATURE_USE_TERMIOS=y
|
|
||||||
CONFIG_VOLUMEID=y
|
|
||||||
CONFIG_FEATURE_VOLUMEID_EXT=y
|
|
||||||
CONFIG_FEATURE_VOLUMEID_BTRFS=y
|
|
||||||
CONFIG_FEATURE_VOLUMEID_REISERFS=y
|
|
||||||
CONFIG_FEATURE_VOLUMEID_FAT=y
|
|
||||||
CONFIG_FEATURE_VOLUMEID_HFS=y
|
|
||||||
CONFIG_FEATURE_VOLUMEID_JFS=y
|
|
||||||
CONFIG_FEATURE_VOLUMEID_XFS=y
|
|
||||||
CONFIG_FEATURE_VOLUMEID_NTFS=y
|
|
||||||
CONFIG_FEATURE_VOLUMEID_ISO9660=y
|
|
||||||
CONFIG_FEATURE_VOLUMEID_UDF=y
|
|
||||||
CONFIG_FEATURE_VOLUMEID_LUKS=y
|
|
||||||
CONFIG_FEATURE_VOLUMEID_LINUXSWAP=y
|
|
||||||
CONFIG_FEATURE_VOLUMEID_CRAMFS=y
|
|
||||||
CONFIG_FEATURE_VOLUMEID_ROMFS=y
|
|
||||||
CONFIG_FEATURE_VOLUMEID_SYSV=y
|
|
||||||
CONFIG_FEATURE_VOLUMEID_OCFS2=y
|
|
||||||
CONFIG_FEATURE_VOLUMEID_LINUXRAID=y
|
|
||||||
CONFIG_MOUNT=y
|
|
||||||
CONFIG_FEATURE_MOUNT_FAKE=y
|
|
||||||
CONFIG_FEATURE_MOUNT_VERBOSE=y
|
|
||||||
# CONFIG_FEATURE_MOUNT_HELPERS is not set
|
|
||||||
CONFIG_FEATURE_MOUNT_LABEL=y
|
|
||||||
CONFIG_FEATURE_MOUNT_NFS=y
|
|
||||||
CONFIG_FEATURE_MOUNT_CIFS=y
|
|
||||||
CONFIG_FEATURE_MOUNT_FLAGS=y
|
|
||||||
CONFIG_FEATURE_MOUNT_FSTAB=y
|
|
||||||
CONFIG_PIVOT_ROOT=y
|
|
||||||
CONFIG_RDATE=y
|
|
||||||
CONFIG_RDEV=y
|
|
||||||
CONFIG_READPROFILE=y
|
|
||||||
CONFIG_RTCWAKE=y
|
|
||||||
CONFIG_SCRIPT=y
|
|
||||||
CONFIG_SCRIPTREPLAY=y
|
|
||||||
CONFIG_SETARCH=y
|
|
||||||
CONFIG_SWAPONOFF=y
|
|
||||||
CONFIG_FEATURE_SWAPON_PRI=y
|
|
||||||
CONFIG_SWITCH_ROOT=y
|
|
||||||
CONFIG_UMOUNT=y
|
|
||||||
CONFIG_FEATURE_UMOUNT_ALL=y
|
|
||||||
|
|
||||||
#
|
|
||||||
# Common options for mount/umount
|
|
||||||
#
|
|
||||||
CONFIG_FEATURE_MOUNT_LOOP=y
|
|
||||||
# CONFIG_FEATURE_MOUNT_LOOP_CREATE is not set
|
|
||||||
# CONFIG_FEATURE_MTAB_SUPPORT is not set
|
|
||||||
|
|
||||||
#
|
|
||||||
# Miscellaneous Utilities
|
|
||||||
#
|
|
||||||
CONFIG_ADJTIMEX=y
|
|
||||||
# CONFIG_BBCONFIG is not set
|
|
||||||
CONFIG_BEEP=y
|
|
||||||
CONFIG_FEATURE_BEEP_FREQ=4000
|
|
||||||
CONFIG_FEATURE_BEEP_LENGTH_MS=30
|
|
||||||
CONFIG_CHAT=y
|
|
||||||
CONFIG_FEATURE_CHAT_NOFAIL=y
|
|
||||||
# CONFIG_FEATURE_CHAT_TTY_HIFI is not set
|
|
||||||
CONFIG_FEATURE_CHAT_IMPLICIT_CR=y
|
|
||||||
CONFIG_FEATURE_CHAT_SWALLOW_OPTS=y
|
|
||||||
CONFIG_FEATURE_CHAT_SEND_ESCAPES=y
|
|
||||||
CONFIG_FEATURE_CHAT_VAR_ABORT_LEN=y
|
|
||||||
CONFIG_FEATURE_CHAT_CLR_ABORT=y
|
|
||||||
CONFIG_CHRT=y
|
|
||||||
CONFIG_CROND=y
|
|
||||||
CONFIG_FEATURE_CROND_D=y
|
|
||||||
CONFIG_FEATURE_CROND_CALL_SENDMAIL=y
|
|
||||||
CONFIG_FEATURE_CROND_DIR="/var/spool/cron"
|
|
||||||
CONFIG_CRONTAB=y
|
|
||||||
CONFIG_DC=y
|
|
||||||
CONFIG_FEATURE_DC_LIBM=y
|
|
||||||
# CONFIG_DEVFSD is not set
|
|
||||||
# CONFIG_DEVFSD_MODLOAD is not set
|
|
||||||
# CONFIG_DEVFSD_FG_NP is not set
|
|
||||||
# CONFIG_DEVFSD_VERBOSE is not set
|
|
||||||
# CONFIG_FEATURE_DEVFS is not set
|
|
||||||
CONFIG_DEVMEM=y
|
|
||||||
CONFIG_EJECT=y
|
|
||||||
CONFIG_FEATURE_EJECT_SCSI=y
|
|
||||||
CONFIG_FBSPLASH=y
|
|
||||||
CONFIG_FLASHCP=y
|
|
||||||
CONFIG_FLASH_LOCK=y
|
|
||||||
CONFIG_FLASH_UNLOCK=y
|
|
||||||
CONFIG_FLASH_ERASEALL=y
|
|
||||||
CONFIG_IONICE=y
|
|
||||||
CONFIG_INOTIFYD=y
|
|
||||||
CONFIG_LAST=y
|
|
||||||
# CONFIG_FEATURE_LAST_SMALL is not set
|
|
||||||
CONFIG_FEATURE_LAST_FANCY=y
|
|
||||||
CONFIG_LESS=y
|
|
||||||
CONFIG_FEATURE_LESS_MAXLINES=9999999
|
|
||||||
CONFIG_FEATURE_LESS_BRACKETS=y
|
|
||||||
CONFIG_FEATURE_LESS_FLAGS=y
|
|
||||||
CONFIG_FEATURE_LESS_MARKS=y
|
|
||||||
CONFIG_FEATURE_LESS_REGEXP=y
|
|
||||||
CONFIG_FEATURE_LESS_WINCH=y
|
|
||||||
CONFIG_FEATURE_LESS_DASHCMD=y
|
|
||||||
CONFIG_FEATURE_LESS_LINENUMS=y
|
|
||||||
CONFIG_HDPARM=y
|
|
||||||
CONFIG_FEATURE_HDPARM_GET_IDENTITY=y
|
|
||||||
CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF=y
|
|
||||||
CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF=y
|
|
||||||
CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET=y
|
|
||||||
CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF=y
|
|
||||||
CONFIG_FEATURE_HDPARM_HDIO_GETSET_DMA=y
|
|
||||||
CONFIG_MAKEDEVS=y
|
|
||||||
# CONFIG_FEATURE_MAKEDEVS_LEAF is not set
|
|
||||||
CONFIG_FEATURE_MAKEDEVS_TABLE=y
|
|
||||||
CONFIG_MAN=y
|
|
||||||
CONFIG_MICROCOM=y
|
|
||||||
CONFIG_MOUNTPOINT=y
|
|
||||||
CONFIG_MT=y
|
|
||||||
CONFIG_RAIDAUTORUN=y
|
|
||||||
CONFIG_READAHEAD=y
|
|
||||||
CONFIG_RUNLEVEL=y
|
|
||||||
CONFIG_RX=y
|
|
||||||
CONFIG_SETSID=y
|
|
||||||
CONFIG_STRINGS=y
|
|
||||||
CONFIG_TASKSET=y
|
|
||||||
CONFIG_FEATURE_TASKSET_FANCY=y
|
|
||||||
CONFIG_TIME=y
|
|
||||||
CONFIG_TIMEOUT=y
|
|
||||||
CONFIG_TTYSIZE=y
|
|
||||||
CONFIG_VOLNAME=y
|
|
||||||
CONFIG_WALL=y
|
|
||||||
CONFIG_WATCHDOG=y
|
|
||||||
|
|
||||||
#
|
|
||||||
# Networking Utilities
|
|
||||||
#
|
|
||||||
CONFIG_FEATURE_IPV6=y
|
|
||||||
# CONFIG_FEATURE_UNIX_LOCAL is not set
|
|
||||||
CONFIG_FEATURE_PREFER_IPV4_ADDRESS=y
|
|
||||||
# CONFIG_VERBOSE_RESOLUTION_ERRORS is not set
|
|
||||||
CONFIG_ARP=y
|
|
||||||
CONFIG_ARPING=y
|
|
||||||
CONFIG_BRCTL=y
|
|
||||||
CONFIG_FEATURE_BRCTL_FANCY=y
|
|
||||||
CONFIG_FEATURE_BRCTL_SHOW=y
|
|
||||||
CONFIG_DNSD=y
|
|
||||||
CONFIG_ETHER_WAKE=y
|
|
||||||
CONFIG_FAKEIDENTD=y
|
|
||||||
CONFIG_FTPD=y
|
|
||||||
CONFIG_FEATURE_FTP_WRITE=y
|
|
||||||
CONFIG_FEATURE_FTPD_ACCEPT_BROKEN_LIST=y
|
|
||||||
CONFIG_FTPGET=y
|
|
||||||
CONFIG_FTPPUT=y
|
|
||||||
CONFIG_FEATURE_FTPGETPUT_LONG_OPTIONS=y
|
|
||||||
CONFIG_HOSTNAME=y
|
|
||||||
CONFIG_HTTPD=y
|
|
||||||
CONFIG_FEATURE_HTTPD_RANGES=y
|
|
||||||
CONFIG_FEATURE_HTTPD_USE_SENDFILE=y
|
|
||||||
CONFIG_FEATURE_HTTPD_SETUID=y
|
|
||||||
CONFIG_FEATURE_HTTPD_BASIC_AUTH=y
|
|
||||||
CONFIG_FEATURE_HTTPD_AUTH_MD5=y
|
|
||||||
CONFIG_FEATURE_HTTPD_CGI=y
|
|
||||||
CONFIG_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR=y
|
|
||||||
CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV=y
|
|
||||||
CONFIG_FEATURE_HTTPD_ENCODE_URL_STR=y
|
|
||||||
CONFIG_FEATURE_HTTPD_ERROR_PAGES=y
|
|
||||||
CONFIG_FEATURE_HTTPD_PROXY=y
|
|
||||||
CONFIG_IFCONFIG=y
|
|
||||||
CONFIG_FEATURE_IFCONFIG_STATUS=y
|
|
||||||
CONFIG_FEATURE_IFCONFIG_SLIP=y
|
|
||||||
CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ=y
|
|
||||||
CONFIG_FEATURE_IFCONFIG_HW=y
|
|
||||||
CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS=y
|
|
||||||
CONFIG_IFENSLAVE=y
|
|
||||||
CONFIG_IFPLUGD=y
|
|
||||||
CONFIG_IFUPDOWN=y
|
|
||||||
CONFIG_IFUPDOWN_IFSTATE_PATH="/var/run/ifstate"
|
|
||||||
CONFIG_FEATURE_IFUPDOWN_IP=y
|
|
||||||
CONFIG_FEATURE_IFUPDOWN_IP_BUILTIN=y
|
|
||||||
# CONFIG_FEATURE_IFUPDOWN_IFCONFIG_BUILTIN is not set
|
|
||||||
CONFIG_FEATURE_IFUPDOWN_IPV4=y
|
|
||||||
CONFIG_FEATURE_IFUPDOWN_IPV6=y
|
|
||||||
CONFIG_FEATURE_IFUPDOWN_MAPPING=y
|
|
||||||
# CONFIG_FEATURE_IFUPDOWN_EXTERNAL_DHCP is not set
|
|
||||||
CONFIG_INETD=y
|
|
||||||
CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_ECHO=y
|
|
||||||
CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD=y
|
|
||||||
CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_TIME=y
|
|
||||||
CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME=y
|
|
||||||
CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN=y
|
|
||||||
CONFIG_FEATURE_INETD_RPC=y
|
|
||||||
CONFIG_IP=y
|
|
||||||
CONFIG_FEATURE_IP_ADDRESS=y
|
|
||||||
CONFIG_FEATURE_IP_LINK=y
|
|
||||||
CONFIG_FEATURE_IP_ROUTE=y
|
|
||||||
CONFIG_FEATURE_IP_TUNNEL=y
|
|
||||||
CONFIG_FEATURE_IP_RULE=y
|
|
||||||
CONFIG_FEATURE_IP_SHORT_FORMS=y
|
|
||||||
# CONFIG_FEATURE_IP_RARE_PROTOCOLS is not set
|
|
||||||
CONFIG_IPADDR=y
|
|
||||||
CONFIG_IPLINK=y
|
|
||||||
CONFIG_IPROUTE=y
|
|
||||||
CONFIG_IPTUNNEL=y
|
|
||||||
CONFIG_IPRULE=y
|
|
||||||
CONFIG_IPCALC=y
|
|
||||||
CONFIG_FEATURE_IPCALC_FANCY=y
|
|
||||||
CONFIG_FEATURE_IPCALC_LONG_OPTIONS=y
|
|
||||||
CONFIG_NAMEIF=y
|
|
||||||
CONFIG_FEATURE_NAMEIF_EXTENDED=y
|
|
||||||
CONFIG_NC=y
|
|
||||||
CONFIG_NC_SERVER=y
|
|
||||||
CONFIG_NC_EXTRA=y
|
|
||||||
CONFIG_NETSTAT=y
|
|
||||||
CONFIG_FEATURE_NETSTAT_WIDE=y
|
|
||||||
CONFIG_FEATURE_NETSTAT_PRG=y
|
|
||||||
CONFIG_NSLOOKUP=y
|
|
||||||
CONFIG_NTPD=y
|
|
||||||
CONFIG_FEATURE_NTPD_SERVER=y
|
|
||||||
CONFIG_PING=y
|
|
||||||
CONFIG_PING6=y
|
|
||||||
CONFIG_FEATURE_FANCY_PING=y
|
|
||||||
CONFIG_PSCAN=y
|
|
||||||
CONFIG_ROUTE=y
|
|
||||||
CONFIG_SLATTACH=y
|
|
||||||
CONFIG_TELNET=y
|
|
||||||
CONFIG_FEATURE_TELNET_TTYPE=y
|
|
||||||
CONFIG_FEATURE_TELNET_AUTOLOGIN=y
|
|
||||||
CONFIG_TELNETD=y
|
|
||||||
CONFIG_FEATURE_TELNETD_STANDALONE=y
|
|
||||||
CONFIG_FEATURE_TELNETD_INETD_WAIT=y
|
|
||||||
CONFIG_TFTP=y
|
|
||||||
CONFIG_TFTPD=y
|
|
||||||
CONFIG_FEATURE_TFTP_GET=y
|
|
||||||
CONFIG_FEATURE_TFTP_PUT=y
|
|
||||||
CONFIG_FEATURE_TFTP_BLOCKSIZE=y
|
|
||||||
CONFIG_FEATURE_TFTP_PROGRESS_BAR=y
|
|
||||||
# CONFIG_TFTP_DEBUG is not set
|
|
||||||
CONFIG_TRACEROUTE=y
|
|
||||||
CONFIG_TRACEROUTE6=y
|
|
||||||
CONFIG_FEATURE_TRACEROUTE_VERBOSE=y
|
|
||||||
# CONFIG_FEATURE_TRACEROUTE_SOURCE_ROUTE is not set
|
|
||||||
# CONFIG_FEATURE_TRACEROUTE_USE_ICMP is not set
|
|
||||||
CONFIG_UDHCPD=y
|
|
||||||
CONFIG_DHCPRELAY=y
|
|
||||||
CONFIG_DUMPLEASES=y
|
|
||||||
CONFIG_FEATURE_UDHCPD_WRITE_LEASES_EARLY=y
|
|
||||||
CONFIG_DHCPD_LEASES_FILE="/var/lib/misc/udhcpd.leases"
|
|
||||||
CONFIG_UDHCPC=y
|
|
||||||
CONFIG_FEATURE_UDHCPC_ARPING=y
|
|
||||||
CONFIG_FEATURE_UDHCP_PORT=y
|
|
||||||
CONFIG_UDHCP_DEBUG=9
|
|
||||||
CONFIG_FEATURE_UDHCP_RFC3397=y
|
|
||||||
CONFIG_UDHCPC_DEFAULT_SCRIPT="/usr/share/udhcpc/default.script"
|
|
||||||
CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS=80
|
|
||||||
CONFIG_IFUPDOWN_UDHCPC_CMD_OPTIONS="-R -n"
|
|
||||||
CONFIG_VCONFIG=y
|
|
||||||
CONFIG_WGET=y
|
|
||||||
CONFIG_FEATURE_WGET_STATUSBAR=y
|
|
||||||
CONFIG_FEATURE_WGET_AUTHENTICATION=y
|
|
||||||
CONFIG_FEATURE_WGET_LONG_OPTIONS=y
|
|
||||||
CONFIG_ZCIP=y
|
|
||||||
CONFIG_TCPSVD=y
|
|
||||||
CONFIG_TUNCTL=y
|
|
||||||
CONFIG_FEATURE_TUNCTL_UG=y
|
|
||||||
CONFIG_UDPSVD=y
|
|
||||||
|
|
||||||
#
|
|
||||||
# Print Utilities
|
|
||||||
#
|
|
||||||
CONFIG_LPD=y
|
|
||||||
CONFIG_LPR=y
|
|
||||||
CONFIG_LPQ=y
|
|
||||||
|
|
||||||
#
|
|
||||||
# Mail Utilities
|
|
||||||
#
|
|
||||||
CONFIG_MAKEMIME=y
|
|
||||||
CONFIG_FEATURE_MIME_CHARSET="us-ascii"
|
|
||||||
CONFIG_POPMAILDIR=y
|
|
||||||
CONFIG_FEATURE_POPMAILDIR_DELIVERY=y
|
|
||||||
CONFIG_REFORMIME=y
|
|
||||||
CONFIG_FEATURE_REFORMIME_COMPAT=y
|
|
||||||
CONFIG_SENDMAIL=y
|
|
||||||
|
|
||||||
#
|
|
||||||
# Process Utilities
|
|
||||||
#
|
|
||||||
CONFIG_FREE=y
|
|
||||||
CONFIG_FUSER=y
|
|
||||||
CONFIG_KILL=y
|
|
||||||
CONFIG_KILLALL=y
|
|
||||||
CONFIG_KILLALL5=y
|
|
||||||
CONFIG_NMETER=y
|
|
||||||
CONFIG_PGREP=y
|
|
||||||
CONFIG_PIDOF=y
|
|
||||||
CONFIG_FEATURE_PIDOF_SINGLE=y
|
|
||||||
CONFIG_FEATURE_PIDOF_OMIT=y
|
|
||||||
CONFIG_PKILL=y
|
|
||||||
CONFIG_PS=y
|
|
||||||
CONFIG_FEATURE_PS_WIDE=y
|
|
||||||
# CONFIG_FEATURE_PS_TIME is not set
|
|
||||||
# CONFIG_FEATURE_PS_ADDITIONAL_COLUMNS is not set
|
|
||||||
# CONFIG_FEATURE_PS_UNUSUAL_SYSTEMS is not set
|
|
||||||
CONFIG_RENICE=y
|
|
||||||
CONFIG_BB_SYSCTL=y
|
|
||||||
CONFIG_TOP=y
|
|
||||||
CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE=y
|
|
||||||
CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS=y
|
|
||||||
CONFIG_FEATURE_TOP_SMP_CPU=y
|
|
||||||
CONFIG_FEATURE_TOP_DECIMALS=y
|
|
||||||
CONFIG_FEATURE_TOP_SMP_PROCESS=y
|
|
||||||
CONFIG_FEATURE_TOPMEM=y
|
|
||||||
CONFIG_FEATURE_SHOW_THREADS=y
|
|
||||||
CONFIG_UPTIME=y
|
|
||||||
CONFIG_WATCH=y
|
|
||||||
|
|
||||||
#
|
|
||||||
# Runit Utilities
|
|
||||||
#
|
|
||||||
CONFIG_RUNSV=y
|
|
||||||
CONFIG_RUNSVDIR=y
|
|
||||||
# CONFIG_FEATURE_RUNSVDIR_LOG is not set
|
|
||||||
CONFIG_SV=y
|
|
||||||
CONFIG_SV_DEFAULT_SERVICE_DIR="/var/service"
|
|
||||||
CONFIG_SVLOGD=y
|
|
||||||
CONFIG_CHPST=y
|
|
||||||
CONFIG_SETUIDGID=y
|
|
||||||
CONFIG_ENVUIDGID=y
|
|
||||||
CONFIG_ENVDIR=y
|
|
||||||
CONFIG_SOFTLIMIT=y
|
|
||||||
# CONFIG_CHCON is not set
|
|
||||||
# CONFIG_FEATURE_CHCON_LONG_OPTIONS is not set
|
|
||||||
# CONFIG_GETENFORCE is not set
|
|
||||||
# CONFIG_GETSEBOOL is not set
|
|
||||||
# CONFIG_LOAD_POLICY is not set
|
|
||||||
# CONFIG_MATCHPATHCON is not set
|
|
||||||
# CONFIG_RESTORECON is not set
|
|
||||||
# CONFIG_RUNCON is not set
|
|
||||||
# CONFIG_FEATURE_RUNCON_LONG_OPTIONS is not set
|
|
||||||
# CONFIG_SELINUXENABLED is not set
|
|
||||||
# CONFIG_SETENFORCE is not set
|
|
||||||
# CONFIG_SETFILES is not set
|
|
||||||
# CONFIG_FEATURE_SETFILES_CHECK_OPTION is not set
|
|
||||||
# CONFIG_SETSEBOOL is not set
|
|
||||||
# CONFIG_SESTATUS is not set
|
|
||||||
|
|
||||||
#
|
|
||||||
# Shells
|
|
||||||
#
|
|
||||||
CONFIG_FEATURE_SH_IS_ASH=y
|
|
||||||
# CONFIG_FEATURE_SH_IS_HUSH is not set
|
|
||||||
# CONFIG_FEATURE_SH_IS_NONE is not set
|
|
||||||
CONFIG_ASH=y
|
|
||||||
CONFIG_ASH_BASH_COMPAT=y
|
|
||||||
CONFIG_ASH_JOB_CONTROL=y
|
|
||||||
CONFIG_ASH_ALIAS=y
|
|
||||||
CONFIG_ASH_GETOPTS=y
|
|
||||||
CONFIG_ASH_BUILTIN_ECHO=y
|
|
||||||
CONFIG_ASH_BUILTIN_PRINTF=y
|
|
||||||
CONFIG_ASH_BUILTIN_TEST=y
|
|
||||||
CONFIG_ASH_CMDCMD=y
|
|
||||||
# CONFIG_ASH_MAIL is not set
|
|
||||||
CONFIG_ASH_OPTIMIZE_FOR_SIZE=y
|
|
||||||
CONFIG_ASH_RANDOM_SUPPORT=y
|
|
||||||
CONFIG_ASH_EXPAND_PRMT=y
|
|
||||||
CONFIG_HUSH=y
|
|
||||||
CONFIG_HUSH_BASH_COMPAT=y
|
|
||||||
CONFIG_HUSH_HELP=y
|
|
||||||
CONFIG_HUSH_INTERACTIVE=y
|
|
||||||
CONFIG_HUSH_JOB=y
|
|
||||||
CONFIG_HUSH_TICK=y
|
|
||||||
CONFIG_HUSH_IF=y
|
|
||||||
CONFIG_HUSH_LOOPS=y
|
|
||||||
CONFIG_HUSH_CASE=y
|
|
||||||
CONFIG_HUSH_FUNCTIONS=y
|
|
||||||
CONFIG_HUSH_LOCAL=y
|
|
||||||
CONFIG_HUSH_EXPORT_N=y
|
|
||||||
CONFIG_HUSH_RANDOM_SUPPORT=y
|
|
||||||
# CONFIG_LASH is not set
|
|
||||||
CONFIG_MSH=y
|
|
||||||
CONFIG_SH_MATH_SUPPORT=y
|
|
||||||
CONFIG_SH_MATH_SUPPORT_64=y
|
|
||||||
CONFIG_FEATURE_SH_EXTRA_QUIET=y
|
|
||||||
# CONFIG_FEATURE_SH_STANDALONE is not set
|
|
||||||
# CONFIG_FEATURE_SH_NOFORK is not set
|
|
||||||
CONFIG_CTTYHACK=y
|
|
||||||
|
|
||||||
#
|
|
||||||
# System Logging Utilities
|
|
||||||
#
|
|
||||||
CONFIG_SYSLOGD=y
|
|
||||||
CONFIG_FEATURE_ROTATE_LOGFILE=y
|
|
||||||
CONFIG_FEATURE_REMOTE_LOG=y
|
|
||||||
CONFIG_FEATURE_SYSLOGD_DUP=y
|
|
||||||
CONFIG_FEATURE_IPC_SYSLOG=y
|
|
||||||
CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE=16
|
|
||||||
CONFIG_LOGREAD=y
|
|
||||||
CONFIG_FEATURE_LOGREAD_REDUCED_LOCKING=y
|
|
||||||
CONFIG_KLOGD=y
|
|
||||||
CONFIG_LOGGER=y
|
|
@ -22,7 +22,7 @@ static int conf_lineno, conf_warnings, conf_unsaved;
|
|||||||
|
|
||||||
const char conf_def_filename[] = ".config";
|
const char conf_def_filename[] = ".config";
|
||||||
|
|
||||||
const char conf_defname[] = "scripts/defconfig";
|
const char conf_defname[] = "/dev/null"; //bbox
|
||||||
|
|
||||||
const char *conf_confnames[] = {
|
const char *conf_confnames[] = {
|
||||||
conf_def_filename,
|
conf_def_filename,
|
||||||
|
14
scripts/test_make_clean
Executable file
14
scripts/test_make_clean
Executable file
@ -0,0 +1,14 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
b=`basename $PWD`
|
||||||
|
test "${b#busybox}" != "$b" || { echo "Must be run in busybox tree"; exit 1; }
|
||||||
|
|
||||||
|
cd ..
|
||||||
|
cp -pPR "$b" busybox.$$.test_tree
|
||||||
|
cd busybox.$$.test_tree
|
||||||
|
make defconfig
|
||||||
|
make $MAKEOPTS
|
||||||
|
make clean
|
||||||
|
cd ..
|
||||||
|
diff -urp "$b" busybox.$$.test_tree >busybox.$$.test_tree.diff
|
||||||
|
cat busybox.$$.test_tree.diff
|
@ -7,7 +7,7 @@ menu "Shells"
|
|||||||
|
|
||||||
choice
|
choice
|
||||||
prompt "Choose which shell is aliased to 'sh' name"
|
prompt "Choose which shell is aliased to 'sh' name"
|
||||||
default FEATURE_SH_IS_NONE
|
default FEATURE_SH_IS_ASH
|
||||||
help
|
help
|
||||||
Choose which shell you want to be executed by 'sh' alias.
|
Choose which shell you want to be executed by 'sh' alias.
|
||||||
The ash shell is the most bash compatible and full featured one.
|
The ash shell is the most bash compatible and full featured one.
|
||||||
@ -59,7 +59,7 @@ endchoice
|
|||||||
|
|
||||||
config ASH
|
config ASH
|
||||||
bool "ash"
|
bool "ash"
|
||||||
default n
|
default y
|
||||||
depends on !NOMMU
|
depends on !NOMMU
|
||||||
help
|
help
|
||||||
Tha 'ash' shell adds about 60k in the default configuration and is
|
Tha 'ash' shell adds about 60k in the default configuration and is
|
||||||
@ -91,7 +91,7 @@ config ASH_ALIAS
|
|||||||
|
|
||||||
config ASH_GETOPTS
|
config ASH_GETOPTS
|
||||||
bool "Builtin getopt to parse positional parameters"
|
bool "Builtin getopt to parse positional parameters"
|
||||||
default n
|
default y
|
||||||
depends on ASH
|
depends on ASH
|
||||||
help
|
help
|
||||||
Enable getopts builtin in the ash shell.
|
Enable getopts builtin in the ash shell.
|
||||||
@ -119,7 +119,7 @@ config ASH_BUILTIN_TEST
|
|||||||
|
|
||||||
config ASH_CMDCMD
|
config ASH_CMDCMD
|
||||||
bool "'command' command to override shell builtins"
|
bool "'command' command to override shell builtins"
|
||||||
default n
|
default y
|
||||||
depends on ASH
|
depends on ASH
|
||||||
help
|
help
|
||||||
Enable support for the ash 'command' builtin, which allows
|
Enable support for the ash 'command' builtin, which allows
|
||||||
@ -128,7 +128,7 @@ config ASH_CMDCMD
|
|||||||
|
|
||||||
config ASH_MAIL
|
config ASH_MAIL
|
||||||
bool "Check for new mail on interactive shells"
|
bool "Check for new mail on interactive shells"
|
||||||
default y
|
default n
|
||||||
depends on ASH
|
depends on ASH
|
||||||
help
|
help
|
||||||
Enable "check for new mail" in the ash shell.
|
Enable "check for new mail" in the ash shell.
|
||||||
@ -142,7 +142,7 @@ config ASH_OPTIMIZE_FOR_SIZE
|
|||||||
|
|
||||||
config ASH_RANDOM_SUPPORT
|
config ASH_RANDOM_SUPPORT
|
||||||
bool "Pseudorandom generator and $RANDOM variable"
|
bool "Pseudorandom generator and $RANDOM variable"
|
||||||
default n
|
default y
|
||||||
depends on ASH
|
depends on ASH
|
||||||
help
|
help
|
||||||
Enable pseudorandom generator and dynamic variable "$RANDOM".
|
Enable pseudorandom generator and dynamic variable "$RANDOM".
|
||||||
@ -153,7 +153,7 @@ config ASH_RANDOM_SUPPORT
|
|||||||
|
|
||||||
config ASH_EXPAND_PRMT
|
config ASH_EXPAND_PRMT
|
||||||
bool "Expand prompt string"
|
bool "Expand prompt string"
|
||||||
default n
|
default y
|
||||||
depends on ASH
|
depends on ASH
|
||||||
help
|
help
|
||||||
"PS#" may contain volatile content, such as backquote commands.
|
"PS#" may contain volatile content, such as backquote commands.
|
||||||
@ -162,7 +162,7 @@ config ASH_EXPAND_PRMT
|
|||||||
|
|
||||||
config HUSH
|
config HUSH
|
||||||
bool "hush"
|
bool "hush"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
hush is a small shell (22k). It handles the normal flow control
|
hush is a small shell (22k). It handles the normal flow control
|
||||||
constructs such as if/then/elif/else/fi, for/in/do/done, while loops,
|
constructs such as if/then/elif/else/fi, for/in/do/done, while loops,
|
||||||
@ -183,7 +183,7 @@ config HUSH_BASH_COMPAT
|
|||||||
|
|
||||||
config HUSH_HELP
|
config HUSH_HELP
|
||||||
bool "help builtin"
|
bool "help builtin"
|
||||||
default n
|
default y
|
||||||
depends on HUSH
|
depends on HUSH
|
||||||
help
|
help
|
||||||
Enable help builtin in hush. Code size + ~1 kbyte.
|
Enable help builtin in hush. Code size + ~1 kbyte.
|
||||||
@ -200,7 +200,7 @@ config HUSH_INTERACTIVE
|
|||||||
|
|
||||||
config HUSH_JOB
|
config HUSH_JOB
|
||||||
bool "Job control"
|
bool "Job control"
|
||||||
default n
|
default y
|
||||||
depends on HUSH_INTERACTIVE
|
depends on HUSH_INTERACTIVE
|
||||||
help
|
help
|
||||||
Enable job control: Ctrl-Z backgrounds, Ctrl-C interrupts current
|
Enable job control: Ctrl-Z backgrounds, Ctrl-C interrupts current
|
||||||
@ -211,56 +211,56 @@ config HUSH_JOB
|
|||||||
|
|
||||||
config HUSH_TICK
|
config HUSH_TICK
|
||||||
bool "Process substitution"
|
bool "Process substitution"
|
||||||
default n
|
default y
|
||||||
depends on HUSH
|
depends on HUSH
|
||||||
help
|
help
|
||||||
Enable process substitution `command` and $(command) in hush.
|
Enable process substitution `command` and $(command) in hush.
|
||||||
|
|
||||||
config HUSH_IF
|
config HUSH_IF
|
||||||
bool "Support if/then/elif/else/fi"
|
bool "Support if/then/elif/else/fi"
|
||||||
default n
|
default y
|
||||||
depends on HUSH
|
depends on HUSH
|
||||||
help
|
help
|
||||||
Enable if/then/elif/else/fi in hush.
|
Enable if/then/elif/else/fi in hush.
|
||||||
|
|
||||||
config HUSH_LOOPS
|
config HUSH_LOOPS
|
||||||
bool "Support for, while and until loops"
|
bool "Support for, while and until loops"
|
||||||
default n
|
default y
|
||||||
depends on HUSH
|
depends on HUSH
|
||||||
help
|
help
|
||||||
Enable for, while and until loops in hush.
|
Enable for, while and until loops in hush.
|
||||||
|
|
||||||
config HUSH_CASE
|
config HUSH_CASE
|
||||||
bool "Support case ... esac statement"
|
bool "Support case ... esac statement"
|
||||||
default n
|
default y
|
||||||
depends on HUSH
|
depends on HUSH
|
||||||
help
|
help
|
||||||
Enable case ... esac statement in hush. +400 bytes.
|
Enable case ... esac statement in hush. +400 bytes.
|
||||||
|
|
||||||
config HUSH_FUNCTIONS
|
config HUSH_FUNCTIONS
|
||||||
bool "Support funcname() { commands; } syntax"
|
bool "Support funcname() { commands; } syntax"
|
||||||
default n
|
default y
|
||||||
depends on HUSH
|
depends on HUSH
|
||||||
help
|
help
|
||||||
Enable support for shell functions in hush. +800 bytes.
|
Enable support for shell functions in hush. +800 bytes.
|
||||||
|
|
||||||
config HUSH_LOCAL
|
config HUSH_LOCAL
|
||||||
bool "Support local builtin"
|
bool "Support local builtin"
|
||||||
default n
|
default y
|
||||||
depends on HUSH_FUNCTIONS
|
depends on HUSH_FUNCTIONS
|
||||||
help
|
help
|
||||||
Enable support for local variables in functions.
|
Enable support for local variables in functions.
|
||||||
|
|
||||||
config HUSH_EXPORT_N
|
config HUSH_EXPORT_N
|
||||||
bool "Support export '-n' option"
|
bool "Support export '-n' option"
|
||||||
default n
|
default y
|
||||||
depends on HUSH
|
depends on HUSH
|
||||||
help
|
help
|
||||||
Enable support for export '-n' option in hush. It is a bash extension.
|
Enable support for export '-n' option in hush. It is a bash extension.
|
||||||
|
|
||||||
config HUSH_RANDOM_SUPPORT
|
config HUSH_RANDOM_SUPPORT
|
||||||
bool "Pseudorandom generator and $RANDOM variable"
|
bool "Pseudorandom generator and $RANDOM variable"
|
||||||
default n
|
default y
|
||||||
depends on HUSH
|
depends on HUSH
|
||||||
help
|
help
|
||||||
Enable pseudorandom generator and dynamic variable "$RANDOM".
|
Enable pseudorandom generator and dynamic variable "$RANDOM".
|
||||||
@ -298,7 +298,7 @@ config SH_MATH_SUPPORT
|
|||||||
|
|
||||||
config SH_MATH_SUPPORT_64
|
config SH_MATH_SUPPORT_64
|
||||||
bool "Extend POSIX math support to 64 bit"
|
bool "Extend POSIX math support to 64 bit"
|
||||||
default n
|
default y
|
||||||
depends on SH_MATH_SUPPORT
|
depends on SH_MATH_SUPPORT
|
||||||
help
|
help
|
||||||
Enable 64-bit math support in the shell. This will make the shell
|
Enable 64-bit math support in the shell. This will make the shell
|
||||||
@ -307,15 +307,15 @@ config SH_MATH_SUPPORT_64
|
|||||||
|
|
||||||
config FEATURE_SH_EXTRA_QUIET
|
config FEATURE_SH_EXTRA_QUIET
|
||||||
bool "Hide message on interactive shell startup"
|
bool "Hide message on interactive shell startup"
|
||||||
default n
|
default y
|
||||||
depends on MSH || LASH || HUSH || ASH
|
depends on HUSH || ASH
|
||||||
help
|
help
|
||||||
Remove the busybox introduction when starting a shell.
|
Remove the busybox introduction when starting a shell.
|
||||||
|
|
||||||
config FEATURE_SH_STANDALONE
|
config FEATURE_SH_STANDALONE
|
||||||
bool "Standalone shell"
|
bool "Standalone shell"
|
||||||
default n
|
default n
|
||||||
depends on (MSH || LASH || HUSH || ASH) && FEATURE_PREFER_APPLETS
|
depends on (HUSH || ASH) && FEATURE_PREFER_APPLETS
|
||||||
help
|
help
|
||||||
This option causes busybox shells to use busybox applets
|
This option causes busybox shells to use busybox applets
|
||||||
in preference to executables in the PATH whenever possible. For
|
in preference to executables in the PATH whenever possible. For
|
||||||
@ -348,7 +348,7 @@ config FEATURE_SH_STANDALONE
|
|||||||
config FEATURE_SH_NOFORK
|
config FEATURE_SH_NOFORK
|
||||||
bool "Run 'nofork' applets directly"
|
bool "Run 'nofork' applets directly"
|
||||||
default n
|
default n
|
||||||
depends on (MSH || LASH || HUSH || ASH) && FEATURE_PREFER_APPLETS
|
depends on (HUSH || ASH) && FEATURE_PREFER_APPLETS
|
||||||
help
|
help
|
||||||
This option causes busybox shells [currently only ash]
|
This option causes busybox shells [currently only ash]
|
||||||
to not execute typical fork/exec/wait sequence, but call <applet>_main
|
to not execute typical fork/exec/wait sequence, but call <applet>_main
|
||||||
@ -364,7 +364,7 @@ config FEATURE_SH_NOFORK
|
|||||||
|
|
||||||
config CTTYHACK
|
config CTTYHACK
|
||||||
bool "cttyhack"
|
bool "cttyhack"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
One common problem reported on the mailing list is "can't access tty;
|
One common problem reported on the mailing list is "can't access tty;
|
||||||
job control turned off" error message which typically appears when
|
job control turned off" error message which typically appears when
|
||||||
|
@ -7,7 +7,7 @@ menu "System Logging Utilities"
|
|||||||
|
|
||||||
config SYSLOGD
|
config SYSLOGD
|
||||||
bool "syslogd"
|
bool "syslogd"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
The syslogd utility is used to record logs of all the
|
The syslogd utility is used to record logs of all the
|
||||||
significant events that occur on a system. Every
|
significant events that occur on a system. Every
|
||||||
@ -22,7 +22,7 @@ config SYSLOGD
|
|||||||
|
|
||||||
config FEATURE_ROTATE_LOGFILE
|
config FEATURE_ROTATE_LOGFILE
|
||||||
bool "Rotate message files"
|
bool "Rotate message files"
|
||||||
default n
|
default y
|
||||||
depends on SYSLOGD
|
depends on SYSLOGD
|
||||||
help
|
help
|
||||||
This enables syslogd to rotate the message files
|
This enables syslogd to rotate the message files
|
||||||
@ -30,7 +30,7 @@ config FEATURE_ROTATE_LOGFILE
|
|||||||
|
|
||||||
config FEATURE_REMOTE_LOG
|
config FEATURE_REMOTE_LOG
|
||||||
bool "Remote Log support"
|
bool "Remote Log support"
|
||||||
default n
|
default y
|
||||||
depends on SYSLOGD
|
depends on SYSLOGD
|
||||||
help
|
help
|
||||||
When you enable this feature, the syslogd utility can
|
When you enable this feature, the syslogd utility can
|
||||||
@ -44,7 +44,7 @@ config FEATURE_REMOTE_LOG
|
|||||||
|
|
||||||
config FEATURE_SYSLOGD_DUP
|
config FEATURE_SYSLOGD_DUP
|
||||||
bool "Support -D (drop dups) option"
|
bool "Support -D (drop dups) option"
|
||||||
default n
|
default y
|
||||||
depends on SYSLOGD
|
depends on SYSLOGD
|
||||||
help
|
help
|
||||||
Option -D instructs syslogd to drop consecutive messages
|
Option -D instructs syslogd to drop consecutive messages
|
||||||
@ -62,7 +62,7 @@ config FEATURE_SYSLOGD_READ_BUFFER_SIZE
|
|||||||
|
|
||||||
config FEATURE_IPC_SYSLOG
|
config FEATURE_IPC_SYSLOG
|
||||||
bool "Circular Buffer support"
|
bool "Circular Buffer support"
|
||||||
default n
|
default y
|
||||||
depends on SYSLOGD
|
depends on SYSLOGD
|
||||||
help
|
help
|
||||||
When you enable this feature, the syslogd utility will
|
When you enable this feature, the syslogd utility will
|
||||||
@ -95,7 +95,7 @@ config LOGREAD
|
|||||||
|
|
||||||
config FEATURE_LOGREAD_REDUCED_LOCKING
|
config FEATURE_LOGREAD_REDUCED_LOCKING
|
||||||
bool "Double buffering"
|
bool "Double buffering"
|
||||||
default n
|
default y
|
||||||
depends on LOGREAD
|
depends on LOGREAD
|
||||||
help
|
help
|
||||||
'logread' ouput to slow serial terminals can have
|
'logread' ouput to slow serial terminals can have
|
||||||
@ -106,7 +106,7 @@ config FEATURE_LOGREAD_REDUCED_LOCKING
|
|||||||
|
|
||||||
config KLOGD
|
config KLOGD
|
||||||
bool "klogd"
|
bool "klogd"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
klogd is a utility which intercepts and logs all
|
klogd is a utility which intercepts and logs all
|
||||||
messages from the Linux kernel and sends the messages
|
messages from the Linux kernel and sends the messages
|
||||||
@ -116,7 +116,7 @@ config KLOGD
|
|||||||
|
|
||||||
config LOGGER
|
config LOGGER
|
||||||
bool "logger"
|
bool "logger"
|
||||||
default n
|
default y
|
||||||
select FEATURE_SYSLOG
|
select FEATURE_SYSLOG
|
||||||
help
|
help
|
||||||
The logger utility allows you to send arbitrary text
|
The logger utility allows you to send arbitrary text
|
||||||
|
@ -7,7 +7,7 @@ menu "Linux System Utilities"
|
|||||||
|
|
||||||
config ACPID
|
config ACPID
|
||||||
bool "acpid"
|
bool "acpid"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
acpid listens to ACPI events coming either in textual form from
|
acpid listens to ACPI events coming either in textual form from
|
||||||
/proc/acpi/event (though it is marked deprecated it is still widely
|
/proc/acpi/event (though it is marked deprecated it is still widely
|
||||||
@ -22,14 +22,14 @@ config ACPID
|
|||||||
|
|
||||||
config FEATURE_ACPID_COMPAT
|
config FEATURE_ACPID_COMPAT
|
||||||
bool "Accept and ignore redundant options"
|
bool "Accept and ignore redundant options"
|
||||||
default n
|
default y
|
||||||
depends on ACPID
|
depends on ACPID
|
||||||
help
|
help
|
||||||
Accept and ignore compatibility options -g -m -s -S -v.
|
Accept and ignore compatibility options -g -m -s -S -v.
|
||||||
|
|
||||||
config BLKID
|
config BLKID
|
||||||
bool "blkid"
|
bool "blkid"
|
||||||
default n
|
default y
|
||||||
select VOLUMEID
|
select VOLUMEID
|
||||||
help
|
help
|
||||||
Lists labels and UUIDs of all filesystems.
|
Lists labels and UUIDs of all filesystems.
|
||||||
@ -38,7 +38,7 @@ config BLKID
|
|||||||
|
|
||||||
config DMESG
|
config DMESG
|
||||||
bool "dmesg"
|
bool "dmesg"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
dmesg is used to examine or control the kernel ring buffer. When the
|
dmesg is used to examine or control the kernel ring buffer. When the
|
||||||
Linux kernel prints messages to the system log, they are stored in
|
Linux kernel prints messages to the system log, they are stored in
|
||||||
@ -71,7 +71,7 @@ config FEATURE_DMESG_PRETTY
|
|||||||
|
|
||||||
config FBSET
|
config FBSET
|
||||||
bool "fbset"
|
bool "fbset"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
fbset is used to show or change the settings of a Linux frame buffer
|
fbset is used to show or change the settings of a Linux frame buffer
|
||||||
device. The frame buffer device provides a simple and unique
|
device. The frame buffer device provides a simple and unique
|
||||||
@ -80,7 +80,7 @@ config FBSET
|
|||||||
|
|
||||||
config FEATURE_FBSET_FANCY
|
config FEATURE_FBSET_FANCY
|
||||||
bool "Turn on extra fbset options"
|
bool "Turn on extra fbset options"
|
||||||
default n
|
default y
|
||||||
depends on FBSET
|
depends on FBSET
|
||||||
help
|
help
|
||||||
This option enables extended fbset options, allowing one to set the
|
This option enables extended fbset options, allowing one to set the
|
||||||
@ -90,7 +90,7 @@ config FEATURE_FBSET_FANCY
|
|||||||
|
|
||||||
config FEATURE_FBSET_READMODE
|
config FEATURE_FBSET_READMODE
|
||||||
bool "Turn on fbset readmode support"
|
bool "Turn on fbset readmode support"
|
||||||
default n
|
default y
|
||||||
depends on FBSET
|
depends on FBSET
|
||||||
help
|
help
|
||||||
This option allows fbset to read the video mode database stored by
|
This option allows fbset to read the video mode database stored by
|
||||||
@ -99,7 +99,7 @@ config FEATURE_FBSET_READMODE
|
|||||||
|
|
||||||
config FDFLUSH
|
config FDFLUSH
|
||||||
bool "fdflush"
|
bool "fdflush"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
fdflush is only needed when changing media on slightly-broken
|
fdflush is only needed when changing media on slightly-broken
|
||||||
removable media drives. It is used to make Linux believe that a
|
removable media drives. It is used to make Linux believe that a
|
||||||
@ -111,13 +111,13 @@ config FDFLUSH
|
|||||||
|
|
||||||
config FDFORMAT
|
config FDFORMAT
|
||||||
bool "fdformat"
|
bool "fdformat"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
fdformat is used to low-level format a floppy disk.
|
fdformat is used to low-level format a floppy disk.
|
||||||
|
|
||||||
config FDISK
|
config FDISK
|
||||||
bool "fdisk"
|
bool "fdisk"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
The fdisk utility is used to divide hard disks into one or more
|
The fdisk utility is used to divide hard disks into one or more
|
||||||
logical disks, which are generally called partitions. This utility
|
logical disks, which are generally called partitions. This utility
|
||||||
@ -174,7 +174,7 @@ config FEATURE_OSF_LABEL
|
|||||||
|
|
||||||
config FEATURE_FDISK_ADVANCED
|
config FEATURE_FDISK_ADVANCED
|
||||||
bool "Support expert mode"
|
bool "Support expert mode"
|
||||||
default n
|
default y
|
||||||
depends on FDISK && FEATURE_FDISK_WRITABLE
|
depends on FDISK && FEATURE_FDISK_WRITABLE
|
||||||
help
|
help
|
||||||
Enabling this option allows you to do terribly unsafe things like
|
Enabling this option allows you to do terribly unsafe things like
|
||||||
@ -184,7 +184,7 @@ config FEATURE_FDISK_ADVANCED
|
|||||||
|
|
||||||
config FINDFS
|
config FINDFS
|
||||||
bool "findfs"
|
bool "findfs"
|
||||||
default n
|
default y
|
||||||
select VOLUMEID
|
select VOLUMEID
|
||||||
help
|
help
|
||||||
Prints the name of a filesystem with given label or UUID.
|
Prints the name of a filesystem with given label or UUID.
|
||||||
@ -193,13 +193,13 @@ config FINDFS
|
|||||||
|
|
||||||
config FLOCK
|
config FLOCK
|
||||||
bool "flock"
|
bool "flock"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Manage locks from shell scripts
|
Manage locks from shell scripts
|
||||||
|
|
||||||
config FREERAMDISK
|
config FREERAMDISK
|
||||||
bool "freeramdisk"
|
bool "freeramdisk"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Linux allows you to create ramdisks. This utility allows you to
|
Linux allows you to create ramdisks. This utility allows you to
|
||||||
delete them and completely free all memory that was used for the
|
delete them and completely free all memory that was used for the
|
||||||
@ -210,7 +210,7 @@ config FREERAMDISK
|
|||||||
|
|
||||||
config FSCK_MINIX
|
config FSCK_MINIX
|
||||||
bool "fsck_minix"
|
bool "fsck_minix"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
The minix filesystem is a nice, small, compact, read-write filesystem
|
The minix filesystem is a nice, small, compact, read-write filesystem
|
||||||
with little overhead. It is not a journaling filesystem however and
|
with little overhead. It is not a journaling filesystem however and
|
||||||
@ -221,21 +221,18 @@ config FSCK_MINIX
|
|||||||
|
|
||||||
config MKFS_EXT2
|
config MKFS_EXT2
|
||||||
bool "mkfs_ext2"
|
bool "mkfs_ext2"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Utility to create EXT2 filesystems.
|
Utility to create EXT2 filesystems.
|
||||||
|
|
||||||
config MKFS_MINIX
|
config MKFS_MINIX
|
||||||
bool "mkfs_minix"
|
bool "mkfs_minix"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
The minix filesystem is a nice, small, compact, read-write filesystem
|
The minix filesystem is a nice, small, compact, read-write filesystem
|
||||||
with little overhead. If you wish to be able to create minix
|
with little overhead. If you wish to be able to create minix
|
||||||
filesystems this utility will do the job for you.
|
filesystems this utility will do the job for you.
|
||||||
|
|
||||||
comment "Minix filesystem support"
|
|
||||||
depends on FSCK_MINIX || MKFS_MINIX
|
|
||||||
|
|
||||||
config FEATURE_MINIX2
|
config FEATURE_MINIX2
|
||||||
bool "Support Minix fs v2 (fsck_minix/mkfs_minix)"
|
bool "Support Minix fs v2 (fsck_minix/mkfs_minix)"
|
||||||
default y
|
default y
|
||||||
@ -250,16 +247,17 @@ config MKFS_REISER
|
|||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Utility to create ReiserFS filesystems.
|
Utility to create ReiserFS filesystems.
|
||||||
|
Note: this applet needs a lot of testing and polishing.
|
||||||
|
|
||||||
config MKFS_VFAT
|
config MKFS_VFAT
|
||||||
bool "mkfs_vfat"
|
bool "mkfs_vfat"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Utility to create FAT32 filesystems.
|
Utility to create FAT32 filesystems.
|
||||||
|
|
||||||
config GETOPT
|
config GETOPT
|
||||||
bool "getopt"
|
bool "getopt"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
The getopt utility is used to break up (parse) options in command
|
The getopt utility is used to break up (parse) options in command
|
||||||
lines to make it easy to write complex shell scripts that also check
|
lines to make it easy to write complex shell scripts that also check
|
||||||
@ -277,14 +275,14 @@ config FEATURE_GETOPT_LONG
|
|||||||
|
|
||||||
config HEXDUMP
|
config HEXDUMP
|
||||||
bool "hexdump"
|
bool "hexdump"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
The hexdump utility is used to display binary data in a readable
|
The hexdump utility is used to display binary data in a readable
|
||||||
way that is comparable to the output from most hex editors.
|
way that is comparable to the output from most hex editors.
|
||||||
|
|
||||||
config FEATURE_HEXDUMP_REVERSE
|
config FEATURE_HEXDUMP_REVERSE
|
||||||
bool "Support -R, reverse of 'hexdump -Cv'"
|
bool "Support -R, reverse of 'hexdump -Cv'"
|
||||||
default n
|
default y
|
||||||
depends on HEXDUMP
|
depends on HEXDUMP
|
||||||
help
|
help
|
||||||
The hexdump utility is used to display binary data in an ascii
|
The hexdump utility is used to display binary data in an ascii
|
||||||
@ -294,14 +292,14 @@ config FEATURE_HEXDUMP_REVERSE
|
|||||||
|
|
||||||
config HD
|
config HD
|
||||||
bool "hd"
|
bool "hd"
|
||||||
default n
|
default y
|
||||||
select HEXDUMP
|
select HEXDUMP
|
||||||
help
|
help
|
||||||
hd is an alias to hexdump -C.
|
hd is an alias to hexdump -C.
|
||||||
|
|
||||||
config HWCLOCK
|
config HWCLOCK
|
||||||
bool "hwclock"
|
bool "hwclock"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
The hwclock utility is used to read and set the hardware clock
|
The hwclock utility is used to read and set the hardware clock
|
||||||
on a system. This is primarily used to set the current time on
|
on a system. This is primarily used to set the current time on
|
||||||
@ -310,7 +308,7 @@ config HWCLOCK
|
|||||||
|
|
||||||
config FEATURE_HWCLOCK_LONG_OPTIONS
|
config FEATURE_HWCLOCK_LONG_OPTIONS
|
||||||
bool "Support long options (--hctosys,...)"
|
bool "Support long options (--hctosys,...)"
|
||||||
default n
|
default y
|
||||||
depends on HWCLOCK && LONG_OPTS
|
depends on HWCLOCK && LONG_OPTS
|
||||||
help
|
help
|
||||||
By default, the hwclock utility only uses short options. If you
|
By default, the hwclock utility only uses short options. If you
|
||||||
@ -331,7 +329,7 @@ config FEATURE_HWCLOCK_ADJTIME_FHS
|
|||||||
|
|
||||||
config IPCRM
|
config IPCRM
|
||||||
bool "ipcrm"
|
bool "ipcrm"
|
||||||
default n
|
default y
|
||||||
select FEATURE_SUID
|
select FEATURE_SUID
|
||||||
help
|
help
|
||||||
The ipcrm utility allows the removal of System V interprocess
|
The ipcrm utility allows the removal of System V interprocess
|
||||||
@ -340,7 +338,7 @@ config IPCRM
|
|||||||
|
|
||||||
config IPCS
|
config IPCS
|
||||||
bool "ipcs"
|
bool "ipcs"
|
||||||
default n
|
default y
|
||||||
select FEATURE_SUID
|
select FEATURE_SUID
|
||||||
help
|
help
|
||||||
The ipcs utility is used to provide information on the currently
|
The ipcs utility is used to provide information on the currently
|
||||||
@ -348,7 +346,7 @@ config IPCS
|
|||||||
|
|
||||||
config LOSETUP
|
config LOSETUP
|
||||||
bool "losetup"
|
bool "losetup"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
losetup is used to associate or detach a loop device with a regular
|
losetup is used to associate or detach a loop device with a regular
|
||||||
file or block device, and to query the status of a loop device. This
|
file or block device, and to query the status of a loop device. This
|
||||||
@ -356,7 +354,7 @@ config LOSETUP
|
|||||||
|
|
||||||
config LSPCI
|
config LSPCI
|
||||||
bool "lspci"
|
bool "lspci"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
lspci is a utility for displaying information about PCI buses in the
|
lspci is a utility for displaying information about PCI buses in the
|
||||||
system and devices connected to them.
|
system and devices connected to them.
|
||||||
@ -365,7 +363,7 @@ config LSPCI
|
|||||||
|
|
||||||
config LSUSB
|
config LSUSB
|
||||||
bool "lsusb"
|
bool "lsusb"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
lsusb is a utility for displaying information about USB buses in the
|
lsusb is a utility for displaying information about USB buses in the
|
||||||
system and devices connected to them.
|
system and devices connected to them.
|
||||||
@ -374,7 +372,7 @@ config LSUSB
|
|||||||
|
|
||||||
config MDEV
|
config MDEV
|
||||||
bool "mdev"
|
bool "mdev"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
mdev is a mini-udev implementation for dynamically creating device
|
mdev is a mini-udev implementation for dynamically creating device
|
||||||
nodes in the /dev directory.
|
nodes in the /dev directory.
|
||||||
@ -383,7 +381,7 @@ config MDEV
|
|||||||
|
|
||||||
config FEATURE_MDEV_CONF
|
config FEATURE_MDEV_CONF
|
||||||
bool "Support /etc/mdev.conf"
|
bool "Support /etc/mdev.conf"
|
||||||
default n
|
default y
|
||||||
depends on MDEV
|
depends on MDEV
|
||||||
help
|
help
|
||||||
Add support for the mdev config file to control ownership and
|
Add support for the mdev config file to control ownership and
|
||||||
@ -393,7 +391,7 @@ config FEATURE_MDEV_CONF
|
|||||||
|
|
||||||
config FEATURE_MDEV_RENAME
|
config FEATURE_MDEV_RENAME
|
||||||
bool "Support subdirs/symlinks"
|
bool "Support subdirs/symlinks"
|
||||||
default n
|
default y
|
||||||
depends on FEATURE_MDEV_CONF
|
depends on FEATURE_MDEV_CONF
|
||||||
help
|
help
|
||||||
Add support for renaming devices and creating symlinks.
|
Add support for renaming devices and creating symlinks.
|
||||||
@ -402,7 +400,7 @@ config FEATURE_MDEV_RENAME
|
|||||||
|
|
||||||
config FEATURE_MDEV_RENAME_REGEXP
|
config FEATURE_MDEV_RENAME_REGEXP
|
||||||
bool "Support regular expressions substitutions when renaming device"
|
bool "Support regular expressions substitutions when renaming device"
|
||||||
default n
|
default y
|
||||||
depends on FEATURE_MDEV_RENAME
|
depends on FEATURE_MDEV_RENAME
|
||||||
help
|
help
|
||||||
Add support for regular expressions substitutions when renaming
|
Add support for regular expressions substitutions when renaming
|
||||||
@ -410,7 +408,7 @@ config FEATURE_MDEV_RENAME_REGEXP
|
|||||||
|
|
||||||
config FEATURE_MDEV_EXEC
|
config FEATURE_MDEV_EXEC
|
||||||
bool "Support command execution at device addition/removal"
|
bool "Support command execution at device addition/removal"
|
||||||
default n
|
default y
|
||||||
depends on FEATURE_MDEV_CONF
|
depends on FEATURE_MDEV_CONF
|
||||||
help
|
help
|
||||||
This adds support for an optional field to /etc/mdev.conf for
|
This adds support for an optional field to /etc/mdev.conf for
|
||||||
@ -420,7 +418,7 @@ config FEATURE_MDEV_EXEC
|
|||||||
|
|
||||||
config FEATURE_MDEV_LOAD_FIRMWARE
|
config FEATURE_MDEV_LOAD_FIRMWARE
|
||||||
bool "Support loading of firmwares"
|
bool "Support loading of firmwares"
|
||||||
default n
|
default y
|
||||||
depends on MDEV
|
depends on MDEV
|
||||||
help
|
help
|
||||||
Some devices need to load firmware before they can be usable.
|
Some devices need to load firmware before they can be usable.
|
||||||
@ -431,7 +429,7 @@ config FEATURE_MDEV_LOAD_FIRMWARE
|
|||||||
|
|
||||||
config MKSWAP
|
config MKSWAP
|
||||||
bool "mkswap"
|
bool "mkswap"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
The mkswap utility is used to configure a file or disk partition as
|
The mkswap utility is used to configure a file or disk partition as
|
||||||
Linux swap space. This allows Linux to use the entire file or
|
Linux swap space. This allows Linux to use the entire file or
|
||||||
@ -444,14 +442,14 @@ config MKSWAP
|
|||||||
|
|
||||||
config FEATURE_MKSWAP_UUID
|
config FEATURE_MKSWAP_UUID
|
||||||
bool "UUID support"
|
bool "UUID support"
|
||||||
default n
|
default y
|
||||||
depends on MKSWAP
|
depends on MKSWAP
|
||||||
help
|
help
|
||||||
Generate swap spaces with universally unique identifiers.
|
Generate swap spaces with universally unique identifiers.
|
||||||
|
|
||||||
config MORE
|
config MORE
|
||||||
bool "more"
|
bool "more"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
more is a simple utility which allows you to read text one screen
|
more is a simple utility which allows you to read text one screen
|
||||||
sized page at a time. If you want to read text that is larger than
|
sized page at a time. If you want to read text that is larger than
|
||||||
@ -472,137 +470,137 @@ config FEATURE_USE_TERMIOS
|
|||||||
|
|
||||||
config VOLUMEID
|
config VOLUMEID
|
||||||
bool #No description makes it a hidden option
|
bool #No description makes it a hidden option
|
||||||
default n
|
default y
|
||||||
|
|
||||||
config FEATURE_VOLUMEID_EXT
|
config FEATURE_VOLUMEID_EXT
|
||||||
bool "Ext filesystem"
|
bool "Ext filesystem"
|
||||||
default n
|
default y
|
||||||
depends on VOLUMEID
|
depends on VOLUMEID
|
||||||
help
|
help
|
||||||
TODO
|
TODO
|
||||||
|
|
||||||
config FEATURE_VOLUMEID_BTRFS
|
config FEATURE_VOLUMEID_BTRFS
|
||||||
bool "btrfs filesystem"
|
bool "btrfs filesystem"
|
||||||
default n
|
default y
|
||||||
depends on VOLUMEID
|
depends on VOLUMEID
|
||||||
help
|
help
|
||||||
TODO
|
TODO
|
||||||
|
|
||||||
config FEATURE_VOLUMEID_REISERFS
|
config FEATURE_VOLUMEID_REISERFS
|
||||||
bool "Reiser filesystem"
|
bool "Reiser filesystem"
|
||||||
default n
|
default y
|
||||||
depends on VOLUMEID
|
depends on VOLUMEID
|
||||||
help
|
help
|
||||||
TODO
|
TODO
|
||||||
|
|
||||||
config FEATURE_VOLUMEID_FAT
|
config FEATURE_VOLUMEID_FAT
|
||||||
bool "fat filesystem"
|
bool "fat filesystem"
|
||||||
default n
|
default y
|
||||||
depends on VOLUMEID
|
depends on VOLUMEID
|
||||||
help
|
help
|
||||||
TODO
|
TODO
|
||||||
|
|
||||||
config FEATURE_VOLUMEID_HFS
|
config FEATURE_VOLUMEID_HFS
|
||||||
bool "hfs filesystem"
|
bool "hfs filesystem"
|
||||||
default n
|
default y
|
||||||
depends on VOLUMEID
|
depends on VOLUMEID
|
||||||
help
|
help
|
||||||
TODO
|
TODO
|
||||||
|
|
||||||
config FEATURE_VOLUMEID_JFS
|
config FEATURE_VOLUMEID_JFS
|
||||||
bool "jfs filesystem"
|
bool "jfs filesystem"
|
||||||
default n
|
default y
|
||||||
depends on VOLUMEID
|
depends on VOLUMEID
|
||||||
help
|
help
|
||||||
TODO
|
TODO
|
||||||
|
|
||||||
### config FEATURE_VOLUMEID_UFS
|
### config FEATURE_VOLUMEID_UFS
|
||||||
### bool "ufs filesystem"
|
### bool "ufs filesystem"
|
||||||
### default n
|
### default y
|
||||||
### depends on VOLUMEID
|
### depends on VOLUMEID
|
||||||
### help
|
### help
|
||||||
### TODO
|
### TODO
|
||||||
|
|
||||||
config FEATURE_VOLUMEID_XFS
|
config FEATURE_VOLUMEID_XFS
|
||||||
bool "xfs filesystem"
|
bool "xfs filesystem"
|
||||||
default n
|
default y
|
||||||
depends on VOLUMEID
|
depends on VOLUMEID
|
||||||
help
|
help
|
||||||
TODO
|
TODO
|
||||||
|
|
||||||
config FEATURE_VOLUMEID_NTFS
|
config FEATURE_VOLUMEID_NTFS
|
||||||
bool "ntfs filesystem"
|
bool "ntfs filesystem"
|
||||||
default n
|
default y
|
||||||
depends on VOLUMEID
|
depends on VOLUMEID
|
||||||
help
|
help
|
||||||
TODO
|
TODO
|
||||||
|
|
||||||
config FEATURE_VOLUMEID_ISO9660
|
config FEATURE_VOLUMEID_ISO9660
|
||||||
bool "iso9660 filesystem"
|
bool "iso9660 filesystem"
|
||||||
default n
|
default y
|
||||||
depends on VOLUMEID
|
depends on VOLUMEID
|
||||||
help
|
help
|
||||||
TODO
|
TODO
|
||||||
|
|
||||||
config FEATURE_VOLUMEID_UDF
|
config FEATURE_VOLUMEID_UDF
|
||||||
bool "udf filesystem"
|
bool "udf filesystem"
|
||||||
default n
|
default y
|
||||||
depends on VOLUMEID
|
depends on VOLUMEID
|
||||||
help
|
help
|
||||||
TODO
|
TODO
|
||||||
|
|
||||||
config FEATURE_VOLUMEID_LUKS
|
config FEATURE_VOLUMEID_LUKS
|
||||||
bool "luks filesystem"
|
bool "luks filesystem"
|
||||||
default n
|
default y
|
||||||
depends on VOLUMEID
|
depends on VOLUMEID
|
||||||
help
|
help
|
||||||
TODO
|
TODO
|
||||||
|
|
||||||
config FEATURE_VOLUMEID_LINUXSWAP
|
config FEATURE_VOLUMEID_LINUXSWAP
|
||||||
bool "linux swap filesystem"
|
bool "linux swap filesystem"
|
||||||
default n
|
default y
|
||||||
depends on VOLUMEID
|
depends on VOLUMEID
|
||||||
help
|
help
|
||||||
TODO
|
TODO
|
||||||
|
|
||||||
### config FEATURE_VOLUMEID_LVM
|
### config FEATURE_VOLUMEID_LVM
|
||||||
### bool "lvm"
|
### bool "lvm"
|
||||||
### default n
|
### default y
|
||||||
### depends on VOLUMEID
|
### depends on VOLUMEID
|
||||||
### help
|
### help
|
||||||
### TODO
|
### TODO
|
||||||
|
|
||||||
config FEATURE_VOLUMEID_CRAMFS
|
config FEATURE_VOLUMEID_CRAMFS
|
||||||
bool "cramfs filesystem"
|
bool "cramfs filesystem"
|
||||||
default n
|
default y
|
||||||
depends on VOLUMEID
|
depends on VOLUMEID
|
||||||
help
|
help
|
||||||
TODO
|
TODO
|
||||||
|
|
||||||
### config FEATURE_VOLUMEID_HPFS
|
### config FEATURE_VOLUMEID_HPFS
|
||||||
### bool "hpfs filesystem"
|
### bool "hpfs filesystem"
|
||||||
### default n
|
### default y
|
||||||
### depends on VOLUMEID
|
### depends on VOLUMEID
|
||||||
### help
|
### help
|
||||||
### TODO
|
### TODO
|
||||||
|
|
||||||
config FEATURE_VOLUMEID_ROMFS
|
config FEATURE_VOLUMEID_ROMFS
|
||||||
bool "romfs filesystem"
|
bool "romfs filesystem"
|
||||||
default n
|
default y
|
||||||
depends on VOLUMEID
|
depends on VOLUMEID
|
||||||
help
|
help
|
||||||
TODO
|
TODO
|
||||||
|
|
||||||
config FEATURE_VOLUMEID_SYSV
|
config FEATURE_VOLUMEID_SYSV
|
||||||
bool "sysv filesystem"
|
bool "sysv filesystem"
|
||||||
default n
|
default y
|
||||||
depends on VOLUMEID
|
depends on VOLUMEID
|
||||||
help
|
help
|
||||||
TODO
|
TODO
|
||||||
|
|
||||||
### config FEATURE_VOLUMEID_MINIX
|
### config FEATURE_VOLUMEID_MINIX
|
||||||
### bool "minix filesystem"
|
### bool "minix filesystem"
|
||||||
### default n
|
### default y
|
||||||
### depends on VOLUMEID
|
### depends on VOLUMEID
|
||||||
### help
|
### help
|
||||||
### TODO
|
### TODO
|
||||||
@ -610,84 +608,84 @@ config FEATURE_VOLUMEID_SYSV
|
|||||||
### These only detect partition tables - not used (yet?)
|
### These only detect partition tables - not used (yet?)
|
||||||
### config FEATURE_VOLUMEID_MAC
|
### config FEATURE_VOLUMEID_MAC
|
||||||
### bool "mac filesystem"
|
### bool "mac filesystem"
|
||||||
### default n
|
### default y
|
||||||
### depends on VOLUMEID
|
### depends on VOLUMEID
|
||||||
### help
|
### help
|
||||||
### TODO
|
### TODO
|
||||||
###
|
###
|
||||||
### config FEATURE_VOLUMEID_MSDOS
|
### config FEATURE_VOLUMEID_MSDOS
|
||||||
### bool "msdos filesystem"
|
### bool "msdos filesystem"
|
||||||
### default n
|
### default y
|
||||||
### depends on VOLUMEID
|
### depends on VOLUMEID
|
||||||
### help
|
### help
|
||||||
### TODO
|
### TODO
|
||||||
|
|
||||||
config FEATURE_VOLUMEID_OCFS2
|
config FEATURE_VOLUMEID_OCFS2
|
||||||
bool "ocfs2 filesystem"
|
bool "ocfs2 filesystem"
|
||||||
default n
|
default y
|
||||||
depends on VOLUMEID
|
depends on VOLUMEID
|
||||||
help
|
help
|
||||||
TODO
|
TODO
|
||||||
|
|
||||||
### config FEATURE_VOLUMEID_HIGHPOINTRAID
|
### config FEATURE_VOLUMEID_HIGHPOINTRAID
|
||||||
### bool "highpoint raid"
|
### bool "highpoint raid"
|
||||||
### default n
|
### default y
|
||||||
### depends on VOLUMEID
|
### depends on VOLUMEID
|
||||||
### help
|
### help
|
||||||
### TODO
|
### TODO
|
||||||
|
|
||||||
### config FEATURE_VOLUMEID_ISWRAID
|
### config FEATURE_VOLUMEID_ISWRAID
|
||||||
### bool "intel raid"
|
### bool "intel raid"
|
||||||
### default n
|
### default y
|
||||||
### depends on VOLUMEID
|
### depends on VOLUMEID
|
||||||
### help
|
### help
|
||||||
### TODO
|
### TODO
|
||||||
|
|
||||||
### config FEATURE_VOLUMEID_LSIRAID
|
### config FEATURE_VOLUMEID_LSIRAID
|
||||||
### bool "lsi raid"
|
### bool "lsi raid"
|
||||||
### default n
|
### default y
|
||||||
### depends on VOLUMEID
|
### depends on VOLUMEID
|
||||||
### help
|
### help
|
||||||
### TODO
|
### TODO
|
||||||
|
|
||||||
### config FEATURE_VOLUMEID_VIARAID
|
### config FEATURE_VOLUMEID_VIARAID
|
||||||
### bool "via raid"
|
### bool "via raid"
|
||||||
### default n
|
### default y
|
||||||
### depends on VOLUMEID
|
### depends on VOLUMEID
|
||||||
### help
|
### help
|
||||||
### TODO
|
### TODO
|
||||||
|
|
||||||
### config FEATURE_VOLUMEID_SILICONRAID
|
### config FEATURE_VOLUMEID_SILICONRAID
|
||||||
### bool "silicon raid"
|
### bool "silicon raid"
|
||||||
### default n
|
### default y
|
||||||
### depends on VOLUMEID
|
### depends on VOLUMEID
|
||||||
### help
|
### help
|
||||||
### TODO
|
### TODO
|
||||||
|
|
||||||
### config FEATURE_VOLUMEID_NVIDIARAID
|
### config FEATURE_VOLUMEID_NVIDIARAID
|
||||||
### bool "nvidia raid"
|
### bool "nvidia raid"
|
||||||
### default n
|
### default y
|
||||||
### depends on VOLUMEID
|
### depends on VOLUMEID
|
||||||
### help
|
### help
|
||||||
### TODO
|
### TODO
|
||||||
|
|
||||||
### config FEATURE_VOLUMEID_PROMISERAID
|
### config FEATURE_VOLUMEID_PROMISERAID
|
||||||
### bool "promise raid"
|
### bool "promise raid"
|
||||||
### default n
|
### default y
|
||||||
### depends on VOLUMEID
|
### depends on VOLUMEID
|
||||||
### help
|
### help
|
||||||
### TODO
|
### TODO
|
||||||
|
|
||||||
config FEATURE_VOLUMEID_LINUXRAID
|
config FEATURE_VOLUMEID_LINUXRAID
|
||||||
bool "linuxraid"
|
bool "linuxraid"
|
||||||
default n
|
default y
|
||||||
depends on VOLUMEID
|
depends on VOLUMEID
|
||||||
help
|
help
|
||||||
TODO
|
TODO
|
||||||
|
|
||||||
config MOUNT
|
config MOUNT
|
||||||
bool "mount"
|
bool "mount"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
All files and filesystems in Unix are arranged into one big directory
|
All files and filesystems in Unix are arranged into one big directory
|
||||||
tree. The 'mount' utility is used to graft a filesystem onto a
|
tree. The 'mount' utility is used to graft a filesystem onto a
|
||||||
@ -698,14 +696,14 @@ config MOUNT
|
|||||||
|
|
||||||
config FEATURE_MOUNT_FAKE
|
config FEATURE_MOUNT_FAKE
|
||||||
bool "Support option -f"
|
bool "Support option -f"
|
||||||
default n
|
default y
|
||||||
depends on MOUNT
|
depends on MOUNT
|
||||||
help
|
help
|
||||||
Enable support for faking a file system mount.
|
Enable support for faking a file system mount.
|
||||||
|
|
||||||
config FEATURE_MOUNT_VERBOSE
|
config FEATURE_MOUNT_VERBOSE
|
||||||
bool "Support option -v"
|
bool "Support option -v"
|
||||||
default n
|
default y
|
||||||
depends on MOUNT
|
depends on MOUNT
|
||||||
help
|
help
|
||||||
Enable multi-level -v[vv...] verbose messages. Useful if you
|
Enable multi-level -v[vv...] verbose messages. Useful if you
|
||||||
@ -726,7 +724,7 @@ config FEATURE_MOUNT_HELPERS
|
|||||||
|
|
||||||
config FEATURE_MOUNT_LABEL
|
config FEATURE_MOUNT_LABEL
|
||||||
bool "Support specifiying devices by label or UUID"
|
bool "Support specifiying devices by label or UUID"
|
||||||
default n
|
default y
|
||||||
depends on MOUNT
|
depends on MOUNT
|
||||||
select VOLUMEID
|
select VOLUMEID
|
||||||
help
|
help
|
||||||
@ -736,7 +734,7 @@ config FEATURE_MOUNT_LABEL
|
|||||||
|
|
||||||
config FEATURE_MOUNT_NFS
|
config FEATURE_MOUNT_NFS
|
||||||
bool "Support mounting NFS file systems"
|
bool "Support mounting NFS file systems"
|
||||||
default n
|
default y
|
||||||
depends on MOUNT
|
depends on MOUNT
|
||||||
select FEATURE_HAVE_RPC
|
select FEATURE_HAVE_RPC
|
||||||
select FEATURE_SYSLOG
|
select FEATURE_SYSLOG
|
||||||
@ -745,7 +743,7 @@ config FEATURE_MOUNT_NFS
|
|||||||
|
|
||||||
config FEATURE_MOUNT_CIFS
|
config FEATURE_MOUNT_CIFS
|
||||||
bool "Support mounting CIFS/SMB file systems"
|
bool "Support mounting CIFS/SMB file systems"
|
||||||
default n
|
default y
|
||||||
depends on MOUNT
|
depends on MOUNT
|
||||||
help
|
help
|
||||||
Enable support for samba mounts.
|
Enable support for samba mounts.
|
||||||
@ -769,7 +767,7 @@ config FEATURE_MOUNT_FSTAB
|
|||||||
|
|
||||||
config PIVOT_ROOT
|
config PIVOT_ROOT
|
||||||
bool "pivot_root"
|
bool "pivot_root"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
The pivot_root utility swaps the mount points for the root filesystem
|
The pivot_root utility swaps the mount points for the root filesystem
|
||||||
with some other mounted filesystem. This allows you to do all sorts
|
with some other mounted filesystem. This allows you to do all sorts
|
||||||
@ -781,7 +779,7 @@ config PIVOT_ROOT
|
|||||||
|
|
||||||
config RDATE
|
config RDATE
|
||||||
bool "rdate"
|
bool "rdate"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
The rdate utility allows you to synchronize the date and time of your
|
The rdate utility allows you to synchronize the date and time of your
|
||||||
system clock with the date and time of a remote networked system using
|
system clock with the date and time of a remote networked system using
|
||||||
@ -790,38 +788,38 @@ config RDATE
|
|||||||
|
|
||||||
config RDEV
|
config RDEV
|
||||||
bool "rdev"
|
bool "rdev"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Print the device node associated with the filesystem mounted at '/'.
|
Print the device node associated with the filesystem mounted at '/'.
|
||||||
|
|
||||||
config READPROFILE
|
config READPROFILE
|
||||||
bool "readprofile"
|
bool "readprofile"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
This allows you to parse /proc/profile for basic profiling.
|
This allows you to parse /proc/profile for basic profiling.
|
||||||
|
|
||||||
config RTCWAKE
|
config RTCWAKE
|
||||||
bool "rtcwake"
|
bool "rtcwake"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
Enter a system sleep state until specified wakeup time.
|
Enter a system sleep state until specified wakeup time.
|
||||||
|
|
||||||
config SCRIPT
|
config SCRIPT
|
||||||
bool "script"
|
bool "script"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
The script makes typescript of terminal session.
|
The script makes typescript of terminal session.
|
||||||
|
|
||||||
config SCRIPTREPLAY
|
config SCRIPTREPLAY
|
||||||
bool "scriptreplay"
|
bool "scriptreplay"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
This program replays a typescript, using timing information
|
This program replays a typescript, using timing information
|
||||||
given by script -t.
|
given by script -t.
|
||||||
|
|
||||||
config SETARCH
|
config SETARCH
|
||||||
bool "setarch"
|
bool "setarch"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
The linux32 utility is used to create a 32bit environment for the
|
The linux32 utility is used to create a 32bit environment for the
|
||||||
specified program (usually a shell). It only makes sense to have
|
specified program (usually a shell). It only makes sense to have
|
||||||
@ -830,7 +828,7 @@ config SETARCH
|
|||||||
|
|
||||||
config SWAPONOFF
|
config SWAPONOFF
|
||||||
bool "swaponoff"
|
bool "swaponoff"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
This option enables both the 'swapon' and the 'swapoff' utilities.
|
This option enables both the 'swapon' and the 'swapoff' utilities.
|
||||||
Once you have created some swap space using 'mkswap', you also need
|
Once you have created some swap space using 'mkswap', you also need
|
||||||
@ -841,14 +839,14 @@ config SWAPONOFF
|
|||||||
|
|
||||||
config FEATURE_SWAPON_PRI
|
config FEATURE_SWAPON_PRI
|
||||||
bool "Support priority option -p"
|
bool "Support priority option -p"
|
||||||
default n
|
default y
|
||||||
depends on SWAPONOFF
|
depends on SWAPONOFF
|
||||||
help
|
help
|
||||||
Enable support for setting swap device priority in swapon.
|
Enable support for setting swap device priority in swapon.
|
||||||
|
|
||||||
config SWITCH_ROOT
|
config SWITCH_ROOT
|
||||||
bool "switch_root"
|
bool "switch_root"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
The switch_root utility is used from initramfs to select a new
|
The switch_root utility is used from initramfs to select a new
|
||||||
root device. Under initramfs, you have to use this instead of
|
root device. Under initramfs, you have to use this instead of
|
||||||
@ -867,7 +865,7 @@ config SWITCH_ROOT
|
|||||||
|
|
||||||
config UMOUNT
|
config UMOUNT
|
||||||
bool "umount"
|
bool "umount"
|
||||||
default n
|
default y
|
||||||
help
|
help
|
||||||
When you want to remove a mounted filesystem from its current mount
|
When you want to remove a mounted filesystem from its current mount
|
||||||
point, for example when you are shutting down the system, the
|
point, for example when you are shutting down the system, the
|
||||||
@ -876,7 +874,7 @@ config UMOUNT
|
|||||||
|
|
||||||
config FEATURE_UMOUNT_ALL
|
config FEATURE_UMOUNT_ALL
|
||||||
bool "Support option -a"
|
bool "Support option -a"
|
||||||
default n
|
default y
|
||||||
depends on UMOUNT
|
depends on UMOUNT
|
||||||
help
|
help
|
||||||
Support -a option to unmount all currently mounted filesystems.
|
Support -a option to unmount all currently mounted filesystems.
|
||||||
@ -886,7 +884,7 @@ comment "Common options for mount/umount"
|
|||||||
|
|
||||||
config FEATURE_MOUNT_LOOP
|
config FEATURE_MOUNT_LOOP
|
||||||
bool "Support loopback mounts"
|
bool "Support loopback mounts"
|
||||||
default n
|
default y
|
||||||
depends on MOUNT || UMOUNT
|
depends on MOUNT || UMOUNT
|
||||||
help
|
help
|
||||||
Enabling this feature allows automatic mounting of files (containing
|
Enabling this feature allows automatic mounting of files (containing
|
||||||
@ -903,7 +901,7 @@ config FEATURE_MOUNT_LOOP
|
|||||||
|
|
||||||
config FEATURE_MOUNT_LOOP_CREATE
|
config FEATURE_MOUNT_LOOP_CREATE
|
||||||
bool "Create new loopback devices if needed"
|
bool "Create new loopback devices if needed"
|
||||||
default n
|
default y
|
||||||
depends on FEATURE_MOUNT_LOOP
|
depends on FEATURE_MOUNT_LOOP
|
||||||
help
|
help
|
||||||
Linux kernels >= 2.6.24 support unlimited loopback devices. They are
|
Linux kernels >= 2.6.24 support unlimited loopback devices. They are
|
||||||
|
Loading…
Reference in New Issue
Block a user