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.in23
1 files changed, 22 insertions, 1 deletions
diff --git a/config/busybox/coreutils/Config.in b/config/busybox/coreutils/Config.in
index b05b80893..0ba3e7a66 100644
--- a/config/busybox/coreutils/Config.in
+++ b/config/busybox/coreutils/Config.in
@@ -74,6 +74,11 @@ config BUSYBOX_GROUPS
default y
help
Print the group names associated with current user id.
+config BUSYBOX_SHUF
+ bool "shuf"
+ default y
+ help
+ Generate random permutations
config BUSYBOX_TEST
bool "test"
default y
@@ -134,6 +139,11 @@ config BUSYBOX_FEATURE_TR_EQUIV
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_UNLINK
+ bool "unlink"
+ default y
+ help
+ unlink deletes a file by calling unlink()
config BUSYBOX_BASE64
bool "base64"
default y
@@ -778,12 +788,13 @@ config BUSYBOX_FEATURE_FANCY_TAIL
default y
depends on BUSYBOX_TAIL
help
- The options (-q, -s, and -v) are provided by GNU tail, but
+ The options (-q, -s, -v and -F) are provided by GNU tail, but
are not specific in the SUSv3 standard.
-q Never output headers giving file names
-s SEC Wait SEC seconds between reads with -f
-v Always output headers giving file names
+ -F Same as -f, but keep retrying
config BUSYBOX_TEE
bool "tee"
@@ -883,6 +894,16 @@ config BUSYBOX_YES
yes is used to repeatedly output a specific string, or
the default string `y'.
+comment "Common options"
+
+config BUSYBOX_FEATURE_VERBOSE
+ bool "Support verbose options (usually -v) for various applets"
+ default y
+ help
+ Enable cp -v, rm -v and similar messages.
+ Also enables long option (--verbose) if it exists.
+ Without this option, -v is accepted but ignored.
+
comment "Common options for cp and mv"
depends on BUSYBOX_CP || BUSYBOX_MV