diff options
Diffstat (limited to 'package/busybox/config/findutils/Config.in')
-rw-r--r-- | package/busybox/config/findutils/Config.in | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/package/busybox/config/findutils/Config.in b/package/busybox/config/findutils/Config.in index a9bb761b2..09c30f6d5 100644 --- a/package/busybox/config/findutils/Config.in +++ b/package/busybox/config/findutils/Config.in @@ -54,6 +54,11 @@ config BUSYBOX_FEATURE_FIND_TYPE Enable searching based on file type (file, directory, socket, device, etc.). +config BUSYBOX_FEATURE_FIND_EXECUTABLE + bool "Enable -executable: file is executable" + default y + depends on BUSYBOX_FIND + config BUSYBOX_FEATURE_FIND_XDEV bool "Enable -xdev: 'stay in filesystem'" default y @@ -161,6 +166,13 @@ config BUSYBOX_FEATURE_FIND_PRUNE If the file is a directory, dont descend into it. Useful for exclusion .svn and CVS directories. +config BUSYBOX_FEATURE_FIND_QUIT + bool "Enable -quit: exit" + default y + depends on BUSYBOX_FIND + help + If this action is reached, 'find' exits. + config BUSYBOX_FEATURE_FIND_DELETE bool "Enable -delete: delete files/dirs" default y @@ -274,4 +286,14 @@ config BUSYBOX_FEATURE_XARGS_SUPPORT_REPL_STR help Support -I STR and -i[STR] options. +config BUSYBOX_FEATURE_XARGS_SUPPORT_PARALLEL + bool "Enable -P N: processes to run in parallel" + default y + depends on BUSYBOX_XARGS + +config BUSYBOX_FEATURE_XARGS_SUPPORT_ARGS_FILE + bool "Enable -a FILE: use FILE instead of stdin" + default y + depends on BUSYBOX_XARGS + endmenu |