Config.in 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  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_USER
  81. bool "Enable -user: username/uid matching"
  82. default BUSYBOX_DEFAULT_FEATURE_FIND_USER
  83. depends on BUSYBOX_CONFIG_FIND
  84. help
  85. Support the 'find -user' option for searching by username or uid.
  86. config BUSYBOX_CONFIG_FEATURE_FIND_GROUP
  87. bool "Enable -group: group/gid matching"
  88. default BUSYBOX_DEFAULT_FEATURE_FIND_GROUP
  89. depends on BUSYBOX_CONFIG_FIND
  90. help
  91. Support the 'find -group' option for searching by group name or gid.
  92. config BUSYBOX_CONFIG_FEATURE_FIND_NOT
  93. bool "Enable the 'not' (!) operator"
  94. default BUSYBOX_DEFAULT_FEATURE_FIND_NOT
  95. depends on BUSYBOX_CONFIG_FIND
  96. help
  97. Support the '!' operator to invert the test results.
  98. If 'Enable full-blown desktop' is enabled, then will also support
  99. the non-POSIX notation '-not'.
  100. config BUSYBOX_CONFIG_FEATURE_FIND_DEPTH
  101. bool "Enable -depth"
  102. default BUSYBOX_DEFAULT_FEATURE_FIND_DEPTH
  103. depends on BUSYBOX_CONFIG_FIND
  104. help
  105. Process each directory's contents before the directory itself.
  106. config BUSYBOX_CONFIG_FEATURE_FIND_PAREN
  107. bool "Enable parens in options"
  108. default BUSYBOX_DEFAULT_FEATURE_FIND_PAREN
  109. depends on BUSYBOX_CONFIG_FIND
  110. help
  111. Enable usage of parens '(' to specify logical order of arguments.
  112. config BUSYBOX_CONFIG_FEATURE_FIND_SIZE
  113. bool "Enable -size: file size matching"
  114. default BUSYBOX_DEFAULT_FEATURE_FIND_SIZE
  115. depends on BUSYBOX_CONFIG_FIND
  116. help
  117. Support the 'find -size' option for searching by file size.
  118. config BUSYBOX_CONFIG_FEATURE_FIND_PRUNE
  119. bool "Enable -prune: exclude subdirectories"
  120. default BUSYBOX_DEFAULT_FEATURE_FIND_PRUNE
  121. depends on BUSYBOX_CONFIG_FIND
  122. help
  123. If the file is a directory, dont descend into it. Useful for
  124. exclusion .svn and CVS directories.
  125. config BUSYBOX_CONFIG_FEATURE_FIND_DELETE
  126. bool "Enable -delete: delete files/dirs"
  127. default BUSYBOX_DEFAULT_FEATURE_FIND_DELETE
  128. depends on BUSYBOX_CONFIG_FIND && BUSYBOX_CONFIG_FEATURE_FIND_DEPTH
  129. help
  130. Support the 'find -delete' option for deleting files and directories.
  131. WARNING: This option can do much harm if used wrong. Busybox will not
  132. try to protect the user from doing stupid things. Use with care.
  133. config BUSYBOX_CONFIG_FEATURE_FIND_PATH
  134. bool "Enable -path: match pathname with shell pattern"
  135. default BUSYBOX_DEFAULT_FEATURE_FIND_PATH
  136. depends on BUSYBOX_CONFIG_FIND
  137. help
  138. The -path option matches whole pathname instead of just filename.
  139. config BUSYBOX_CONFIG_FEATURE_FIND_REGEX
  140. bool "Enable -regex: match pathname with regex"
  141. default BUSYBOX_DEFAULT_FEATURE_FIND_REGEX
  142. depends on BUSYBOX_CONFIG_FIND
  143. help
  144. The -regex option matches whole pathname against regular expression.
  145. config BUSYBOX_CONFIG_FEATURE_FIND_CONTEXT
  146. bool "Enable -context: security context matching"
  147. default BUSYBOX_DEFAULT_FEATURE_FIND_CONTEXT
  148. depends on BUSYBOX_CONFIG_FIND && BUSYBOX_CONFIG_SELINUX
  149. help
  150. Support the 'find -context' option for matching security context.
  151. config BUSYBOX_CONFIG_FEATURE_FIND_LINKS
  152. bool "Enable -links: link count matching"
  153. default BUSYBOX_DEFAULT_FEATURE_FIND_LINKS
  154. depends on BUSYBOX_CONFIG_FIND
  155. help
  156. Support the 'find -links' option for matching number of links.
  157. config BUSYBOX_CONFIG_GREP
  158. bool "grep"
  159. default BUSYBOX_DEFAULT_GREP
  160. help
  161. grep is used to search files for a specified pattern.
  162. config BUSYBOX_CONFIG_FEATURE_GREP_EGREP_ALIAS
  163. bool "Enable extended regular expressions (egrep & grep -E)"
  164. default BUSYBOX_DEFAULT_FEATURE_GREP_EGREP_ALIAS
  165. depends on BUSYBOX_CONFIG_GREP
  166. help
  167. Enabled support for extended regular expressions. Extended
  168. regular expressions allow for alternation (foo|bar), grouping,
  169. and various repetition operators.
  170. config BUSYBOX_CONFIG_FEATURE_GREP_FGREP_ALIAS
  171. bool "Alias fgrep to grep -F"
  172. default BUSYBOX_DEFAULT_FEATURE_GREP_FGREP_ALIAS
  173. depends on BUSYBOX_CONFIG_GREP
  174. help
  175. fgrep sees the search pattern as a normal string rather than
  176. regular expressions.
  177. grep -F always works, this just creates the fgrep alias.
  178. config BUSYBOX_CONFIG_FEATURE_GREP_CONTEXT
  179. bool "Enable before and after context flags (-A, -B and -C)"
  180. default BUSYBOX_DEFAULT_FEATURE_GREP_CONTEXT
  181. depends on BUSYBOX_CONFIG_GREP
  182. help
  183. 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).
  186. config BUSYBOX_CONFIG_XARGS
  187. bool "xargs"
  188. default BUSYBOX_DEFAULT_XARGS
  189. help
  190. xargs is used to execute a specified command for
  191. every item from standard input.
  192. config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION
  193. bool "Enable -p: prompt and confirmation"
  194. default BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_CONFIRMATION
  195. depends on BUSYBOX_CONFIG_XARGS
  196. help
  197. Support -p: prompt the user whether to run each command
  198. line and read a line from the terminal.
  199. config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_QUOTES
  200. bool "Enable single and double quotes and backslash"
  201. default BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_QUOTES
  202. depends on BUSYBOX_CONFIG_XARGS
  203. help
  204. Support quoting in the input.
  205. config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT
  206. bool "Enable -x: exit if -s or -n is exceeded"
  207. default BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_TERMOPT
  208. depends on BUSYBOX_CONFIG_XARGS
  209. help
  210. Support -x: exit if the command size (see the -s or -n option)
  211. is exceeded.
  212. config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM
  213. bool "Enable -0: NUL-terminated input"
  214. default BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_ZERO_TERM
  215. depends on BUSYBOX_CONFIG_XARGS
  216. help
  217. Support -0: input items are terminated by a NUL character
  218. instead of whitespace, and the quotes and backslash
  219. are not special.
  220. endmenu