nbd's makefile/menuconfig rewrite
[openwrt/svn-archive/archive.git] / openwrt / package / busybox / config / findutils / Config.in
1 #
2 # For a description of the syntax of this configuration file,
3 # see scripts/kbuild/config-language.txt.
4 #
5
6 menu "Finding Utilities"
7
8 config BUSYBOX_CONFIG_FIND
9 bool "find"
10 default y
11 help
12 find is used to search your system to find specified files.
13
14 config BUSYBOX_CONFIG_FEATURE_FIND_MTIME
15 bool " Enable modified time matching (-mtime) option"
16 default n
17 depends on BUSYBOX_CONFIG_FIND
18 help
19 Allow searching based on the modification time of
20 files.
21
22 config BUSYBOX_CONFIG_FEATURE_FIND_PERM
23 bool " Enable permissions matching (-perm) option"
24 default y
25 depends on BUSYBOX_CONFIG_FIND
26 help
27 Enable searching based on file permissions.
28
29 config BUSYBOX_CONFIG_FEATURE_FIND_TYPE
30 bool " Enable filetype matching (-type) option"
31 default y
32 depends on BUSYBOX_CONFIG_FIND
33 help
34 Enable searching based on file type (file,
35 directory, socket, device, etc.).
36
37 config BUSYBOX_CONFIG_FEATURE_FIND_XDEV
38 bool " Enable stay in filesystem (-xdev) option"
39 default y
40 depends on BUSYBOX_CONFIG_FIND
41 help
42 This option will allow find to restrict searches to a single
43 filesystem.
44
45 config BUSYBOX_CONFIG_FEATURE_FIND_NEWER
46 bool " Enable -newer option for comparing file mtimes"
47 default n
48 depends on BUSYBOX_CONFIG_FIND
49 help
50 Support the 'find -newer' option for finding any files which have
51 a modified time that is more recent than the specified FILE.
52
53 config BUSYBOX_CONFIG_FEATURE_FIND_INUM
54 bool " Enable inode number matching (-inum) option"
55 default n
56 depends on BUSYBOX_CONFIG_FIND
57 help
58 Support the 'find -inum' option for searching by inode number.
59
60 config BUSYBOX_CONFIG_GREP
61 bool "grep"
62 default y
63 help
64 grep is used to search files for a specified pattern.
65
66 config BUSYBOX_CONFIG_FEATURE_GREP_EGREP_ALIAS
67 bool " Support extended regular expressions (egrep & grep -E)"
68 default y
69 depends on BUSYBOX_CONFIG_GREP
70 help
71 Enabled support for extended regular expressions. Extended
72 regular expressions allow for alternation (foo|bar), grouping,
73 and various repetition operators.
74
75 config BUSYBOX_CONFIG_FEATURE_GREP_FGREP_ALIAS
76 bool " Alias fgrep to grep -f"
77 default y
78 depends on BUSYBOX_CONFIG_GREP
79 help
80 fgrep sees the search pattern as a normal string rather than
81 regular expressions.
82 grep -f is always builtin, this just creates the fgrep alias.
83
84 config BUSYBOX_CONFIG_FEATURE_GREP_CONTEXT
85 bool " Enable before and after context flags (-A, -B and -C)"
86 default y
87 depends on BUSYBOX_CONFIG_GREP
88 help
89 Print the specified number of leading (-B) and/or trailing (-A)
90 context surrounding our matching lines.
91 Print the specified number of context lines (-C).
92
93 config BUSYBOX_CONFIG_XARGS
94 bool "xargs"
95 default y
96 help
97 xargs is used to execute a specified command on
98 every item from standard input.
99
100 config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION
101 bool " Enable prompt and confirmation option -p"
102 default y
103 depends on BUSYBOX_CONFIG_XARGS
104 help
105 Support prompt the user about whether to run each command
106 line and read a line from the terminal.
107
108 config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_QUOTES
109 bool " Enable support single and double quotes and backslash"
110 default y
111 depends on BUSYBOX_CONFIG_XARGS
112 help
113 Default xargs unsupport single and double quotes
114 and backslash for can use aruments with spaces.
115
116 config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT
117 bool " Enable support options -x"
118 default y
119 depends on BUSYBOX_CONFIG_XARGS
120 help
121 Enable support exit if the size (see the -s or -n option)
122 is exceeded.
123
124 config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM
125 bool " Enable options -0"
126 default y
127 depends on BUSYBOX_CONFIG_XARGS
128 help
129 Enable input filenames are terminated by a null character
130 instead of by whitespace, and the quotes and backslash
131 are not special.
132
133 endmenu