diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-04-04 19:24:40 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-04-04 19:24:40 +0000 |
commit | 42269e22a8b817e1e6bc2c9cbb2f03df31221458 (patch) | |
tree | 9442619c657a79b6331303a84093872acea9bf3d /package/busybox/config/findutils | |
parent | c8892f410e533d04ded4f46c06c3c117ffd33e4e (diff) | |
download | upstream-42269e22a8b817e1e6bc2c9cbb2f03df31221458.tar.gz upstream-42269e22a8b817e1e6bc2c9cbb2f03df31221458.tar.bz2 upstream-42269e22a8b817e1e6bc2c9cbb2f03df31221458.zip |
update busybox menuconfig to 1.1.1, should fix the "missing reboot" bug
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@3587 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/busybox/config/findutils')
-rw-r--r-- | package/busybox/config/findutils/Config.in | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/package/busybox/config/findutils/Config.in b/package/busybox/config/findutils/Config.in index fb5a8c05f1..9667bfba81 100644 --- a/package/busybox/config/findutils/Config.in +++ b/package/busybox/config/findutils/Config.in @@ -17,7 +17,15 @@ config BUSYBOX_CONFIG_FEATURE_FIND_MTIME depends on BUSYBOX_CONFIG_FIND help Allow searching based on the modification time of - files. + files, in days. + +config BUSYBOX_CONFIG_FEATURE_FIND_MMIN + bool " Enable modified time matching (-min) option" + default n + depends on BUSYBOX_CONFIG_FIND + help + Allow searching based on the modification time of + files, in minutes. config BUSYBOX_CONFIG_FEATURE_FIND_PERM bool " Enable permissions matching (-perm) option" @@ -57,6 +65,14 @@ config BUSYBOX_CONFIG_FEATURE_FIND_INUM help Support the 'find -inum' option for searching by inode number. +config BUSYBOX_CONFIG_FEATURE_FIND_EXEC + bool " Enable (-exec) option allowing execution of commands" + default y + depends on BUSYBOX_CONFIG_FIND + help + Support the 'find -exec' option for executing commands based upon + the files matched. + config BUSYBOX_CONFIG_GREP bool "grep" default y @@ -73,13 +89,13 @@ config BUSYBOX_CONFIG_FEATURE_GREP_EGREP_ALIAS and various repetition operators. config BUSYBOX_CONFIG_FEATURE_GREP_FGREP_ALIAS - bool " Alias fgrep to grep -f" + bool " Alias fgrep to grep -F" default y depends on BUSYBOX_CONFIG_GREP help - fgrep sees the search pattern as a normal string rather than + fgrep sees the search pattern as a normal string rather than regular expressions. - grep -f is always builtin, this just creates the fgrep alias. + grep -F is always builtin, this just creates the fgrep alias. config BUSYBOX_CONFIG_FEATURE_GREP_CONTEXT bool " Enable before and after context flags (-A, -B and -C)" |