aboutsummaryrefslogtreecommitdiffstats
path: root/package/utils/busybox/config/findutils/Config.in
diff options
context:
space:
mode:
Diffstat (limited to 'package/utils/busybox/config/findutils/Config.in')
-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