blob: a32e989221938ecdc75a526796a890d35c3c277d [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
Denis Vlasenko7d219aa2006-10-05 10:17:08 +00008config FIND
Eric Andersenc9f20d92002-12-05 08:41:41 +00009 bool "find"
10 default n
11 help
Eric Andersen65e20a32003-07-05 07:52:35 +000012 find is used to search your system to find specified files.
Eric Andersenc9f20d92002-12-05 08:41:41 +000013
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000014config FEATURE_FIND_PRINT0
Paul Foxd7384292006-05-12 14:47:20 +000015 bool "Enable -print0 option"
16 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000017 depends on FIND
Paul Foxd7384292006-05-12 14:47:20 +000018 help
19 Causes output names to be separated by a null character
20 rather than a newline. This allows names that contain
21 newlines and other whitespace to be more easily
22 interpreted by other programs.
23
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000024config FEATURE_FIND_MTIME
Rob Landley2ec922e2006-04-13 23:22:16 +000025 bool "Enable modified time matching (-mtime) option"
Eric Andersenc9f20d92002-12-05 08:41:41 +000026 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000027 depends on FIND
Eric Andersenc9f20d92002-12-05 08:41:41 +000028 help
Eric Andersenfb0c6af2003-07-14 19:18:43 +000029 Allow searching based on the modification time of
Paul Fox72d1a232006-01-13 21:05:41 +000030 files, in days.
31
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000032config FEATURE_FIND_MMIN
Rob Landley2ec922e2006-04-13 23:22:16 +000033 bool "Enable modified time matching (-min) option"
Paul Fox72d1a232006-01-13 21:05:41 +000034 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000035 depends on FIND
Paul Fox72d1a232006-01-13 21:05:41 +000036 help
37 Allow searching based on the modification time of
38 files, in minutes.
Eric Andersenc9f20d92002-12-05 08:41:41 +000039
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000040config FEATURE_FIND_PERM
Rob Landley2ec922e2006-04-13 23:22:16 +000041 bool "Enable permissions matching (-perm) option"
Eric Andersenc9f20d92002-12-05 08:41:41 +000042 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000043 depends on FIND
Eric Andersenc9f20d92002-12-05 08:41:41 +000044 help
Eric Andersenfb0c6af2003-07-14 19:18:43 +000045 Enable searching based on file permissions.
Eric Andersenc9f20d92002-12-05 08:41:41 +000046
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000047config FEATURE_FIND_TYPE
Rob Landley2ec922e2006-04-13 23:22:16 +000048 bool "Enable filetype matching (-type) option"
Eric Andersenc9f20d92002-12-05 08:41:41 +000049 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000050 depends on FIND
Eric Andersenc9f20d92002-12-05 08:41:41 +000051 help
Eric Andersenfb0c6af2003-07-14 19:18:43 +000052 Enable searching based on file type (file,
53 directory, socket, device, etc.).
Eric Andersenc9f20d92002-12-05 08:41:41 +000054
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000055config FEATURE_FIND_XDEV
Rob Landley2ec922e2006-04-13 23:22:16 +000056 bool "Enable stay in filesystem (-xdev) option"
Eric Andersenc9f20d92002-12-05 08:41:41 +000057 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000058 depends on FIND
Eric Andersenc9f20d92002-12-05 08:41:41 +000059 help
Eric Andersen88c916b2003-10-22 09:58:56 +000060 This option will allow find to restrict searches to a single
Eric Andersenfb0c6af2003-07-14 19:18:43 +000061 filesystem.
Eric Andersenc9f20d92002-12-05 08:41:41 +000062
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000063config FEATURE_FIND_NEWER
Rob Landley2ec922e2006-04-13 23:22:16 +000064 bool "Enable -newer option for comparing file mtimes"
Eric Andersen97d86f22003-01-23 05:27:42 +000065 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000066 depends on FIND
Eric Andersen97d86f22003-01-23 05:27:42 +000067 help
68 Support the 'find -newer' option for finding any files which have
69 a modified time that is more recent than the specified FILE.
70
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000071config FEATURE_FIND_INUM
Rob Landley2ec922e2006-04-13 23:22:16 +000072 bool "Enable inode number matching (-inum) option"
Eric Andersen97d86f22003-01-23 05:27:42 +000073 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000074 depends on FIND
Eric Andersen97d86f22003-01-23 05:27:42 +000075 help
Eric Andersen88c916b2003-10-22 09:58:56 +000076 Support the 'find -inum' option for searching by inode number.
Eric Andersen97d86f22003-01-23 05:27:42 +000077
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000078config FEATURE_FIND_EXEC
Rob Landley2ec922e2006-04-13 23:22:16 +000079 bool "Enable (-exec) option allowing execution of commands"
Rob Landley5d3a0e82005-10-04 03:34:39 +000080 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000081 depends on FIND
Rob Landley5d3a0e82005-10-04 03:34:39 +000082 help
83 Support the 'find -exec' option for executing commands based upon
84 the files matched.
85
Denis Vlasenkoa1007072007-02-02 01:17:52 +000086config FEATURE_FIND_USER
87 bool "Enable username/uid matching (-user) option"
88 default y
89 depends on FIND
90 help
91 Support the 'find -user' option for searching by username or uid.
92
Denis Vlasenko56fce002007-04-04 23:41:35 +000093config FEATURE_FIND_GROUP
94 bool "Enable group/gid matching (-group) option"
95 default y
96 depends on FIND
97 help
98 Support the 'find -group' option for searching by group name or gid.
99
Denis Vlasenkocf787cf2007-02-04 17:11:25 +0000100config FEATURE_FIND_NOT
101 bool "Enable the 'not' (!) operator"
102 default y
103 depends on FIND
104 help
Denis Vlasenko56fce002007-04-04 23:41:35 +0000105 Support the '!' operator to invert the test results.
106 If 'Enable full-blown desktop' is enabled, then will also support
107 the non-POSIX notation '-not'.
108
109config FEATURE_FIND_DEPTH
110 bool "Enable the -depth option"
111 default y
112 depends on FIND
113 help
114 Process each directory's contents before the directory itself.
115
116config FEATURE_FIND_PAREN
117 bool "Enable parens in options"
118 default y
119 depends on FIND
120 help
121 Enable usage of parens '(' to specify logical order of arguments.
122
123config FEATURE_FIND_SIZE
124 bool "Enable (-size) option allowing matching for file size"
125 default y
126 depends on FIND
127 help
128 Support the 'find -size' option for searching by file size.
129
130config FEATURE_FIND_PRUNE
131 bool "Enable (-prune) option allowing to exclude subdirectories"
132 default y
133 depends on FIND
134 help
135 If the file is a directory, dont descend into it. Useful for
136 exclusion .svn and CVS directories.
Denis Vlasenkocf787cf2007-02-04 17:11:25 +0000137
Denis Vlasenko62f04792007-04-13 10:00:12 +0000138config FEATURE_FIND_DELETE
139 bool "Enable -delete option allowing to delete files"
140 default n
141 depends on FIND && FEATURE_FIND_DEPTH
142 help
143 Support the 'find -delete' option for deleting files and direcotries.
144 WARNING: This option can do much harm if used wrong. Busybox will not
145 try to protect the user from doing stupid things. Use with care.
146
147config FEATURE_FIND_PATH
148 bool "Enable -path option allowing to match pathname patterns"
149 default y
150 depends on FIND
151 help
152 The -path option matches whole pathnames instead of just filenames.
153
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000154config GREP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000155 bool "grep"
156 default n
157 help
Eric Andersen65e20a32003-07-05 07:52:35 +0000158 grep is used to search files for a specified pattern.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000159
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000160config FEATURE_GREP_EGREP_ALIAS
Rob Landley2ec922e2006-04-13 23:22:16 +0000161 bool "Support extended regular expressions (egrep & grep -E)"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000162 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000163 depends on GREP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000164 help
Eric Andersenfb0c6af2003-07-14 19:18:43 +0000165 Enabled support for extended regular expressions. Extended
166 regular expressions allow for alternation (foo|bar), grouping,
167 and various repetition operators.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000168
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000169config FEATURE_GREP_FGREP_ALIAS
Rob Landley2ec922e2006-04-13 23:22:16 +0000170 bool "Alias fgrep to grep -F"
Glenn L McGrathc91ce572003-04-27 02:43:54 +0000171 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000172 depends on GREP
Glenn L McGrathc91ce572003-04-27 02:43:54 +0000173 help
Mike Frysinger15ca5862005-07-31 22:41:05 +0000174 fgrep sees the search pattern as a normal string rather than
Glenn L McGrathc91ce572003-04-27 02:43:54 +0000175 regular expressions.
Mike Frysinger15ca5862005-07-31 22:41:05 +0000176 grep -F is always builtin, this just creates the fgrep alias.
Glenn L McGrathc91ce572003-04-27 02:43:54 +0000177
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000178config FEATURE_GREP_CONTEXT
Rob Landley2ec922e2006-04-13 23:22:16 +0000179 bool "Enable before and after context flags (-A, -B and -C)"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000180 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000181 depends on GREP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000182 help
Eric Andersene5642112003-07-14 19:37:08 +0000183 Print the specified number of leading (-B) and/or trailing (-A)
184 context surrounding our matching lines.
185 Print the specified number of context lines (-C).
Eric Andersenc9f20d92002-12-05 08:41:41 +0000186
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000187config XARGS
Eric Andersenc9f20d92002-12-05 08:41:41 +0000188 bool "xargs"
189 default n
190 help
Eric Andersen65e20a32003-07-05 07:52:35 +0000191 xargs is used to execute a specified command on
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000192 every item from standard input.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000193
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000194config FEATURE_XARGS_SUPPORT_CONFIRMATION
Rob Landley2ec922e2006-04-13 23:22:16 +0000195 bool "Enable prompt and confirmation option -p"
Glenn L McGrathd12061b2003-10-10 23:15:23 +0000196 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000197 depends on XARGS
Glenn L McGrath99825962003-10-09 11:06:45 +0000198 help
Glenn L McGrathd12061b2003-10-10 23:15:23 +0000199 Support prompt the user about whether to run each command
200 line and read a line from the terminal.
201
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000202config FEATURE_XARGS_SUPPORT_QUOTES
Rob Landley2ec922e2006-04-13 23:22:16 +0000203 bool "Enable support single and double quotes and backslash"
Glenn L McGrathd12061b2003-10-10 23:15:23 +0000204 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000205 depends on XARGS
Glenn L McGrathd12061b2003-10-10 23:15:23 +0000206 help
207 Default xargs unsupport single and double quotes
208 and backslash for can use aruments with spaces.
209
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000210config FEATURE_XARGS_SUPPORT_TERMOPT
Rob Landley2ec922e2006-04-13 23:22:16 +0000211 bool "Enable support options -x"
Glenn L McGrathd12061b2003-10-10 23:15:23 +0000212 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000213 depends on XARGS
Glenn L McGrathd12061b2003-10-10 23:15:23 +0000214 help
215 Enable support exit if the size (see the -s or -n option)
216 is exceeded.
217
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000218config FEATURE_XARGS_SUPPORT_ZERO_TERM
Mike Frysinger441bfbf2006-07-03 05:19:44 +0000219 bool "Enable null terminated option -0"
Glenn L McGrathd12061b2003-10-10 23:15:23 +0000220 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000221 depends on XARGS
Glenn L McGrathd12061b2003-10-10 23:15:23 +0000222 help
223 Enable input filenames are terminated by a null character
224 instead of by whitespace, and the quotes and backslash
225 are not special.
Glenn L McGrath99825962003-10-09 11:06:45 +0000226
Eric Andersenc9f20d92002-12-05 08:41:41 +0000227endmenu