aboutsummaryrefslogtreecommitdiffstats
path: root/package/utils/busybox/config/findutils
diff options
context:
space:
mode:
authorYousong Zhou <yszhou4tech@gmail.com>2019-02-27 03:23:45 +0000
committerYousong Zhou <yszhou4tech@gmail.com>2019-03-01 08:09:41 +0000
commiteb6f5a58b904814f9a73281949f32f04c190d727 (patch)
tree2aae8c89eda14c375baa4a25e139c8788ca80364 /package/utils/busybox/config/findutils
parent157072ea2b7bdbe8de1339936a5933061a27e67a (diff)
downloadupstream-eb6f5a58b904814f9a73281949f32f04c190d727.tar.gz
upstream-eb6f5a58b904814f9a73281949f32f04c190d727.tar.bz2
upstream-eb6f5a58b904814f9a73281949f32f04c190d727.zip
busybox: sync Config.in files
The change was made with the following commands cd package/utils/busybox/config ../convert_menuconfig.pl ~/git-repo/openwrt/openwrt/build_dir/target-mips_24kc_musl/busybox-1.30.1 convert_defaults.pl has no changes other than overwriting defaults for BUSYBOX_DEFAULT_FEATURE_IPV6 Resolves FS#2146 Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
Diffstat (limited to 'package/utils/busybox/config/findutils')
-rw-r--r--package/utils/busybox/config/findutils/Config.in38
1 files changed, 30 insertions, 8 deletions
diff --git a/package/utils/busybox/config/findutils/Config.in b/package/utils/busybox/config/findutils/Config.in
index 0e9a1392f7..bebcbb39ef 100644
--- a/package/utils/busybox/config/findutils/Config.in
+++ b/package/utils/busybox/config/findutils/Config.in
@@ -1,13 +1,13 @@
# 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.
+# see docs/Kconfig-language.txt.
#
menu "Finding Utilities"
config BUSYBOX_CONFIG_FIND
- bool "find"
+ bool "find (14 kb)"
default BUSYBOX_DEFAULT_FIND
help
find is used to search your system to find specified files.
@@ -51,6 +51,11 @@ config BUSYBOX_CONFIG_FEATURE_FIND_TYPE
Enable searching based on file type (file,
directory, socket, device, etc.).
+config BUSYBOX_CONFIG_FEATURE_FIND_EXECUTABLE
+ bool "Enable -executable: file is executable"
+ default BUSYBOX_DEFAULT_FEATURE_FIND_EXECUTABLE
+ depends on BUSYBOX_CONFIG_FIND
+
config BUSYBOX_CONFIG_FEATURE_FIND_XDEV
bool "Enable -xdev: 'stay in filesystem'"
default BUSYBOX_DEFAULT_FEATURE_FIND_XDEV
@@ -138,6 +143,13 @@ config BUSYBOX_CONFIG_FEATURE_FIND_PRUNE
If the file is a directory, don't descend into it. Useful for
exclusion .svn and CVS directories.
+config BUSYBOX_CONFIG_FEATURE_FIND_QUIT
+ bool "Enable -quit: exit"
+ default BUSYBOX_DEFAULT_FEATURE_FIND_QUIT
+ depends on BUSYBOX_CONFIG_FIND
+ help
+ If this action is reached, 'find' exits.
+
config BUSYBOX_CONFIG_FEATURE_FIND_DELETE
bool "Enable -delete: delete files/dirs"
default BUSYBOX_DEFAULT_FEATURE_FIND_DELETE
@@ -175,22 +187,22 @@ config BUSYBOX_CONFIG_FEATURE_FIND_LINKS
help
Support the 'find -links' option for matching number of links.
config BUSYBOX_CONFIG_GREP
- bool "grep"
+ bool "grep (8.6 kb)"
default BUSYBOX_DEFAULT_GREP
help
grep is used to search files for a specified pattern.
config BUSYBOX_CONFIG_EGREP
- bool "egrep"
+ bool "egrep (7.8 kb)"
default BUSYBOX_DEFAULT_EGREP
help
- Alias to "grep -E"
+ Alias to "grep -E".
config BUSYBOX_CONFIG_FGREP
- bool "fgrep"
+ bool "fgrep (7.8 kb)"
default BUSYBOX_DEFAULT_FGREP
help
- Alias to "grep -F"
+ Alias to "grep -F".
config BUSYBOX_CONFIG_FEATURE_GREP_CONTEXT
bool "Enable before and after context flags (-A, -B and -C)"
@@ -201,7 +213,7 @@ config BUSYBOX_CONFIG_FEATURE_GREP_CONTEXT
context surrounding our matching lines.
Print the specified number of context lines (-C).
config BUSYBOX_CONFIG_XARGS
- bool "xargs"
+ bool "xargs (7.2 kb)"
default BUSYBOX_DEFAULT_XARGS
help
xargs is used to execute a specified command for
@@ -246,4 +258,14 @@ config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_REPL_STR
help
Support -I STR and -i[STR] options.
+config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_PARALLEL
+ bool "Enable -P N: processes to run in parallel"
+ default BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_PARALLEL
+ depends on BUSYBOX_CONFIG_XARGS
+
+config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_ARGS_FILE
+ bool "Enable -a FILE: use FILE instead of stdin"
+ default BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_ARGS_FILE
+ depends on BUSYBOX_CONFIG_XARGS
+
endmenu