blob: d5a3714d21966f103826be06f1ac77d531fef3e6 [file] [log] [blame]
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001#
2# For a description of the syntax of this configuration file,
3# see scripts/kbuild/config-language.txt.
4#
5
6mainmenu_option next_comment
7comment 'Finding Utilities'
8
9bool 'find' CONFIG_FIND
Eric Andersen71312132001-11-10 09:53:23 +000010if [ "$CONFIG_FIND" = "y" ] ; then
11 bool ' Enable modified time matching (-mtime) option' CONFIG_FEATURE_FIND_MTIME
12 bool ' Enable permissions matching (-perm) option' CONFIG_FEATURE_FIND_PERM
13 bool ' Enable filetype matching (-type) option' CONFIG_FEATURE_FIND_TYPE
Robert Griebl41369af2002-07-24 00:34:48 +000014 bool ' Enable stay in filesystem (-xdev) option' CONFIG_FEATURE_FIND_XDEV
Eric Andersen71312132001-11-10 09:53:23 +000015fi
Eric Andersenbdfd0d72001-10-24 05:00:29 +000016bool 'grep' CONFIG_GREP
Matt Kraai999623e2001-10-29 15:49:03 +000017if [ "$CONFIG_GREP" = "y" ] ; then
Eric Andersen71312132001-11-10 09:53:23 +000018 bool ' Support extended regular expressions (egrep & grep -E)' CONFIG_FEATURE_GREP_EGREP_ALIAS
19 bool ' Enable before and after context flags (-A, -B and -C)' CONFIG_FEATURE_GREP_CONTEXT
Matt Kraai999623e2001-10-29 15:49:03 +000020fi
Eric Andersenbdfd0d72001-10-24 05:00:29 +000021bool 'which' CONFIG_WHICH
22bool 'xargs' CONFIG_XARGS
23endmenu
24