blob: 770d75245eeb0a28c80d03816f19a3107ee54ada [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
14fi
Eric Andersenbdfd0d72001-10-24 05:00:29 +000015bool 'grep' CONFIG_GREP
Matt Kraai999623e2001-10-29 15:49:03 +000016if [ "$CONFIG_GREP" = "y" ] ; then
Eric Andersen71312132001-11-10 09:53:23 +000017 bool ' Support extended regular expressions (egrep & grep -E)' CONFIG_FEATURE_GREP_EGREP_ALIAS
18 bool ' Enable before and after context flags (-A, -B and -C)' CONFIG_FEATURE_GREP_CONTEXT
Matt Kraai999623e2001-10-29 15:49:03 +000019fi
Eric Andersenbdfd0d72001-10-24 05:00:29 +000020bool 'which' CONFIG_WHICH
21bool 'xargs' CONFIG_XARGS
22endmenu
23