summaryrefslogtreecommitdiffstats
path: root/config/busybox/coreutils/Config.in
diff options
context:
space:
mode:
Diffstat (limited to 'config/busybox/coreutils/Config.in')
-rw-r--r--config/busybox/coreutils/Config.in361
1 files changed, 188 insertions, 173 deletions
diff --git a/config/busybox/coreutils/Config.in b/config/busybox/coreutils/Config.in
index e60b713fc..9fb613b55 100644
--- a/config/busybox/coreutils/Config.in
+++ b/config/busybox/coreutils/Config.in
@@ -4,104 +4,103 @@
#
menu "Coreutils"
- depends on BUSYBOX
-config BB_CONFIG_BASENAME
+config BUSYBOX_BASENAME
bool "basename"
default n
help
basename is used to strip the directory and suffix from filenames,
- leaving just the filename itself. Enable this option if you wish
+ leaving just the filename itself. Enable this option if you wish
to enable the 'basename' utility.
-config BB_CONFIG_CAL
+config BUSYBOX_CAL
bool "cal"
default n
help
cal is used to display a monthly calender.
-config BB_CONFIG_CAT
+config BUSYBOX_CAT
bool "cat"
default n
help
cat is used to concatenate files and print them to the standard
- output. Enable this option if you wish to enable the 'cat' utility.
+ output. Enable this option if you wish to enable the 'cat' utility.
-config BB_CONFIG_CATV
+config BUSYBOX_CATV
bool "catv"
default n
help
Display nonprinting characters as escape sequences (like some
implementations' cat -v option).
-config BB_CONFIG_CHGRP
+config BUSYBOX_CHGRP
bool "chgrp"
default n
help
chgrp is used to change the group ownership of files.
-config BB_CONFIG_CHMOD
+config BUSYBOX_CHMOD
bool "chmod"
default n
help
chmod is used to change the access permission of files.
-config BB_CONFIG_CHOWN
+config BUSYBOX_CHOWN
bool "chown"
default n
help
chown is used to change the user and/or group ownership
of files.
-config BB_CONFIG_CHROOT
+config BUSYBOX_CHROOT
bool "chroot"
default n
help
chroot is used to change the root directory and run a command.
The default command is `/bin/sh'.
-config BB_CONFIG_CKSUM
+config BUSYBOX_CKSUM
bool "cksum"
default n
help
cksum is used to calculate the CRC32 checksum of a file.
-config BB_CONFIG_COMM
+config BUSYBOX_COMM
bool "comm"
default n
help
comm is used to compare two files line by line and return
a three-column output.
-config BB_CONFIG_CP
+config BUSYBOX_CP
bool "cp"
default n
help
cp is used to copy files and directories.
-config BB_CONFIG_CUT
+config BUSYBOX_CUT
bool "cut"
default n
help
cut is used to print selected parts of lines from
each file to stdout.
-config BB_CONFIG_DATE
+config BUSYBOX_DATE
bool "date"
default n
help
date is used to set the system date or display the
current time in the given format.
-config BB_CONFIG_FEATURE_DATE_ISOFMT
+config BUSYBOX_FEATURE_DATE_ISOFMT
bool "Enable ISO date format output (-I)"
default y
- depends on BB_CONFIG_DATE
+ depends on BUSYBOX_DATE
help
Enable option (-I) to output an ISO-8601 compliant
date/time string.
-config BB_CONFIG_DD
+config BUSYBOX_DD
bool "dd"
default n
help
@@ -109,91 +108,92 @@ config BB_CONFIG_DD
by default) using specific input and output blocksizes,
while optionally performing conversions on it.
-config BB_CONFIG_FEATURE_DD_SIGNAL_HANDLING
+config BUSYBOX_FEATURE_DD_SIGNAL_HANDLING
bool "Enable DD signal handling for status reporting"
default y
- depends on BB_CONFIG_DD
+ depends on BUSYBOX_DD
help
sending a SIGUSR1 signal to a running `dd' process makes it
print to standard error the number of records read and written
so far, then to resume copying.
- $ dd if=/dev/zero of=/dev/null& pid=$! $ kill -USR1 $pid; sleep 1; kill $pid
+ $ dd if=/dev/zero of=/dev/null&
+ $ pid=$! kill -USR1 $pid; sleep 1; kill $pid
10899206+0 records in 10899206+0 records out
-config BB_CONFIG_FEATURE_DD_IBS_OBS
+config BUSYBOX_FEATURE_DD_IBS_OBS
bool "Enable ibs, obs and conv options"
default n
- depends on BB_CONFIG_DD
+ depends on BUSYBOX_DD
help
Enables support for writing a certain number of bytes in and out,
at a time, and performing conversions on the data stream.
-config BB_CONFIG_DF
+config BUSYBOX_DF
bool "df"
default n
help
df reports the amount of disk space used and available
on filesystems.
-config BB_CONFIG_FEATURE_DF_INODE
- bool "Enable -i (inode information)"
+config BUSYBOX_FEATURE_DF_FANCY
+ bool "Enable -a, -i, -B"
default n
- depends on BB_CONFIG_DF
+ depends on BUSYBOX_DF
help
- This option enables support for df -i.
+ This option enables -a, -i and -B.
-config BB_CONFIG_DIRNAME
+config BUSYBOX_DIRNAME
bool "dirname"
default n
help
dirname is used to strip a non-directory suffix from
a file name.
-config BB_CONFIG_DOS2UNIX
+config BUSYBOX_DOS2UNIX
bool "dos2unix/unix2dos"
default n
help
dos2unix is used to convert a text file from DOS format to
UNIX format, and vice versa.
-config BB_CONFIG_UNIX2DOS
+config BUSYBOX_UNIX2DOS
bool
default y
- depends on BB_CONFIG_DOS2UNIX
+ depends on BUSYBOX_DOS2UNIX
help
unix2dos is used to convert a text file from UNIX format to
DOS format, and vice versa.
-config BB_CONFIG_DU
+config BUSYBOX_DU
bool "du (default blocksize of 512 bytes)"
default n
help
du is used to report the amount of disk space used
for specified files.
-config BB_CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K
+config BUSYBOX_FEATURE_DU_DEFAULT_BLOCKSIZE_1K
bool "Use a default blocksize of 1024 bytes (1K)"
default y
- depends on BB_CONFIG_DU
+ depends on BUSYBOX_DU
help
Use a blocksize of (1K) instead of the default 512b.
-config BB_CONFIG_ECHO
+config BUSYBOX_ECHO
bool "echo (basic SuSv3 version taking no options)"
default n
help
echo is used to print a specified string to stdout.
# this entry also appears in shell/Config.in, next to the echo builtin
-config BB_CONFIG_FEATURE_FANCY_ECHO
+config BUSYBOX_FEATURE_FANCY_ECHO
bool "Enable echo options (-n and -e)"
default y
- depends on BB_CONFIG_ECHO
+ depends on BUSYBOX_ECHO || BUSYBOX_ASH_BUILTIN_ECHO
help
This adds options (-n and -e) to echo.
-config BB_CONFIG_ENV
+config BUSYBOX_ENV
bool "env"
default n
help
@@ -201,171 +201,171 @@ config BB_CONFIG_ENV
a command; without options it displays the current
environment.
-config BB_CONFIG_FEATURE_ENV_LONG_OPTIONS
+config BUSYBOX_FEATURE_ENV_LONG_OPTIONS
bool "Enable long options"
default n
- depends on BB_CONFIG_ENV && BB_CONFIG_GETOPT_LONG
+ depends on BUSYBOX_ENV && BUSYBOX_GETOPT_LONG
help
Support long options for the env applet.
-config BB_CONFIG_EXPAND
+config BUSYBOX_EXPAND
bool "expand"
default n
help
By default, convert all tabs to spaces.
-config BB_CONFIG_FEATURE_EXPAND_LONG_OPTIONS
+config BUSYBOX_FEATURE_EXPAND_LONG_OPTIONS
bool "Enable long options"
default n
- depends on BB_CONFIG_EXPAND && BB_CONFIG_GETOPT_LONG
+ depends on BUSYBOX_EXPAND && BUSYBOX_GETOPT_LONG
help
Support long options for the expand applet.
-config BB_CONFIG_EXPR
+config BUSYBOX_EXPR
bool "expr"
default n
help
expr is used to calculate numbers and print the result
to standard output.
-config BB_CONFIG_EXPR_MATH_SUPPORT_64
+config BUSYBOX_EXPR_MATH_SUPPORT_64
bool "Extend Posix numbers support to 64 bit"
default n
- depends on BB_CONFIG_EXPR
+ depends on BUSYBOX_EXPR
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
the applet slightly larger, but will allow computation with very
large numbers.
-config BB_CONFIG_FALSE
+config BUSYBOX_FALSE
bool "false"
default n
help
false returns an exit code of FALSE (1).
-config BB_CONFIG_FOLD
+config BUSYBOX_FOLD
bool "fold"
default n
help
Wrap text to fit a specific width.
-config BB_CONFIG_HEAD
+config BUSYBOX_HEAD
bool "head"
default n
help
head is used to print the first specified number of lines
from files.
-config BB_CONFIG_FEATURE_FANCY_HEAD
+config BUSYBOX_FEATURE_FANCY_HEAD
bool "Enable head options (-c, -q, and -v)"
default n
- depends on BB_CONFIG_HEAD
+ depends on BUSYBOX_HEAD
help
This enables the head options (-c, -q, and -v).
-config BB_CONFIG_HOSTID
+config BUSYBOX_HOSTID
bool "hostid"
default n
help
hostid prints the numeric identifier (in hexadecimal) for
the current host.
-config BB_CONFIG_ID
+config BUSYBOX_ID
bool "id"
default n
help
id displays the current user and group ID names.
-config BB_CONFIG_INSTALL
+config BUSYBOX_INSTALL
bool "install"
default n
help
Copy files and set attributes.
-config BB_CONFIG_FEATURE_INSTALL_LONG_OPTIONS
+config BUSYBOX_FEATURE_INSTALL_LONG_OPTIONS
bool "Enable long options"
default n
- depends on BB_CONFIG_INSTALL && BB_CONFIG_GETOPT_LONG
+ depends on BUSYBOX_INSTALL && BUSYBOX_GETOPT_LONG
help
Support long options for the install applet.
-config BB_CONFIG_LENGTH
+config BUSYBOX_LENGTH
bool "length"
default n
help
length is used to print out the length of a specified string.
-config BB_CONFIG_LN
+config BUSYBOX_LN
bool "ln"
default n
help
ln is used to create hard or soft links between files.
-config BB_CONFIG_LOGNAME
+config BUSYBOX_LOGNAME
bool "logname"
default n
help
logname is used to print the current user's login name.
-config BB_CONFIG_LS
+config BUSYBOX_LS
bool "ls"
default n
help
ls is used to list the contents of directories.
-config BB_CONFIG_FEATURE_LS_FILETYPES
+config BUSYBOX_FEATURE_LS_FILETYPES
bool "Enable filetyping options (-p and -F)"
default y
- depends on BB_CONFIG_LS
+ depends on BUSYBOX_LS
help
Enable the ls options (-p and -F).
-config BB_CONFIG_FEATURE_LS_FOLLOWLINKS
+config BUSYBOX_FEATURE_LS_FOLLOWLINKS
bool "Enable symlinks dereferencing (-L)"
default y
- depends on BB_CONFIG_LS
+ depends on BUSYBOX_LS
help
Enable the ls option (-L).
-config BB_CONFIG_FEATURE_LS_RECURSIVE
+config BUSYBOX_FEATURE_LS_RECURSIVE
bool "Enable recursion (-R)"
default y
- depends on BB_CONFIG_LS
+ depends on BUSYBOX_LS
help
Enable the ls option (-R).
-config BB_CONFIG_FEATURE_LS_SORTFILES
+config BUSYBOX_FEATURE_LS_SORTFILES
bool "Sort the file names"
default y
- depends on BB_CONFIG_LS
+ depends on BUSYBOX_LS
help
Allow ls to sort file names alphabetically.
-config BB_CONFIG_FEATURE_LS_TIMESTAMPS
+config BUSYBOX_FEATURE_LS_TIMESTAMPS
bool "Show file timestamps"
default y
- depends on BB_CONFIG_LS
+ depends on BUSYBOX_LS
help
Allow ls to display timestamps for files.
-config BB_CONFIG_FEATURE_LS_USERNAME
+config BUSYBOX_FEATURE_LS_USERNAME
bool "Show username/groupnames"
default y
- depends on BB_CONFIG_LS
+ depends on BUSYBOX_LS
help
Allow ls to display username/groupname for files.
-config BB_CONFIG_FEATURE_LS_COLOR
+config BUSYBOX_FEATURE_LS_COLOR
bool "Allow use of color to identify file types"
default y
- depends on BB_CONFIG_LS && BB_CONFIG_GETOPT_LONG
+ depends on BUSYBOX_LS && BUSYBOX_GETOPT_LONG
help
This enables the --color option to ls.
-config BB_CONFIG_FEATURE_LS_COLOR_IS_DEFAULT
+config BUSYBOX_FEATURE_LS_COLOR_IS_DEFAULT
bool "Produce colored ls output by default"
default n
- depends on BB_CONFIG_FEATURE_LS_COLOR
+ depends on BUSYBOX_FEATURE_LS_COLOR
help
Saying yes here will turn coloring on by default,
even if no "--color" option is given to the ls command.
@@ -373,297 +373,312 @@ config BB_CONFIG_FEATURE_LS_COLOR_IS_DEFAULT
configurable, and the output may not be legible on
many output screens.
-config BB_CONFIG_MD5SUM
+config BUSYBOX_MD5SUM
bool "md5sum"
default n
help
md5sum is used to print or check MD5 checksums.
-config BB_CONFIG_MKDIR
+config BUSYBOX_MKDIR
bool "mkdir"
default n
help
mkdir is used to create directories with the specified names.
-config BB_CONFIG_FEATURE_MKDIR_LONG_OPTIONS
+config BUSYBOX_FEATURE_MKDIR_LONG_OPTIONS
bool "Enable long options"
default n
- depends on BB_CONFIG_MKDIR && BB_CONFIG_GETOPT_LONG
+ depends on BUSYBOX_MKDIR && BUSYBOX_GETOPT_LONG
help
Support long options for the mkdir applet.
-config BB_CONFIG_MKFIFO
+config BUSYBOX_MKFIFO
bool "mkfifo"
default n
help
mkfifo is used to create FIFOs (named pipes).
The `mknod' program can also create FIFOs.
-config BB_CONFIG_MKNOD
+config BUSYBOX_MKNOD
bool "mknod"
default n
help
mknod is used to create FIFOs or block/character special
files with the specified names.
-config BB_CONFIG_MV
+config BUSYBOX_MV
bool "mv"
default n
help
mv is used to move or rename files or directories.
-config BB_CONFIG_FEATURE_MV_LONG_OPTIONS
+config BUSYBOX_FEATURE_MV_LONG_OPTIONS
bool "Enable long options"
default n
- depends on BB_CONFIG_MV && BB_CONFIG_GETOPT_LONG
+ depends on BUSYBOX_MV && BUSYBOX_GETOPT_LONG
help
Support long options for the mv applet.
-config BB_CONFIG_NICE
+config BUSYBOX_NICE
bool "nice"
default n
help
nice runs a program with modified scheduling priority.
-config BB_CONFIG_NOHUP
+config BUSYBOX_NOHUP
bool "nohup"
default n
help
run a command immune to hangups, with output to a non-tty.
-config BB_CONFIG_OD
+config BUSYBOX_OD
bool "od"
default n
help
od is used to dump binary files in octal and other formats.
-config BB_CONFIG_PRINTENV
+config BUSYBOX_PRINTENV
bool "printenv"
default n
help
printenv is used to print all or part of environment.
-config BB_CONFIG_PRINTF
+config BUSYBOX_PRINTF
bool "printf"
default n
help
printf is used to format and print specified strings.
It's similar to `echo' except it has more options.
-config BB_CONFIG_PWD
+config BUSYBOX_PWD
bool "pwd"
default n
help
pwd is used to print the current directory.
-config BB_CONFIG_READLINK
+config BUSYBOX_READLINK
bool "readlink"
default n
help
This program reads a symbolic link and returns the name
of the file it points to
-config BB_CONFIG_FEATURE_READLINK_FOLLOW
+config BUSYBOX_FEATURE_READLINK_FOLLOW
bool "Enable canonicalization by following all symlinks (-f)"
default n
- depends on BB_CONFIG_READLINK
+ depends on BUSYBOX_READLINK
help
Enable the readlink option (-f).
-config BB_CONFIG_REALPATH
+config BUSYBOX_REALPATH
bool "realpath"
default n
help
Return the canonicalized absolute pathname.
This isn't provided by GNU shellutils, but where else does it belong.
-config BB_CONFIG_RM
+config BUSYBOX_RM
bool "rm"
default n
help
rm is used to remove files or directories.
-config BB_CONFIG_RMDIR
+config BUSYBOX_RMDIR
bool "rmdir"
default n
help
rmdir is used to remove empty directories.
-config BB_CONFIG_FEATURE_RMDIR_LONG_OPTIONS
+config BUSYBOX_FEATURE_RMDIR_LONG_OPTIONS
bool "Enable long options"
default n
- depends on BB_CONFIG_RMDIR && BB_CONFIG_GETOPT_LONG
+ depends on BUSYBOX_RMDIR && BUSYBOX_GETOPT_LONG
help
Support long options for the rmdir applet, including
--ignore-fail-on-non-empty for compatibility with GNU rmdir.
-config BB_CONFIG_SEQ
+config BUSYBOX_SEQ
bool "seq"
default n
help
print a sequence of numbers
-config BB_CONFIG_SHA1SUM
+config BUSYBOX_SHA1SUM
bool "sha1sum"
default n
help
Compute and check SHA1 message digest
-config BB_CONFIG_SLEEP
- bool "sleep (single integer arg with no suffix)"
+config BUSYBOX_SLEEP
+ bool "sleep"
default n
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:
+ - small: takes one integer parameter
+ - fancy: takes multiple integer arguments with suffixes:
+ sleep 1d 2h 3m 15s
+ - fancy with fractional numbers:
+ sleep 2.3s 4.5h sleeps for 16202.3 seconds
+ Last one is "the most compatible" with coreutils sleep,
+ but it adds around 1k of code.
-config BB_CONFIG_FEATURE_FANCY_SLEEP
- bool "Enable multiple integer args and optional time suffixes"
+config BUSYBOX_FEATURE_FANCY_SLEEP
+ bool "Enable multiple arguments and s/m/h/d suffixes"
default n
- depends on BB_CONFIG_SLEEP
+ depends on BUSYBOX_SLEEP
help
Allow sleep to pause for specified minutes, hours, and days.
-config BB_CONFIG_SORT
+config BUSYBOX_FEATURE_FLOAT_SLEEP
+ bool "Enable fractional arguments"
+ default n
+ depends on BUSYBOX_FEATURE_FANCY_SLEEP
+ help
+ Allow for fractional numeric parameters.
+
+config BUSYBOX_SORT
bool "sort"
default n
help
sort is used to sort lines of text in specified files.
-config BB_CONFIG_FEATURE_SORT_BIG
+config BUSYBOX_FEATURE_SORT_BIG
bool "Full SuSv3 compliant sort (support -ktcsbdfiozgM)"
default y
- depends on BB_CONFIG_SORT
+ depends on BUSYBOX_SORT
help
- Without this, sort only supports -r, -u, and an integer version
- of -n. Selecting this adds sort keys, floating point support, and
- more. This adds a little over 3k to a nonstatic build on x86.
+ Without this, sort only supports -r, -u, and an integer version
+ of -n. Selecting this adds sort keys, floating point support, and
+ more. This adds a little over 3k to a nonstatic build on x86.
The SuSv3 sort standard is available at:
http://www.opengroup.org/onlinepubs/007904975/utilities/sort.html
-config BB_CONFIG_SPLIT
+config BUSYBOX_SPLIT
bool "split"
default n
help
split a file into pieces.
-config BB_CONFIG_FEATURE_SPLIT_FANCY
+config BUSYBOX_FEATURE_SPLIT_FANCY
bool "Fancy extensions"
default n
- depends on BB_CONFIG_SPLIT
+ depends on BUSYBOX_SPLIT
help
Add support for features not required by SUSv3.
Supports additional suffixes 'b' for 512 bytes,
'g' for 1GiB for the -b option.
-config BB_CONFIG_STAT
+config BUSYBOX_STAT
bool "stat"
default n
help
display file or filesystem status.
-config BB_CONFIG_FEATURE_STAT_FORMAT
+config BUSYBOX_FEATURE_STAT_FORMAT
bool "Enable custom formats (-c)"
default n
- depends on BB_CONFIG_STAT
+ depends on BUSYBOX_STAT
help
Without this, stat will not support the '-c format' option where
- users can pass a custom format string for output. This adds about
+ users can pass a custom format string for output. This adds about
7k to a nonstatic build on amd64.
-config BB_CONFIG_STTY
+config BUSYBOX_STTY
bool "stty"
default n
help
stty is used to change and print terminal line settings.
-config BB_CONFIG_SUM
+config BUSYBOX_SUM
bool "sum"
default n
help
checksum and count the blocks in a file
-config BB_CONFIG_SYNC
+config BUSYBOX_SYNC
bool "sync"
default n
help
sync is used to flush filesystem buffers.
-config BB_CONFIG_TAC
+config BUSYBOX_TAC
bool "tac"
default n
help
tac is used to concatenate and print files in reverse.
-config BB_CONFIG_TAIL
+config BUSYBOX_TAIL
bool "tail"
default n
help
tail is used to print the last specified number of lines
from files.
-config BB_CONFIG_FEATURE_FANCY_TAIL
+config BUSYBOX_FEATURE_FANCY_TAIL
bool "Enable extra tail options (-q, -s, and -v)"
default y
- depends on BB_CONFIG_TAIL
+ depends on BUSYBOX_TAIL
help
The options (-q, -s, and -v) are provided by GNU tail, but
are not specific in the SUSv3 standard.
-config BB_CONFIG_TEE
+config BUSYBOX_TEE
bool "tee"
default n
help
tee is used to read from standard input and write
to standard output and files.
-config BB_CONFIG_FEATURE_TEE_USE_BLOCK_IO
+config BUSYBOX_FEATURE_TEE_USE_BLOCK_IO
bool "Enable block I/O (larger/faster) instead of byte I/O"
default n
- depends on BB_CONFIG_TEE
+ depends on BUSYBOX_TEE
help
Enable this option for a faster tee, at expense of size.
-config BB_CONFIG_TEST
+config BUSYBOX_TEST
bool "test"
default n
help
test is used to check file types and compare values,
- returning an appropriate exit code. The bash shell
+ returning an appropriate exit code. The bash shell
has test built in, ash can build it in optionally.
-config BB_CONFIG_FEATURE_TEST_64
+config BUSYBOX_FEATURE_TEST_64
bool "Extend test to 64 bit"
default n
- depends on BB_CONFIG_TEST
+ depends on BUSYBOX_TEST || BUSYBOX_ASH_BUILTIN_TEST
help
Enable 64-bit support in test.
-config BB_CONFIG_TOUCH
+config BUSYBOX_TOUCH
bool "touch"
default n
help
touch is used to create or change the access and/or
modification timestamp of specified files.
-config BB_CONFIG_TR
+config BUSYBOX_TR
bool "tr"
default n
help
tr is used to squeeze, and/or delete characters from standard
input, writing to standard output.
-config BB_CONFIG_FEATURE_TR_CLASSES
+config BUSYBOX_FEATURE_TR_CLASSES
bool "Enable character classes (such as [:upper:])"
default n
- depends on BB_CONFIG_TR
+ depends on BUSYBOX_TR
help
Enable character classes, enabling commands such as:
tr [:upper:] [:lower:] to convert input into lowercase.
-config BB_CONFIG_FEATURE_TR_EQUIV
+config BUSYBOX_FEATURE_TR_EQUIV
bool "Enable equivalence classes"
default n
- depends on BB_CONFIG_TR
+ depends on BUSYBOX_TR
help
Enable equivalence classes, which essentially add the enclosed
character to the current set. For instance, tr [=a=] xyz would
@@ -671,91 +686,91 @@ config BB_CONFIG_FEATURE_TR_EQUIV
useful for cases when no other way of expressing a character
is possible.
-config BB_CONFIG_TRUE
+config BUSYBOX_TRUE
bool "true"
default n
help
true returns an exit code of TRUE (0).
-config BB_CONFIG_TTY
+config BUSYBOX_TTY
bool "tty"
default n
help
tty is used to print the name of the current terminal to
standard output.
-config BB_CONFIG_UNAME
+config BUSYBOX_UNAME
bool "uname"
default n
help
uname is used to print system information.
-config BB_CONFIG_UNEXPAND
+config BUSYBOX_UNEXPAND
bool "unexpand"
default n
help
By default, convert only leading sequences of blanks to tabs.
-config BB_CONFIG_FEATURE_UNEXPAND_LONG_OPTIONS
+config BUSYBOX_FEATURE_UNEXPAND_LONG_OPTIONS
bool "Enable long options"
default n
- depends on BB_CONFIG_UNEXPAND && BB_CONFIG_GETOPT_LONG
+ depends on BUSYBOX_UNEXPAND && BUSYBOX_GETOPT_LONG
help
Support long options for the unexpand applet.
-config BB_CONFIG_UNIQ
+config BUSYBOX_UNIQ
bool "uniq"
default n
help
uniq is used to remove duplicate lines from a sorted file.
-config BB_CONFIG_USLEEP
+config BUSYBOX_USLEEP
bool "usleep"
default n
help
usleep is used to pause for a specified number of microseconds.
-config BB_CONFIG_UUDECODE
+config BUSYBOX_UUDECODE
bool "uudecode"
default n
help
uudecode is used to decode a uuencoded file.
-config BB_CONFIG_UUENCODE
+config BUSYBOX_UUENCODE
bool "uuencode"
default n
help
uuencode is used to uuencode a file.
-config BB_CONFIG_WC
+config BUSYBOX_WC
bool "wc"
default n
help
wc is used to print the number of bytes, words, and lines,
in specified files.
-config BB_CONFIG_FEATURE_WC_LARGE
+config BUSYBOX_FEATURE_WC_LARGE
bool "Support very large files in wc"
default n
- depends on BB_CONFIG_WC
+ depends on BUSYBOX_WC
help
- Use "unsigned long long" in wc for count variables
+ Use "unsigned long long" in wc for count variables.
-config BB_CONFIG_WHO
+config BUSYBOX_WHO
bool "who"
default n
- select BB_CONFIG_FEATURE_UTMP
+ select BUSYBOX_FEATURE_UTMP
help
who is used to show who is logged on.
-config BB_CONFIG_WHOAMI
+config BUSYBOX_WHOAMI
bool "whoami"
default n
help
whoami is used to print the username of the current
user id (same as id -un).
-config BB_CONFIG_YES
+config BUSYBOX_YES
bool "yes"
default n
help
@@ -763,22 +778,22 @@ config BB_CONFIG_YES
the default string `y'.
comment "Common options for cp and mv"
- depends on BB_CONFIG_CP || BB_CONFIG_MV
+ depends on BUSYBOX_CP || BUSYBOX_MV
-config BB_CONFIG_FEATURE_PRESERVE_HARDLINKS
+config BUSYBOX_FEATURE_PRESERVE_HARDLINKS
bool "Preserve hard links"
default n
- depends on BB_CONFIG_CP || BB_CONFIG_MV
+ depends on BUSYBOX_CP || BUSYBOX_MV
help
Allow cp and mv to preserve hard links.
comment "Common options for ls, more and telnet"
- depends on BB_CONFIG_LS || BB_CONFIG_MORE || BB_CONFIG_TELNET
+ depends on BUSYBOX_LS || BUSYBOX_MORE || BUSYBOX_TELNET
-config BB_CONFIG_FEATURE_AUTOWIDTH
+config BUSYBOX_FEATURE_AUTOWIDTH
bool "Calculate terminal & column widths"
default y
- depends on BB_CONFIG_LS || BB_CONFIG_MORE || BB_CONFIG_TELNET
+ depends on BUSYBOX_LS || BUSYBOX_MORE || BUSYBOX_TELNET
help
This option allows utilities such as 'ls', 'more' and 'telnet'
to determine the width of the screen, which can allow them to
@@ -787,22 +802,22 @@ config BB_CONFIG_FEATURE_AUTOWIDTH
primitive and will be unable to determine the current screen width.
comment "Common options for df, du, ls"
- depends on BB_CONFIG_DF || BB_CONFIG_DU || BB_CONFIG_LS
+ depends on BUSYBOX_DF || BUSYBOX_DU || BUSYBOX_LS
-config BB_CONFIG_FEATURE_HUMAN_READABLE
+config BUSYBOX_FEATURE_HUMAN_READABLE
bool "Support for human readable output (example 13k, 23M, 235G)"
default n
- depends on BB_CONFIG_DF || BB_CONFIG_DU || BB_CONFIG_LS
+ depends on BUSYBOX_DF || BUSYBOX_DU || BUSYBOX_LS
help
Allow df, du, and ls to have human readable output.
comment "Common options for md5sum, sha1sum"
- depends on BB_CONFIG_MD5SUM || BB_CONFIG_SHA1SUM
+ depends on BUSYBOX_MD5SUM || BUSYBOX_SHA1SUM
-config BB_CONFIG_FEATURE_MD5_SHA1_SUM_CHECK
+config BUSYBOX_FEATURE_MD5_SHA1_SUM_CHECK
bool "Enable -c, -s and -w options"
default n
- depends on BB_CONFIG_MD5SUM || BB_CONFIG_SHA1SUM
+ depends on BUSYBOX_MD5SUM || BUSYBOX_SHA1SUM
help
Enabling the -c options allows files to be checked
against pre-calculated hash values.