Config.in 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  1. # DO NOT EDIT. This file is generated from Config.src
  2. #
  3. # For a description of the syntax of this configuration file,
  4. # see scripts/kbuild/config-language.txt.
  5. #
  6. menu "Finding Utilities"
  7. config BUSYBOX_FIND
  8. bool "find"
  9. depends on !BUSYBOX_DISABLE_FIND
  10. default y
  11. help
  12. find is used to search your system to find specified files.
  13. config BUSYBOX_FEATURE_FIND_PRINT0
  14. bool "Enable -print0: NUL-terminated output"
  15. default y
  16. depends on BUSYBOX_FIND
  17. help
  18. Causes output names to be separated by a NUL character
  19. rather than a newline. This allows names that contain
  20. newlines and other whitespace to be more easily
  21. interpreted by other programs.
  22. config BUSYBOX_FEATURE_FIND_MTIME
  23. bool "Enable -mtime: modified time matching"
  24. default y
  25. depends on BUSYBOX_FIND
  26. help
  27. Allow searching based on the modification time of
  28. files, in days.
  29. config BUSYBOX_FEATURE_FIND_MMIN
  30. bool "Enable -mmin: modified time matching by minutes"
  31. default y
  32. depends on BUSYBOX_FIND
  33. help
  34. Allow searching based on the modification time of
  35. files, in minutes.
  36. config BUSYBOX_FEATURE_FIND_PERM
  37. bool "Enable -perm: permissions matching"
  38. default y
  39. depends on BUSYBOX_FIND
  40. help
  41. Enable searching based on file permissions.
  42. config BUSYBOX_FEATURE_FIND_TYPE
  43. bool "Enable -type: file type matching (file/dir/link/...)"
  44. default y
  45. depends on BUSYBOX_FIND
  46. help
  47. Enable searching based on file type (file,
  48. directory, socket, device, etc.).
  49. config BUSYBOX_FEATURE_FIND_XDEV
  50. bool "Enable -xdev: 'stay in filesystem'"
  51. default y
  52. depends on BUSYBOX_FIND
  53. help
  54. This option allows find to restrict searches to a single filesystem.
  55. config BUSYBOX_FEATURE_FIND_MAXDEPTH
  56. bool "Enable -mindepth N and -maxdepth N"
  57. default y
  58. depends on BUSYBOX_FIND
  59. help
  60. This option enables -mindepth N and -maxdepth N option.
  61. config BUSYBOX_FEATURE_FIND_NEWER
  62. bool "Enable -newer: compare file modification times"
  63. default y
  64. depends on BUSYBOX_FIND
  65. help
  66. Support the 'find -newer' option for finding any files which have
  67. modification time that is more recent than the specified FILE.
  68. config BUSYBOX_FEATURE_FIND_INUM
  69. bool "Enable -inum: inode number matching"
  70. default y
  71. depends on BUSYBOX_FIND
  72. help
  73. Support the 'find -inum' option for searching by inode number.
  74. config BUSYBOX_FEATURE_FIND_EMPTY
  75. bool "Enable -empty option matching empty files and directories"
  76. default y
  77. depends on BUSYBOX_FIND
  78. help
  79. Support the 'find -empty' option for searching empty files
  80. and directories.
  81. config BUSYBOX_FEATURE_FIND_EXEC
  82. bool "Enable -exec: execute commands"
  83. default y
  84. depends on BUSYBOX_FIND
  85. help
  86. Support the 'find -exec' option for executing commands based upon
  87. the files matched.
  88. config BUSYBOX_FEATURE_FIND_EXEC_PLUS
  89. bool "Enable -exec ... {} +"
  90. default y
  91. depends on BUSYBOX_FEATURE_FIND_EXEC
  92. help
  93. Support the 'find -exec ... {} +' option for executing commands
  94. for all matched files at once.
  95. Without this option, -exec + is a synonym for -exec ;
  96. (IOW: it works correctly, but without expected speedup)
  97. config BUSYBOX_FEATURE_FIND_USER
  98. bool "Enable -user: username/uid matching"
  99. default y
  100. depends on BUSYBOX_FIND
  101. help
  102. Support the 'find -user' option for searching by username or uid.
  103. config BUSYBOX_FEATURE_FIND_GROUP
  104. bool "Enable -group: group/gid matching"
  105. default y
  106. depends on BUSYBOX_FIND
  107. help
  108. Support the 'find -group' option for searching by group name or gid.
  109. config BUSYBOX_FEATURE_FIND_NOT
  110. bool "Enable the 'not' (!) operator"
  111. default y
  112. depends on BUSYBOX_FIND
  113. help
  114. Support the '!' operator to invert the test results.
  115. If 'Enable full-blown desktop' is enabled, then will also support
  116. the non-POSIX notation '-not'.
  117. config BUSYBOX_FEATURE_FIND_DEPTH
  118. bool "Enable -depth"
  119. default y
  120. depends on BUSYBOX_FIND
  121. help
  122. Process each directory's contents before the directory itself.
  123. config BUSYBOX_FEATURE_FIND_PAREN
  124. bool "Enable parens in options"
  125. default y
  126. depends on BUSYBOX_FIND
  127. help
  128. Enable usage of parens '(' to specify logical order of arguments.
  129. config BUSYBOX_FEATURE_FIND_SIZE
  130. bool "Enable -size: file size matching"
  131. default y
  132. depends on BUSYBOX_FIND
  133. help
  134. Support the 'find -size' option for searching by file size.
  135. config BUSYBOX_FEATURE_FIND_PRUNE
  136. bool "Enable -prune: exclude subdirectories"
  137. default y
  138. depends on BUSYBOX_FIND
  139. help
  140. If the file is a directory, dont descend into it. Useful for
  141. exclusion .svn and CVS directories.
  142. config BUSYBOX_FEATURE_FIND_DELETE
  143. bool "Enable -delete: delete files/dirs"
  144. default y
  145. depends on BUSYBOX_FIND && BUSYBOX_FEATURE_FIND_DEPTH
  146. help
  147. Support the 'find -delete' option for deleting files and directories.
  148. WARNING: This option can do much harm if used wrong. Busybox will not
  149. try to protect the user from doing stupid things. Use with care.
  150. config BUSYBOX_FEATURE_FIND_PATH
  151. bool "Enable -path: match pathname with shell pattern"
  152. default y
  153. depends on BUSYBOX_FIND
  154. help
  155. The -path option matches whole pathname instead of just filename.
  156. config BUSYBOX_FEATURE_FIND_REGEX
  157. bool "Enable -regex: match pathname with regex"
  158. default y
  159. depends on BUSYBOX_FIND
  160. help
  161. The -regex option matches whole pathname against regular expression.
  162. config BUSYBOX_FEATURE_FIND_CONTEXT
  163. bool "Enable -context: security context matching"
  164. default n
  165. depends on BUSYBOX_FIND && BUSYBOX_SELINUX
  166. help
  167. Support the 'find -context' option for matching security context.
  168. config BUSYBOX_FEATURE_FIND_LINKS
  169. bool "Enable -links: link count matching"
  170. default y
  171. depends on BUSYBOX_FIND
  172. help
  173. Support the 'find -links' option for matching number of links.
  174. config BUSYBOX_GREP
  175. bool "grep"
  176. depends on !BUSYBOX_DISABLE_GREP
  177. default y
  178. help
  179. grep is used to search files for a specified pattern.
  180. config BUSYBOX_FEATURE_GREP_EGREP_ALIAS
  181. bool "Enable extended regular expressions (egrep & grep -E)"
  182. default y
  183. depends on BUSYBOX_GREP
  184. help
  185. Enabled support for extended regular expressions. Extended
  186. regular expressions allow for alternation (foo|bar), grouping,
  187. and various repetition operators.
  188. config BUSYBOX_FEATURE_GREP_FGREP_ALIAS
  189. bool "Alias fgrep to grep -F"
  190. default y
  191. depends on BUSYBOX_GREP
  192. help
  193. fgrep sees the search pattern as a normal string rather than
  194. regular expressions.
  195. grep -F always works, this just creates the fgrep alias.
  196. config BUSYBOX_FEATURE_GREP_CONTEXT
  197. bool "Enable before and after context flags (-A, -B and -C)"
  198. default y
  199. depends on BUSYBOX_GREP
  200. help
  201. Print the specified number of leading (-B) and/or trailing (-A)
  202. context surrounding our matching lines.
  203. Print the specified number of context lines (-C).
  204. config BUSYBOX_XARGS
  205. bool "xargs"
  206. default n
  207. help
  208. xargs is used to execute a specified command for
  209. every item from standard input.
  210. config BUSYBOX_FEATURE_XARGS_SUPPORT_CONFIRMATION
  211. bool "Enable -p: prompt and confirmation"
  212. default y
  213. depends on BUSYBOX_XARGS
  214. help
  215. Support -p: prompt the user whether to run each command
  216. line and read a line from the terminal.
  217. config BUSYBOX_FEATURE_XARGS_SUPPORT_QUOTES
  218. bool "Enable single and double quotes and backslash"
  219. default y
  220. depends on BUSYBOX_XARGS
  221. help
  222. Support quoting in the input.
  223. config BUSYBOX_FEATURE_XARGS_SUPPORT_TERMOPT
  224. bool "Enable -x: exit if -s or -n is exceeded"
  225. default y
  226. depends on BUSYBOX_XARGS
  227. help
  228. Support -x: exit if the command size (see the -s or -n option)
  229. is exceeded.
  230. config BUSYBOX_FEATURE_XARGS_SUPPORT_ZERO_TERM
  231. bool "Enable -0: NUL-terminated input"
  232. default y
  233. depends on BUSYBOX_XARGS
  234. help
  235. Support -0: input items are terminated by a NUL character
  236. instead of whitespace, and the quotes and backslash
  237. are not special.
  238. config BUSYBOX_FEATURE_XARGS_SUPPORT_REPL_STR
  239. bool "Enable -I STR: string to replace"
  240. default y
  241. depends on BUSYBOX_XARGS
  242. help
  243. Support -I STR and -i[STR] options.
  244. endmenu