blob: 42400ffb84233a8bd0b2d6474c992e490daed26f [file] [log] [blame]
Eric Andersenc9f20d92002-12-05 08:41:41 +00001#
2# For a description of the syntax of this configuration file,
3# see scripts/kbuild/config-language.txt.
4#
5
6menu "Finding Utilities"
7
8config CONFIG_FIND
9 bool "find"
10 default n
11 help
12 Please submit a patch to add help text for this item.
13
14config CONFIG_FEATURE_FIND_MTIME
15 bool " Enable modified time matching (-mtime) option"
16 default y
17 depends on CONFIG_FIND
18 help
19 Please submit a patch to add help text for this item.
20
21config CONFIG_FEATURE_FIND_PERM
22 bool " Enable permissions matching (-perm) option"
23 default y
24 depends on CONFIG_FIND
25 help
26 Please submit a patch to add help text for this item.
27
28config CONFIG_FEATURE_FIND_TYPE
29 bool " Enable filetype matching (-type) option"
30 default y
31 depends on CONFIG_FIND
32 help
33 Please submit a patch to add help text for this item.
34
35config CONFIG_FEATURE_FIND_XDEV
36 bool " Enable stay in filesystem (-xdev) option"
37 default y
38 depends on CONFIG_FIND
39 help
40 Please submit a patch to add help text for this item.
41
42config CONFIG_GREP
43 bool "grep"
44 default n
45 help
46 Please submit a patch to add help text for this item.
47
48config CONFIG_FEATURE_GREP_EGREP_ALIAS
49 bool " Support extended regular expressions (egrep & grep -E)"
50 default y
51 depends on CONFIG_GREP
52 help
53 Please submit a patch to add help text for this item.
54
55config CONFIG_FEATURE_GREP_CONTEXT
56 bool " Enable before and after context flags (-A, -B and -C)"
57 default y
58 depends on CONFIG_GREP
59 help
60 Please submit a patch to add help text for this item.
61
62config CONFIG_XARGS
63 bool "xargs"
64 default n
65 help
66 Please submit a patch to add help text for this item.
67
68
69endmenu
70