| 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, in days.
|
|---|
| 21 |
|
|---|
| 22 | config BUSYBOX_CONFIG_FEATURE_FIND_MMIN
|
|---|
| 23 | bool " Enable modified time matching (-min) option"
|
|---|
| 24 | default n
|
|---|
| 25 | depends on BUSYBOX_CONFIG_FIND
|
|---|
| 26 | help
|
|---|
| 27 | Allow searching based on the modification time of
|
|---|
| 28 | files, in minutes.
|
|---|
| 29 |
|
|---|
| 30 | config BUSYBOX_CONFIG_FEATURE_FIND_PERM
|
|---|
| 31 | bool " Enable permissions matching (-perm) option"
|
|---|
| 32 | default y
|
|---|
| 33 | depends on BUSYBOX_CONFIG_FIND
|
|---|
| 34 | help
|
|---|
| 35 | Enable searching based on file permissions.
|
|---|
| 36 |
|
|---|
| 37 | config BUSYBOX_CONFIG_FEATURE_FIND_TYPE
|
|---|
| 38 | bool " Enable filetype matching (-type) option"
|
|---|
| 39 | default y
|
|---|
| 40 | depends on BUSYBOX_CONFIG_FIND
|
|---|
| 41 | help
|
|---|
| 42 | Enable searching based on file type (file,
|
|---|
| 43 | directory, socket, device, etc.).
|
|---|
| 44 |
|
|---|
| 45 | config BUSYBOX_CONFIG_FEATURE_FIND_XDEV
|
|---|
| 46 | bool " Enable stay in filesystem (-xdev) option"
|
|---|
| 47 | default y
|
|---|
| 48 | depends on BUSYBOX_CONFIG_FIND
|
|---|
| 49 | help
|
|---|
| 50 | This option will allow find to restrict searches to a single
|
|---|
| 51 | filesystem.
|
|---|
| 52 |
|
|---|
| 53 | config BUSYBOX_CONFIG_FEATURE_FIND_NEWER
|
|---|
| 54 | bool " Enable -newer option for comparing file mtimes"
|
|---|
| 55 | default n
|
|---|
| 56 | depends on BUSYBOX_CONFIG_FIND
|
|---|
| 57 | help
|
|---|
| 58 | Support the 'find -newer' option for finding any files which have
|
|---|
| 59 | a modified time that is more recent than the specified FILE.
|
|---|
| 60 |
|
|---|
| 61 | config BUSYBOX_CONFIG_FEATURE_FIND_INUM
|
|---|
| 62 | bool " Enable inode number matching (-inum) option"
|
|---|
| 63 | default n
|
|---|
| 64 | depends on BUSYBOX_CONFIG_FIND
|
|---|
| 65 | help
|
|---|
| 66 | Support the 'find -inum' option for searching by inode number.
|
|---|
| 67 |
|
|---|
| 68 | config BUSYBOX_CONFIG_FEATURE_FIND_EXEC
|
|---|
| 69 | bool " Enable (-exec) option allowing execution of commands"
|
|---|
| 70 | default y
|
|---|
| 71 | depends on BUSYBOX_CONFIG_FIND
|
|---|
| 72 | help
|
|---|
| 73 | Support the 'find -exec' option for executing commands based upon
|
|---|
| 74 | the files matched.
|
|---|
| 75 |
|
|---|
| 76 | config BUSYBOX_CONFIG_GREP
|
|---|
| 77 | bool "grep"
|
|---|
| 78 | default y
|
|---|
| 79 | help
|
|---|
| 80 | grep is used to search files for a specified pattern.
|
|---|
| 81 |
|
|---|
| 82 | config BUSYBOX_CONFIG_FEATURE_GREP_EGREP_ALIAS
|
|---|
| 83 | bool " Support extended regular expressions (egrep & grep -E)"
|
|---|
| 84 | default y
|
|---|
| 85 | depends on BUSYBOX_CONFIG_GREP
|
|---|
| 86 | help
|
|---|
| 87 | Enabled support for extended regular expressions. Extended
|
|---|
| 88 | regular expressions allow for alternation (foo|bar), grouping,
|
|---|
| 89 | and various repetition operators.
|
|---|
| 90 |
|
|---|
| 91 | config BUSYBOX_CONFIG_FEATURE_GREP_FGREP_ALIAS
|
|---|
| 92 | bool " Alias fgrep to grep -F"
|
|---|
| 93 | default y
|
|---|
| 94 | depends on BUSYBOX_CONFIG_GREP
|
|---|
| 95 | help
|
|---|
| 96 | fgrep sees the search pattern as a normal string rather than
|
|---|
| 97 | regular expressions.
|
|---|
| 98 | grep -F is always builtin, this just creates the fgrep alias.
|
|---|
| 99 |
|
|---|
| 100 | config BUSYBOX_CONFIG_FEATURE_GREP_CONTEXT
|
|---|
| 101 | bool " Enable before and after context flags (-A, -B and -C)"
|
|---|
| 102 | default y
|
|---|
| 103 | depends on BUSYBOX_CONFIG_GREP
|
|---|
| 104 | help
|
|---|
| 105 | Print the specified number of leading (-B) and/or trailing (-A)
|
|---|
| 106 | context surrounding our matching lines.
|
|---|
| 107 | Print the specified number of context lines (-C).
|
|---|
| 108 |
|
|---|
| 109 | config BUSYBOX_CONFIG_XARGS
|
|---|
| 110 | bool "xargs"
|
|---|
| 111 | default y
|
|---|
| 112 | help
|
|---|
| 113 | xargs is used to execute a specified command on
|
|---|
| 114 | every item from standard input.
|
|---|
| 115 |
|
|---|
| 116 | config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION
|
|---|
| 117 | bool " Enable prompt and confirmation option -p"
|
|---|
| 118 | default y
|
|---|
| 119 | depends on BUSYBOX_CONFIG_XARGS
|
|---|
| 120 | help
|
|---|
| 121 | Support prompt the user about whether to run each command
|
|---|
| 122 | line and read a line from the terminal.
|
|---|
| 123 |
|
|---|
| 124 | config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_QUOTES
|
|---|
| 125 | bool " Enable support single and double quotes and backslash"
|
|---|
| 126 | default y
|
|---|
| 127 | depends on BUSYBOX_CONFIG_XARGS
|
|---|
| 128 | help
|
|---|
| 129 | Default xargs unsupport single and double quotes
|
|---|
| 130 | and backslash for can use aruments with spaces.
|
|---|
| 131 |
|
|---|
| 132 | config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT
|
|---|
| 133 | bool " Enable support options -x"
|
|---|
| 134 | default y
|
|---|
| 135 | depends on BUSYBOX_CONFIG_XARGS
|
|---|
| 136 | help
|
|---|
| 137 | Enable support exit if the size (see the -s or -n option)
|
|---|
| 138 | is exceeded.
|
|---|
| 139 |
|
|---|
| 140 | config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM
|
|---|
| 141 | bool " Enable options -0"
|
|---|
| 142 | default y
|
|---|
| 143 | depends on BUSYBOX_CONFIG_XARGS
|
|---|
| 144 | help
|
|---|
| 145 | Enable input filenames are terminated by a null character
|
|---|
| 146 | instead of by whitespace, and the quotes and backslash
|
|---|
| 147 | are not special.
|
|---|
| 148 |
|
|---|
| 149 | endmenu
|
|---|