summaryrefslogtreecommitdiff
path: root/package/busybox/config/coreutils/Config.in
diff options
context:
space:
mode:
Diffstat (limited to 'package/busybox/config/coreutils/Config.in')
-rw-r--r--package/busybox/config/coreutils/Config.in348
1 files changed, 179 insertions, 169 deletions
diff --git a/package/busybox/config/coreutils/Config.in b/package/busybox/config/coreutils/Config.in
index 1b2d9d5fd..6393c1c14 100644
--- a/package/busybox/config/coreutils/Config.in
+++ b/package/busybox/config/coreutils/Config.in
@@ -1,3 +1,4 @@
+# DO NOT EDIT. This file is generated from Config.src
#
# For a description of the syntax of this configuration file,
# see scripts/kbuild/config-language.txt.
@@ -5,12 +6,6 @@
menu "Coreutils"
-config BUSYBOX_BASE64
- bool "base64"
- default y
- help
- Base64 encode and decode
-
config BUSYBOX_BASENAME
bool "basename"
default y
@@ -18,23 +13,146 @@ config BUSYBOX_BASENAME
basename is used to strip the directory and suffix from filenames,
leaving just the filename itself. Enable this option if you wish
to enable the 'basename' utility.
-
-config BUSYBOX_CAL
- bool "cal"
- default n
- help
- cal is used to display a monthly calender.
-
config BUSYBOX_CAT
bool "cat"
default y
help
cat is used to concatenate files and print them to the standard
output. Enable this option if you wish to enable the 'cat' utility.
+config BUSYBOX_DATE
+ bool "date"
+ default y
+ help
+ date is used to set the system date or display the
+ current time in the given format.
+
+config BUSYBOX_FEATURE_DATE_ISOFMT
+ bool "Enable ISO date format output (-I)"
+ default y
+ depends on BUSYBOX_DATE
+ help
+ Enable option (-I) to output an ISO-8601 compliant
+ date/time string.
+
+# defaults to "no": stat's nanosecond field is a bit non-portable
+config BUSYBOX_FEATURE_DATE_NANO
+ bool "Support %[num]N nanosecond format specifier"
+ default n
+ depends on BUSYBOX_DATE # syscall(__NR_clock_gettime)
+ select BUSYBOX_PLATFORM_LINUX
+ help
+ Support %[num]N format specifier. Adds ~250 bytes of code.
+
+config BUSYBOX_FEATURE_DATE_COMPAT
+ bool "Support weird 'date MMDDhhmm[[YY]YY][.ss]' format"
+ default y
+ depends on BUSYBOX_DATE
+ help
+ System time can be set by 'date -s DATE' and simply 'date DATE',
+ but formats of DATE string are different. 'date DATE' accepts
+ a rather weird MMDDhhmm[[YY]YY][.ss] format with completely
+ unnatural placement of year between minutes and seconds.
+ date -s (and other commands like touch -d) use more sensible
+ formats (for one, ISO format YYYY-MM-DD hh:mm:ss.ssssss).
+
+ With this option off, 'date DATE' is 'date -s DATE' support
+ the same format. With it on, 'date DATE' additionally supports
+ MMDDhhmm[[YY]YY][.ss] format.
+config BUSYBOX_HOSTID
+ bool "hostid"
+ default y
+ help
+ hostid prints the numeric identifier (in hexadecimal) for
+ the current host.
+config BUSYBOX_ID
+ bool "id"
+ default y
+ help
+ id displays the current user and group ID names.
+config BUSYBOX_GROUPS
+ bool "groups"
+ default y
+ help
+ Print the group names associated with current user id.
+config BUSYBOX_TEST
+ bool "test"
+ default y
+ help
+ test is used to check file types and compare values,
+ returning an appropriate exit code. The bash shell
+ has test built in, ash can build it in optionally.
+
+config BUSYBOX_FEATURE_TEST_64
+ bool "Extend test to 64 bit"
+ default y
+ depends on BUSYBOX_TEST || BUSYBOX_ASH_BUILTIN_TEST || BUSYBOX_HUSH
+ help
+ Enable 64-bit support in test.
+config BUSYBOX_TOUCH
+ bool "touch"
+ default y
+ help
+ touch is used to create or change the access and/or
+ modification timestamp of specified files.
+
+config BUSYBOX_FEATURE_TOUCH_SUSV3
+ bool "Add support for SUSV3 features (-d -t -r)"
+ default y
+ depends on BUSYBOX_TOUCH
+ help
+ Enable touch to use a reference file or a given date/time argument.
+config BUSYBOX_TR
+ bool "tr"
+ default y
+ help
+ tr is used to squeeze, and/or delete characters from standard
+ input, writing to standard output.
+
+config BUSYBOX_FEATURE_TR_CLASSES
+ bool "Enable character classes (such as [:upper:])"
+ default y
+ depends on BUSYBOX_TR
+ help
+ Enable character classes, enabling commands such as:
+ tr [:upper:] [:lower:] to convert input into lowercase.
+
+config BUSYBOX_FEATURE_TR_EQUIV
+ bool "Enable equivalence classes"
+ default y
+ depends on BUSYBOX_TR
+ help
+ Enable equivalence classes, which essentially add the enclosed
+ character to the current set. For instance, tr [=a=] xyz would
+ replace all instances of 'a' with 'xyz'. This option is mainly
+ useful for cases when no other way of expressing a character
+ is possible.
+config BUSYBOX_BASE64
+ bool "base64"
+ default y
+ help
+ Base64 encode and decode
+config BUSYBOX_WHO
+ bool "who"
+ default y
+ depends on BUSYBOX_FEATURE_UTMP
+ help
+ who is used to show who is logged on.
+config BUSYBOX_USERS
+ bool "users"
+ default y
+ depends on BUSYBOX_FEATURE_UTMP
+ help
+ Print users currently logged on.
+
+config BUSYBOX_CAL
+ bool "cal"
+ default y
+ help
+ cal is used to display a monthly calender.
config BUSYBOX_CATV
bool "catv"
- default n
+ default y
help
Display nonprinting characters as escape sequences (like some
implementations' cat -v option).
@@ -60,7 +178,7 @@ config BUSYBOX_CHOWN
config BUSYBOX_FEATURE_CHOWN_LONG_OPTIONS
bool "Enable long options"
- default n
+ default y
depends on BUSYBOX_CHOWN && BUSYBOX_LONG_OPTS
help
Enable use of long options
@@ -74,7 +192,7 @@ config BUSYBOX_CHROOT
config BUSYBOX_CKSUM
bool "cksum"
- default n
+ default y
help
cksum is used to calculate the CRC32 checksum of a file.
@@ -93,7 +211,7 @@ config BUSYBOX_CP
config BUSYBOX_FEATURE_CP_LONG_OPTIONS
bool "Enable long options for cp"
- default n
+ default y
depends on BUSYBOX_CP && BUSYBOX_LONG_OPTS
help
Enable long options for cp.
@@ -106,45 +224,6 @@ config BUSYBOX_CUT
cut is used to print selected parts of lines from
each file to stdout.
-config BUSYBOX_DATE
- bool "date"
- default y
- help
- date is used to set the system date or display the
- current time in the given format.
-
-config BUSYBOX_FEATURE_DATE_ISOFMT
- bool "Enable ISO date format output (-I)"
- default y
- depends on BUSYBOX_DATE
- help
- Enable option (-I) to output an ISO-8601 compliant
- date/time string.
-
-# defaults to "no": stat's nanosecond field is a bit non-portable
-config BUSYBOX_FEATURE_DATE_NANO
- bool "Support %[num]N nanosecond format specifier"
- default n
- depends on BUSYBOX_DATE && BUSYBOX_PLATFORM_LINUX # syscall(__NR_clock_gettime)
- help
- Support %[num]N format specifier. Adds ~250 bytes of code.
-
-config BUSYBOX_FEATURE_DATE_COMPAT
- bool "Support weird 'date MMDDhhmm[[YY]YY][.ss]' format"
- default y
- depends on BUSYBOX_DATE
- help
- System time can be set by 'date -s DATE' and simply 'date DATE',
- but formats of DATE string are different. 'date DATE' accepts
- a rather weird MMDDhhmm[[YY]YY][.ss] format with completely
- unnatural placement of year between minutes and seconds.
- date -s (and other commands like touch -d) use more sensible
- formats (for one, ISO format YYYY-MM-DD hh:mm:ss.ssssss).
-
- With this option off, 'date DATE' is 'date -s DATE' support
- the same format. With it on, 'date DATE' additionally supports
- MMDDhhmm[[YY]YY][.ss] format.
-
config BUSYBOX_DD
bool "dd"
default y
@@ -169,7 +248,7 @@ config BUSYBOX_FEATURE_DD_SIGNAL_HANDLING
config BUSYBOX_FEATURE_DD_THIRD_STATUS_LINE
bool "Enable the third status line upon signal"
- default n
+ default y
depends on BUSYBOX_DD && BUSYBOX_FEATURE_DD_SIGNAL_HANDLING
help
Displays a coreutils-like third status line with transferred bytes,
@@ -177,7 +256,7 @@ config BUSYBOX_FEATURE_DD_THIRD_STATUS_LINE
config BUSYBOX_FEATURE_DD_IBS_OBS
bool "Enable ibs, obs and conv options"
- default n
+ default y
depends on BUSYBOX_DD
help
Enables support for writing a certain number of bytes in and out,
@@ -192,7 +271,7 @@ config BUSYBOX_DF
config BUSYBOX_FEATURE_DF_FANCY
bool "Enable -a, -i, -B"
- default n
+ default y
depends on BUSYBOX_DF
help
This option enables -a, -i and -B.
@@ -210,7 +289,7 @@ config BUSYBOX_DIRNAME
config BUSYBOX_DOS2UNIX
bool "dos2unix/unix2dos"
- default n
+ default y
help
dos2unix is used to convert a text file from DOS format to
UNIX format, and vice versa.
@@ -261,20 +340,20 @@ config BUSYBOX_ENV
config BUSYBOX_FEATURE_ENV_LONG_OPTIONS
bool "Enable long options"
- default n
+ default y
depends on BUSYBOX_ENV && BUSYBOX_LONG_OPTS
help
Support long options for the env applet.
config BUSYBOX_EXPAND
bool "expand"
- default n
+ default y
help
By default, convert all tabs to spaces.
config BUSYBOX_FEATURE_EXPAND_LONG_OPTIONS
bool "Enable long options"
- default n
+ default y
depends on BUSYBOX_EXPAND && BUSYBOX_LONG_OPTS
help
Support long options for the expand applet.
@@ -288,7 +367,7 @@ config BUSYBOX_EXPR
config BUSYBOX_EXPR_MATH_SUPPORT_64
bool "Extend Posix numbers support to 64 bit"
- default n
+ default y
depends on BUSYBOX_EXPR
help
Enable 64-bit math support in the expr applet. This will make
@@ -303,13 +382,13 @@ config BUSYBOX_FALSE
config BUSYBOX_FOLD
bool "fold"
- default n
+ default y
help
Wrap text to fit a specific width.
config BUSYBOX_FSYNC
bool "fsync"
- default n
+ default y
help
fsync is used to flush file-related cached blocks to disk.
@@ -322,24 +401,11 @@ config BUSYBOX_HEAD
config BUSYBOX_FEATURE_FANCY_HEAD
bool "Enable head options (-c, -q, and -v)"
- default n
+ default y
depends on BUSYBOX_HEAD
help
This enables the head options (-c, -q, and -v).
-config BUSYBOX_HOSTID
- bool "hostid"
- default n
- help
- hostid prints the numeric identifier (in hexadecimal) for
- the current host.
-
-config BUSYBOX_ID
- bool "id"
- default y
- help
- id displays the current user and group ID names.
-
config BUSYBOX_INSTALL
bool "install"
default y
@@ -348,16 +414,16 @@ config BUSYBOX_INSTALL
config BUSYBOX_FEATURE_INSTALL_LONG_OPTIONS
bool "Enable long options"
- default n
+ default y
depends on BUSYBOX_INSTALL && BUSYBOX_LONG_OPTS
help
Support long options for the install applet.
-config BUSYBOX_LENGTH
- bool "length"
- default n
- help
- length is used to print out the length of a specified string.
+####config LENGTH
+#### bool "length"
+#### default y
+#### help
+#### length is used to print out the length of a specified string.
config BUSYBOX_LN
bool "ln"
@@ -367,7 +433,7 @@ config BUSYBOX_LN
config BUSYBOX_LOGNAME
bool "logname"
- default n
+ default y
help
logname is used to print the current user's login name.
@@ -421,14 +487,14 @@ config BUSYBOX_FEATURE_LS_USERNAME
config BUSYBOX_FEATURE_LS_COLOR
bool "Allow use of color to identify file types"
- default n
+ default y
depends on BUSYBOX_LS && BUSYBOX_LONG_OPTS
help
This enables the --color option to ls.
config BUSYBOX_FEATURE_LS_COLOR_IS_DEFAULT
bool "Produce colored ls output by default"
- default n
+ default y
depends on BUSYBOX_FEATURE_LS_COLOR
help
Saying yes here will turn coloring on by default,
@@ -451,7 +517,7 @@ config BUSYBOX_MKDIR
config BUSYBOX_FEATURE_MKDIR_LONG_OPTIONS
bool "Enable long options"
- default n
+ default y
depends on BUSYBOX_MKDIR && BUSYBOX_LONG_OPTS
help
Support long options for the mkdir applet.
@@ -478,20 +544,20 @@ config BUSYBOX_MV
config BUSYBOX_FEATURE_MV_LONG_OPTIONS
bool "Enable long options"
- default n
+ default y
depends on BUSYBOX_MV && BUSYBOX_LONG_OPTS
help
Support long options for the mv applet.
config BUSYBOX_NICE
bool "nice"
- default n
+ default y
help
nice runs a program with modified scheduling priority.
config BUSYBOX_NOHUP
bool "nohup"
- default n
+ default y
help
run a command immune to hangups, with output to a non-tty.
@@ -503,7 +569,7 @@ config BUSYBOX_OD
config BUSYBOX_PRINTENV
bool "printenv"
- default n
+ default y
help
printenv is used to print all or part of environment.
@@ -536,7 +602,7 @@ config BUSYBOX_FEATURE_READLINK_FOLLOW
config BUSYBOX_REALPATH
bool "realpath"
- default n
+ default y
help
Return the canonicalized absolute pathname.
This isn't provided by GNU shellutils, but where else does it belong.
@@ -555,7 +621,7 @@ config BUSYBOX_RMDIR
config BUSYBOX_FEATURE_RMDIR_LONG_OPTIONS
bool "Enable long options"
- default n
+ default y
depends on BUSYBOX_RMDIR && BUSYBOX_LONG_OPTS
help
Support long options for the rmdir applet, including
@@ -569,19 +635,19 @@ config BUSYBOX_SEQ
config BUSYBOX_SHA1SUM
bool "sha1sum"
- default n
+ default y
help
Compute and check SHA1 message digest
config BUSYBOX_SHA256SUM
bool "sha256sum"
- default n
+ default y
help
Compute and check SHA256 message digest
config BUSYBOX_SHA512SUM
bool "sha512sum"
- default n
+ default y
help
Compute and check SHA512 message digest
@@ -601,7 +667,7 @@ config BUSYBOX_SLEEP
config BUSYBOX_FEATURE_FANCY_SLEEP
bool "Enable multiple arguments and s/m/h/d suffixes"
- default n
+ default y
depends on BUSYBOX_SLEEP
help
Allow sleep to pause for specified minutes, hours, and days.
@@ -639,7 +705,7 @@ config BUSYBOX_SPLIT
config BUSYBOX_FEATURE_SPLIT_FANCY
bool "Fancy extensions"
- default n
+ default y
depends on BUSYBOX_SPLIT
help
Add support for features not required by SUSv3.
@@ -649,13 +715,13 @@ config BUSYBOX_FEATURE_SPLIT_FANCY
config BUSYBOX_STAT
bool "stat"
default y
- depends on BUSYBOX_PLATFORM_LINUX # statfs()
+ select BUSYBOX_PLATFORM_LINUX # statfs()
help
display file or filesystem status.
config BUSYBOX_FEATURE_STAT_FORMAT
bool "Enable custom formats (-c)"
- default n
+ default y
depends on BUSYBOX_STAT
help
Without this, stat will not support the '-c format' option where
@@ -664,13 +730,13 @@ config BUSYBOX_FEATURE_STAT_FORMAT
config BUSYBOX_STTY
bool "stty"
- default n
+ default y
help
stty is used to change and print terminal line settings.
config BUSYBOX_SUM
bool "sum"
- default n
+ default y
help
checksum and count the blocks in a file
@@ -705,7 +771,6 @@ config BUSYBOX_FEATURE_FANCY_TAIL
-s SEC Wait SEC seconds between reads with -f
-v Always output headers giving file names
-
config BUSYBOX_TEE
bool "tee"
default y
@@ -715,59 +780,11 @@ config BUSYBOX_TEE
config BUSYBOX_FEATURE_TEE_USE_BLOCK_IO
bool "Enable block I/O (larger/faster) instead of byte I/O"
- default n
+ default y
depends on BUSYBOX_TEE
help
Enable this option for a faster tee, at expense of size.
-config BUSYBOX_TEST
- bool "test"
- default y
- help
- test is used to check file types and compare values,
- returning an appropriate exit code. The bash shell
- has test built in, ash can build it in optionally.
-
-config BUSYBOX_FEATURE_TEST_64
- bool "Extend test to 64 bit"
- default n
- depends on BUSYBOX_TEST || BUSYBOX_ASH_BUILTIN_TEST || BUSYBOX_HUSH
- help
- Enable 64-bit support in test.
-
-config BUSYBOX_TOUCH
- bool "touch"
- default y
- help
- touch is used to create or change the access and/or
- modification timestamp of specified files.
-
-config BUSYBOX_TR
- bool "tr"
- default y
- help
- tr is used to squeeze, and/or delete characters from standard
- input, writing to standard output.
-
-config BUSYBOX_FEATURE_TR_CLASSES
- bool "Enable character classes (such as [:upper:])"
- default y
- depends on BUSYBOX_TR
- help
- Enable character classes, enabling commands such as:
- tr [:upper:] [:lower:] to convert input into lowercase.
-
-config BUSYBOX_FEATURE_TR_EQUIV
- bool "Enable equivalence classes"
- default y
- depends on BUSYBOX_TR
- help
- Enable equivalence classes, which essentially add the enclosed
- character to the current set. For instance, tr [=a=] xyz would
- replace all instances of 'a' with 'xyz'. This option is mainly
- useful for cases when no other way of expressing a character
- is possible.
-
config BUSYBOX_TRUE
bool "true"
default y
@@ -789,13 +806,13 @@ config BUSYBOX_UNAME
config BUSYBOX_UNEXPAND
bool "unexpand"
- default n
+ default y
help
By default, convert only leading sequences of blanks to tabs.
config BUSYBOX_FEATURE_UNEXPAND_LONG_OPTIONS
bool "Enable long options"
- default n
+ default y
depends on BUSYBOX_UNEXPAND && BUSYBOX_LONG_OPTS
help
Support long options for the unexpand applet.
@@ -808,19 +825,19 @@ config BUSYBOX_UNIQ
config BUSYBOX_USLEEP
bool "usleep"
- default n
+ default y
help
usleep is used to pause for a specified number of microseconds.
config BUSYBOX_UUDECODE
bool "uudecode"
- default n
+ default y
help
uudecode is used to decode a uuencoded file.
config BUSYBOX_UUENCODE
bool "uuencode"
- default n
+ default y
help
uuencode is used to uuencode a file.
@@ -833,18 +850,11 @@ config BUSYBOX_WC
config BUSYBOX_FEATURE_WC_LARGE
bool "Support very large files in wc"
- default n
+ default y
depends on BUSYBOX_WC
help
Use "unsigned long long" in wc for counter variables.
-config BUSYBOX_WHO
- bool "who"
- default n
- select BUSYBOX_FEATURE_UTMP
- help
- who is used to show who is logged on.
-
config BUSYBOX_WHOAMI
bool "whoami"
default y
@@ -898,7 +908,7 @@ comment "Common options for md5sum, sha1sum, sha256sum, sha512sum"
config BUSYBOX_FEATURE_MD5_SHA1_SUM_CHECK
bool "Enable -c, -s and -w options"
- default n
+ default y
depends on BUSYBOX_MD5SUM || BUSYBOX_SHA1SUM || BUSYBOX_SHA256SUM || BUSYBOX_SHA512SUM
help
Enabling the -c options allows files to be checked