Config.in 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  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_CONFIG_FIND
  8. bool "find"
  9. default BUSYBOX_DEFAULT_FIND
  10. help
  11. find is used to search your system to find specified files.
  12. config BUSYBOX_CONFIG_FEATURE_FIND_PRINT0
  13. bool "Enable -print0: NUL-terminated output"
  14. default BUSYBOX_DEFAULT_FEATURE_FIND_PRINT0
  15. depends on BUSYBOX_CONFIG_FIND
  16. help
  17. Causes output names to be separated by a NUL character
  18. rather than a newline. This allows names that contain
  19. newlines and other whitespace to be more easily
  20. interpreted by other programs.
  21. config BUSYBOX_CONFIG_FEATURE_FIND_MTIME
  22. bool "Enable -mtime: modified time matching"
  23. default BUSYBOX_DEFAULT_FEATURE_FIND_MTIME
  24. depends on BUSYBOX_CONFIG_FIND
  25. help
  26. Allow searching based on the modification time of
  27. files, in days.
  28. config BUSYBOX_CONFIG_FEATURE_FIND_MMIN
  29. bool "Enable -mmin: modified time matching by minutes"
  30. default BUSYBOX_DEFAULT_FEATURE_FIND_MMIN
  31. depends on BUSYBOX_CONFIG_FIND
  32. help
  33. Allow searching based on the modification time of
  34. files, in minutes.
  35. config BUSYBOX_CONFIG_FEATURE_FIND_PERM
  36. bool "Enable -perm: permissions matching"
  37. default BUSYBOX_DEFAULT_FEATURE_FIND_PERM
  38. depends on BUSYBOX_CONFIG_FIND
  39. help
  40. Enable searching based on file permissions.
  41. config BUSYBOX_CONFIG_FEATURE_FIND_TYPE
  42. bool "Enable -type: file type matching (file/dir/link/...)"
  43. default BUSYBOX_DEFAULT_FEATURE_FIND_TYPE
  44. depends on BUSYBOX_CONFIG_FIND
  45. help
  46. Enable searching based on file type (file,
  47. directory, socket, device, etc.).
  48. config BUSYBOX_CONFIG_FEATURE_FIND_XDEV
  49. bool "Enable -xdev: 'stay in filesystem'"
  50. default BUSYBOX_DEFAULT_FEATURE_FIND_XDEV
  51. depends on BUSYBOX_CONFIG_FIND
  52. help
  53. This option allows find to restrict searches to a single filesystem.
  54. config BUSYBOX_CONFIG_FEATURE_FIND_MAXDEPTH
  55. bool "Enable -mindepth N and -maxdepth N"
  56. default BUSYBOX_DEFAULT_FEATURE_FIND_MAXDEPTH
  57. depends on BUSYBOX_CONFIG_FIND
  58. help
  59. This option enables -mindepth N and -maxdepth N option.
  60. config BUSYBOX_CONFIG_FEATURE_FIND_NEWER
  61. bool "Enable -newer: compare file modification times"
  62. default BUSYBOX_DEFAULT_FEATURE_FIND_NEWER
  63. depends on BUSYBOX_CONFIG_FIND
  64. help
  65. Support the 'find -newer' option for finding any files which have
  66. modification time that is more recent than the specified FILE.
  67. config BUSYBOX_CONFIG_FEATURE_FIND_INUM
  68. bool "Enable -inum: inode number matching"
  69. default BUSYBOX_DEFAULT_FEATURE_FIND_INUM
  70. depends on BUSYBOX_CONFIG_FIND
  71. help
  72. Support the 'find -inum' option for searching by inode number.
  73. config BUSYBOX_CONFIG_FEATURE_FIND_EXEC
  74. bool "Enable -exec: execute commands"
  75. default BUSYBOX_DEFAULT_FEATURE_FIND_EXEC
  76. depends on BUSYBOX_CONFIG_FIND
  77. help
  78. Support the 'find -exec' option for executing commands based upon
  79. the files matched.
  80. config BUSYBOX_CONFIG_FEATURE_FIND_EXEC_PLUS
  81. bool "Enable -exec ... {} +"
  82. default BUSYBOX_DEFAULT_FEATURE_FIND_EXEC_PLUS
  83. depends on BUSYBOX_CONFIG_FEATURE_FIND_EXEC
  84. help
  85. Support the 'find -exec ... {} +' option for executing commands
  86. for all matched files at once.
  87. Without this option, -exec + is a synonym for -exec ;
  88. (IOW: it works correctly, but without expected speedup)
  89. config BUSYBOX_CONFIG_FEATURE_FIND_USER
  90. bool "Enable -user: username/uid matching"
  91. default BUSYBOX_DEFAULT_FEATURE_FIND_USER
  92. depends on BUSYBOX_CONFIG_FIND
  93. help
  94. Support the 'find -user' option for searching by username or uid.
  95. config BUSYBOX_CONFIG_FEATURE_FIND_GROUP
  96. bool "Enable -group: group/gid matching"
  97. default BUSYBOX_DEFAULT_FEATURE_FIND_GROUP
  98. depends on BUSYBOX_CONFIG_FIND
  99. help
  100. Support the 'find -group' option for searching by group name or gid.
  101. config BUSYBOX_CONFIG_FEATURE_FIND_NOT
  102. bool "Enable the 'not' (!) operator"
  103. default BUSYBOX_DEFAULT_FEATURE_FIND_NOT
  104. depends on BUSYBOX_CONFIG_FIND
  105. help
  106. Support the '!' operator to invert the test results.
  107. If 'Enable full-blown desktop' is enabled, then will also support
  108. the non-POSIX notation '-not'.
  109. config BUSYBOX_CONFIG_FEATURE_FIND_DEPTH
  110. bool "Enable -depth"
  111. default BUSYBOX_DEFAULT_FEATURE_FIND_DEPTH
  112. depends on BUSYBOX_CONFIG_FIND
  113. help
  114. Process each directory's contents before the directory itself.
  115. config BUSYBOX_CONFIG_FEATURE_FIND_PAREN
  116. bool "Enable parens in options"
  117. default BUSYBOX_DEFAULT_FEATURE_FIND_PAREN
  118. depends on BUSYBOX_CONFIG_FIND
  119. help
  120. Enable usage of parens '(' to specify logical order of arguments.
  121. config BUSYBOX_CONFIG_FEATURE_FIND_SIZE
  122. bool "Enable -size: file size matching"
  123. default BUSYBOX_DEFAULT_FEATURE_FIND_SIZE
  124. depends on BUSYBOX_CONFIG_FIND
  125. help
  126. Support the 'find -size' option for searching by file size.
  127. config BUSYBOX_CONFIG_FEATURE_FIND_PRUNE
  128. bool "Enable -prune: exclude subdirectories"
  129. default BUSYBOX_DEFAULT_FEATURE_FIND_PRUNE
  130. depends on BUSYBOX_CONFIG_FIND
  131. help
  132. If the file is a directory, dont descend into it. Useful for
  133. exclusion .svn and CVS directories.
  134. config BUSYBOX_CONFIG_FEATURE_FIND_DELETE
  135. bool "Enable -delete: delete files/dirs"
  136. default BUSYBOX_DEFAULT_FEATURE_FIND_DELETE
  137. depends on BUSYBOX_CONFIG_FIND && BUSYBOX_CONFIG_FEATURE_FIND_DEPTH
  138. help
  139. Support the 'find -delete' option for deleting files and directories.
  140. WARNING: This option can do much harm if used wrong. Busybox will not
  141. try to protect the user from doing stupid things. Use with care.
  142. config BUSYBOX_CONFIG_FEATURE_FIND_PATH
  143. bool "Enable -path: match pathname with shell pattern"
  144. default BUSYBOX_DEFAULT_FEATURE_FIND_PATH
  145. depends on BUSYBOX_CONFIG_FIND
  146. help
  147. The -path option matches whole pathname instead of just filename.
  148. config BUSYBOX_CONFIG_FEATURE_FIND_REGEX
  149. bool "Enable -regex: match pathname with regex"
  150. default BUSYBOX_DEFAULT_FEATURE_FIND_REGEX
  151. depends on BUSYBOX_CONFIG_FIND
  152. help
  153. The -regex option matches whole pathname against regular expression.
  154. config BUSYBOX_CONFIG_FEATURE_FIND_CONTEXT
  155. bool "Enable -context: security context matching"
  156. default BUSYBOX_DEFAULT_FEATURE_FIND_CONTEXT
  157. depends on BUSYBOX_CONFIG_FIND && BUSYBOX_CONFIG_SELINUX
  158. help
  159. Support the 'find -context' option for matching security context.
  160. config BUSYBOX_CONFIG_FEATURE_FIND_LINKS
  161. bool "Enable -links: link count matching"
  162. default BUSYBOX_DEFAULT_FEATURE_FIND_LINKS
  163. depends on BUSYBOX_CONFIG_FIND
  164. help
  165. Support the 'find -links' option for matching number of links.
  166. config BUSYBOX_CONFIG_GREP
  167. bool "grep"
  168. default BUSYBOX_DEFAULT_GREP
  169. help
  170. grep is used to search files for a specified pattern.
  171. config BUSYBOX_CONFIG_FEATURE_GREP_EGREP_ALIAS
  172. bool "Enable extended regular expressions (egrep & grep -E)"
  173. default BUSYBOX_DEFAULT_FEATURE_GREP_EGREP_ALIAS
  174. depends on BUSYBOX_CONFIG_GREP
  175. help
  176. Enabled support for extended regular expressions. Extended
  177. regular expressions allow for alternation (foo|bar), grouping,
  178. and various repetition operators.
  179. config BUSYBOX_CONFIG_FEATURE_GREP_FGREP_ALIAS
  180. bool "Alias fgrep to grep -F"
  181. default BUSYBOX_DEFAULT_FEATURE_GREP_FGREP_ALIAS
  182. depends on BUSYBOX_CONFIG_GREP
  183. help
  184. fgrep sees the search pattern as a normal string rather than
  185. regular expressions.
  186. grep -F always works, this just creates the fgrep alias.
  187. config BUSYBOX_CONFIG_FEATURE_GREP_CONTEXT
  188. bool "Enable before and after context flags (-A, -B and -C)"
  189. default BUSYBOX_DEFAULT_FEATURE_GREP_CONTEXT
  190. depends on BUSYBOX_CONFIG_GREP
  191. help
  192. Print the specified number of leading (-B) and/or trailing (-A)
  193. context surrounding our matching lines.
  194. Print the specified number of context lines (-C).
  195. config BUSYBOX_CONFIG_XARGS
  196. bool "xargs"
  197. default BUSYBOX_DEFAULT_XARGS
  198. help
  199. xargs is used to execute a specified command for
  200. every item from standard input.
  201. config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION
  202. bool "Enable -p: prompt and confirmation"
  203. default BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_CONFIRMATION
  204. depends on BUSYBOX_CONFIG_XARGS
  205. help
  206. Support -p: prompt the user whether to run each command
  207. line and read a line from the terminal.
  208. config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_QUOTES
  209. bool "Enable single and double quotes and backslash"
  210. default BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_QUOTES
  211. depends on BUSYBOX_CONFIG_XARGS
  212. help
  213. Support quoting in the input.
  214. config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT
  215. bool "Enable -x: exit if -s or -n is exceeded"
  216. default BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_TERMOPT
  217. depends on BUSYBOX_CONFIG_XARGS
  218. help
  219. Support -x: exit if the command size (see the -s or -n option)
  220. is exceeded.
  221. config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM
  222. bool "Enable -0: NUL-terminated input"
  223. default BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_ZERO_TERM
  224. depends on BUSYBOX_CONFIG_XARGS
  225. help
  226. Support -0: input items are terminated by a NUL character
  227. instead of whitespace, and the quotes and backslash
  228. are not special.
  229. config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_REPL_STR
  230. bool "Enable -I STR: string to replace"
  231. default BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_REPL_STR
  232. depends on BUSYBOX_CONFIG_XARGS
  233. help
  234. Support -I STR and -i[STR] options.
  235. endmenu