diff options
| author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-06-18 13:23:58 +0200 |
|---|---|---|
| committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-06-18 13:23:58 +0200 |
| commit | bcbd37df2495359195b0deda7c85deacc9b3ff13 (patch) | |
| tree | bcbbf5011f4972def1e79210f23bcacc04d73ff2 | |
| parent | 14f6f0ad4a9d07f927b96b08c20d7ea546318517 (diff) | |
| download | busybox-w32-bcbd37df2495359195b0deda7c85deacc9b3ff13.tar.gz busybox-w32-bcbd37df2495359195b0deda7c85deacc9b3ff13.tar.bz2 busybox-w32-bcbd37df2495359195b0deda7c85deacc9b3ff13.zip | |
tweak Config texts and some broken English elsewhere
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| -rw-r--r-- | archival/Config.in | 10 | ||||
| -rw-r--r-- | findutils/Config.in | 65 | ||||
| -rw-r--r-- | libbb/Config.in | 1 | ||||
| -rw-r--r-- | libbb/inet_common.c | 2 | ||||
| -rw-r--r-- | modutils/Config.in | 3 | ||||
| -rw-r--r-- | networking/Config.in | 13 |
6 files changed, 48 insertions, 46 deletions
diff --git a/archival/Config.in b/archival/Config.in index a983e4433..1ea6f3d16 100644 --- a/archival/Config.in +++ b/archival/Config.in | |||
| @@ -53,12 +53,12 @@ config AR | |||
| 53 | probably say N here. | 53 | probably say N here. |
| 54 | 54 | ||
| 55 | config FEATURE_AR_LONG_FILENAMES | 55 | config FEATURE_AR_LONG_FILENAMES |
| 56 | bool "Support for long filenames (not need for debs)" | 56 | bool "Support for long filenames (not needed for debs)" |
| 57 | default n | 57 | default n |
| 58 | depends on AR | 58 | depends on AR |
| 59 | help | 59 | help |
| 60 | By default the ar format can only store the first 15 characters of | 60 | By default the ar format can only store the first 15 characters |
| 61 | the filename, this option removes that limitation. | 61 | of the filename, this option removes that limitation. |
| 62 | It supports the GNU ar long filename method which moves multiple long | 62 | It supports the GNU ar long filename method which moves multiple long |
| 63 | filenames into a the data section of a new ar entry. | 63 | filenames into a the data section of a new ar entry. |
| 64 | 64 | ||
| @@ -211,11 +211,11 @@ config FEATURE_TAR_CREATE | |||
| 211 | tar archives using the `-c' option. | 211 | tar archives using the `-c' option. |
| 212 | 212 | ||
| 213 | config FEATURE_TAR_AUTODETECT | 213 | config FEATURE_TAR_AUTODETECT |
| 214 | bool "Autodetect gz/bz2 compressed tarballs" | 214 | bool "Autodetect compressed tarballs" |
| 215 | default n | 215 | default n |
| 216 | depends on FEATURE_SEAMLESS_Z || FEATURE_SEAMLESS_GZ || FEATURE_SEAMLESS_BZ2 || FEATURE_SEAMLESS_LZMA | 216 | depends on FEATURE_SEAMLESS_Z || FEATURE_SEAMLESS_GZ || FEATURE_SEAMLESS_BZ2 || FEATURE_SEAMLESS_LZMA |
| 217 | help | 217 | help |
| 218 | With this option tar can automatically detect gzip/bzip2 compressed | 218 | With this option tar can automatically detect compressed |
| 219 | tarballs. Currently it works only on files (not pipes etc). | 219 | tarballs. Currently it works only on files (not pipes etc). |
| 220 | 220 | ||
| 221 | config FEATURE_TAR_FROM | 221 | config FEATURE_TAR_FROM |
diff --git a/findutils/Config.in b/findutils/Config.in index d69a2385b..2f0e3c741 100644 --- a/findutils/Config.in +++ b/findutils/Config.in | |||
| @@ -12,17 +12,17 @@ config FIND | |||
| 12 | find is used to search your system to find specified files. | 12 | find is used to search your system to find specified files. |
| 13 | 13 | ||
| 14 | config FEATURE_FIND_PRINT0 | 14 | config FEATURE_FIND_PRINT0 |
| 15 | bool "Enable -print0 option" | 15 | bool "Enable -print0: NUL-separated output" |
| 16 | default y | 16 | default y |
| 17 | depends on FIND | 17 | depends on FIND |
| 18 | help | 18 | help |
| 19 | Causes output names to be separated by a null character | 19 | Causes output names to be separated by a NUL character |
| 20 | rather than a newline. This allows names that contain | 20 | rather than a newline. This allows names that contain |
| 21 | newlines and other whitespace to be more easily | 21 | newlines and other whitespace to be more easily |
| 22 | interpreted by other programs. | 22 | interpreted by other programs. |
| 23 | 23 | ||
| 24 | config FEATURE_FIND_MTIME | 24 | config FEATURE_FIND_MTIME |
| 25 | bool "Enable modified time matching (-mtime option)" | 25 | bool "Enable -mtime: modified time matching" |
| 26 | default y | 26 | default y |
| 27 | depends on FIND | 27 | depends on FIND |
| 28 | help | 28 | help |
| @@ -30,7 +30,7 @@ config FEATURE_FIND_MTIME | |||
| 30 | files, in days. | 30 | files, in days. |
| 31 | 31 | ||
| 32 | config FEATURE_FIND_MMIN | 32 | config FEATURE_FIND_MMIN |
| 33 | bool "Enable modified time matching (-mmin option)" | 33 | bool "Enable -mmin: modified time matching by minutes" |
| 34 | default y | 34 | default y |
| 35 | depends on FIND | 35 | depends on FIND |
| 36 | help | 36 | help |
| @@ -38,14 +38,14 @@ config FEATURE_FIND_MMIN | |||
| 38 | files, in minutes. | 38 | files, in minutes. |
| 39 | 39 | ||
| 40 | config FEATURE_FIND_PERM | 40 | config FEATURE_FIND_PERM |
| 41 | bool "Enable permissions matching (-perm option)" | 41 | bool "Enable -perm: permissions matching" |
| 42 | default y | 42 | default y |
| 43 | depends on FIND | 43 | depends on FIND |
| 44 | help | 44 | help |
| 45 | Enable searching based on file permissions. | 45 | Enable searching based on file permissions. |
| 46 | 46 | ||
| 47 | config FEATURE_FIND_TYPE | 47 | config FEATURE_FIND_TYPE |
| 48 | bool "Enable filetype matching (-type option)" | 48 | bool "Enable -type: file type matching (file/dir/link/...)" |
| 49 | default y | 49 | default y |
| 50 | depends on FIND | 50 | depends on FIND |
| 51 | help | 51 | help |
| @@ -53,21 +53,21 @@ config FEATURE_FIND_TYPE | |||
| 53 | directory, socket, device, etc.). | 53 | directory, socket, device, etc.). |
| 54 | 54 | ||
| 55 | config FEATURE_FIND_XDEV | 55 | config FEATURE_FIND_XDEV |
| 56 | bool "Enable 'stay in filesystem' option (-xdev)" | 56 | bool "Enable -xdev: 'stay in filesystem'" |
| 57 | default y | 57 | default y |
| 58 | depends on FIND | 58 | depends on FIND |
| 59 | help | 59 | help |
| 60 | This option allows find to restrict searches to a single filesystem. | 60 | This option allows find to restrict searches to a single filesystem. |
| 61 | 61 | ||
| 62 | config FEATURE_FIND_MAXDEPTH | 62 | config FEATURE_FIND_MAXDEPTH |
| 63 | bool "Enable -maxdepth N option" | 63 | bool "Enable -maxdepth N" |
| 64 | default y | 64 | default y |
| 65 | depends on FIND | 65 | depends on FIND |
| 66 | help | 66 | help |
| 67 | This option enables -maxdepth N option. | 67 | This option enables -maxdepth N option. |
| 68 | 68 | ||
| 69 | config FEATURE_FIND_NEWER | 69 | config FEATURE_FIND_NEWER |
| 70 | bool "Enable -newer option for comparing file mtimes" | 70 | bool "Enable -newer: compare file modification times" |
| 71 | default y | 71 | default y |
| 72 | depends on FIND | 72 | depends on FIND |
| 73 | help | 73 | help |
| @@ -75,14 +75,14 @@ config FEATURE_FIND_NEWER | |||
| 75 | a modified time that is more recent than the specified FILE. | 75 | a modified time that is more recent than the specified FILE. |
| 76 | 76 | ||
| 77 | config FEATURE_FIND_INUM | 77 | config FEATURE_FIND_INUM |
| 78 | bool "Enable inode number matching (-inum option)" | 78 | bool "Enable -inum: inode number matching" |
| 79 | default y | 79 | default y |
| 80 | depends on FIND | 80 | depends on FIND |
| 81 | help | 81 | help |
| 82 | Support the 'find -inum' option for searching by inode number. | 82 | Support the 'find -inum' option for searching by inode number. |
| 83 | 83 | ||
| 84 | config FEATURE_FIND_EXEC | 84 | config FEATURE_FIND_EXEC |
| 85 | bool "Enable -exec option allowing execution of commands" | 85 | bool "Enable -exec: execute commands" |
| 86 | default y | 86 | default y |
| 87 | depends on FIND | 87 | depends on FIND |
| 88 | help | 88 | help |
| @@ -90,14 +90,14 @@ config FEATURE_FIND_EXEC | |||
| 90 | the files matched. | 90 | the files matched. |
| 91 | 91 | ||
| 92 | config FEATURE_FIND_USER | 92 | config FEATURE_FIND_USER |
| 93 | bool "Enable username/uid matching (-user option)" | 93 | bool "Enable -user: username/uid matching" |
| 94 | default y | 94 | default y |
| 95 | depends on FIND | 95 | depends on FIND |
| 96 | help | 96 | help |
| 97 | Support the 'find -user' option for searching by username or uid. | 97 | Support the 'find -user' option for searching by username or uid. |
| 98 | 98 | ||
| 99 | config FEATURE_FIND_GROUP | 99 | config FEATURE_FIND_GROUP |
| 100 | bool "Enable group/gid matching (-group option)" | 100 | bool "Enable -group: group/gid matching" |
| 101 | default y | 101 | default y |
| 102 | depends on FIND | 102 | depends on FIND |
| 103 | help | 103 | help |
| @@ -113,7 +113,7 @@ config FEATURE_FIND_NOT | |||
| 113 | the non-POSIX notation '-not'. | 113 | the non-POSIX notation '-not'. |
| 114 | 114 | ||
| 115 | config FEATURE_FIND_DEPTH | 115 | config FEATURE_FIND_DEPTH |
| 116 | bool "Enable the -depth option" | 116 | bool "Enable -depth" |
| 117 | default y | 117 | default y |
| 118 | depends on FIND | 118 | depends on FIND |
| 119 | help | 119 | help |
| @@ -127,14 +127,14 @@ config FEATURE_FIND_PAREN | |||
| 127 | Enable usage of parens '(' to specify logical order of arguments. | 127 | Enable usage of parens '(' to specify logical order of arguments. |
| 128 | 128 | ||
| 129 | config FEATURE_FIND_SIZE | 129 | config FEATURE_FIND_SIZE |
| 130 | bool "Enable -size option allowing matching for file size" | 130 | bool "Enable -size: file size matching" |
| 131 | default y | 131 | default y |
| 132 | depends on FIND | 132 | depends on FIND |
| 133 | help | 133 | help |
| 134 | Support the 'find -size' option for searching by file size. | 134 | Support the 'find -size' option for searching by file size. |
| 135 | 135 | ||
| 136 | config FEATURE_FIND_PRUNE | 136 | config FEATURE_FIND_PRUNE |
| 137 | bool "Enable -prune option allowing to exclude subdirectories" | 137 | bool "Enable -prune: exclude subdirectories" |
| 138 | default y | 138 | default y |
| 139 | depends on FIND | 139 | depends on FIND |
| 140 | help | 140 | help |
| @@ -142,7 +142,7 @@ config FEATURE_FIND_PRUNE | |||
| 142 | exclusion .svn and CVS directories. | 142 | exclusion .svn and CVS directories. |
| 143 | 143 | ||
| 144 | config FEATURE_FIND_DELETE | 144 | config FEATURE_FIND_DELETE |
| 145 | bool "Enable -delete option allowing to delete files" | 145 | bool "Enable -delete: delete files/dirs" |
| 146 | default n | 146 | default n |
| 147 | depends on FIND && FEATURE_FIND_DEPTH | 147 | depends on FIND && FEATURE_FIND_DEPTH |
| 148 | help | 148 | help |
| @@ -151,21 +151,21 @@ config FEATURE_FIND_DELETE | |||
| 151 | try to protect the user from doing stupid things. Use with care. | 151 | try to protect the user from doing stupid things. Use with care. |
| 152 | 152 | ||
| 153 | config FEATURE_FIND_PATH | 153 | config FEATURE_FIND_PATH |
| 154 | bool "Enable -path option allowing to match pathname patterns" | 154 | bool "Enable -path: match pathname with shell pattern" |
| 155 | default y | 155 | default y |
| 156 | depends on FIND | 156 | depends on FIND |
| 157 | help | 157 | help |
| 158 | The -path option matches whole pathname instead of just filename. | 158 | The -path option matches whole pathname instead of just filename. |
| 159 | 159 | ||
| 160 | config FEATURE_FIND_REGEX | 160 | config FEATURE_FIND_REGEX |
| 161 | bool "Enable -regex: match pathname to regex" | 161 | bool "Enable -regex: match pathname with regex" |
| 162 | default y | 162 | default y |
| 163 | depends on FIND | 163 | depends on FIND |
| 164 | help | 164 | help |
| 165 | The -regex option matches whole pathname against regular expression. | 165 | The -regex option matches whole pathname against regular expression. |
| 166 | 166 | ||
| 167 | config FEATURE_FIND_CONTEXT | 167 | config FEATURE_FIND_CONTEXT |
| 168 | bool "Enable -context option for matching security context" | 168 | bool "Enable -context: security context matching" |
| 169 | default n | 169 | default n |
| 170 | depends on FIND && SELINUX | 170 | depends on FIND && SELINUX |
| 171 | help | 171 | help |
| @@ -178,7 +178,7 @@ config GREP | |||
| 178 | grep is used to search files for a specified pattern. | 178 | grep is used to search files for a specified pattern. |
| 179 | 179 | ||
| 180 | config FEATURE_GREP_EGREP_ALIAS | 180 | config FEATURE_GREP_EGREP_ALIAS |
| 181 | bool "Support extended regular expressions (egrep & grep -E)" | 181 | bool "Enable extended regular expressions (egrep & grep -E)" |
| 182 | default y | 182 | default y |
| 183 | depends on GREP | 183 | depends on GREP |
| 184 | help | 184 | help |
| @@ -193,7 +193,7 @@ config FEATURE_GREP_FGREP_ALIAS | |||
| 193 | help | 193 | help |
| 194 | fgrep sees the search pattern as a normal string rather than | 194 | fgrep sees the search pattern as a normal string rather than |
| 195 | regular expressions. | 195 | regular expressions. |
| 196 | grep -F is always builtin, this just creates the fgrep alias. | 196 | grep -F always works, this just creates the fgrep alias. |
| 197 | 197 | ||
| 198 | config FEATURE_GREP_CONTEXT | 198 | config FEATURE_GREP_CONTEXT |
| 199 | bool "Enable before and after context flags (-A, -B and -C)" | 199 | bool "Enable before and after context flags (-A, -B and -C)" |
| @@ -208,40 +208,39 @@ config XARGS | |||
| 208 | bool "xargs" | 208 | bool "xargs" |
| 209 | default n | 209 | default n |
| 210 | help | 210 | help |
| 211 | xargs is used to execute a specified command on | 211 | xargs is used to execute a specified command for |
| 212 | every item from standard input. | 212 | every item from standard input. |
| 213 | 213 | ||
| 214 | config FEATURE_XARGS_SUPPORT_CONFIRMATION | 214 | config FEATURE_XARGS_SUPPORT_CONFIRMATION |
| 215 | bool "Enable prompt and confirmation option -p" | 215 | bool "Enable -p: prompt and confirmation" |
| 216 | default n | 216 | default n |
| 217 | depends on XARGS | 217 | depends on XARGS |
| 218 | help | 218 | help |
| 219 | Support prompt the user about whether to run each command | 219 | Support -p: prompt the user whether to run each command |
| 220 | line and read a line from the terminal. | 220 | line and read a line from the terminal. |
| 221 | 221 | ||
| 222 | config FEATURE_XARGS_SUPPORT_QUOTES | 222 | config FEATURE_XARGS_SUPPORT_QUOTES |
| 223 | bool "Enable support single and double quotes and backslash" | 223 | bool "Enable single and double quotes and backslash" |
| 224 | default n | 224 | default n |
| 225 | depends on XARGS | 225 | depends on XARGS |
| 226 | help | 226 | help |
| 227 | Default xargs unsupport single and double quotes | 227 | Support quoting in the input. |
| 228 | and backslash for can use aruments with spaces. | ||
| 229 | 228 | ||
| 230 | config FEATURE_XARGS_SUPPORT_TERMOPT | 229 | config FEATURE_XARGS_SUPPORT_TERMOPT |
| 231 | bool "Enable support options -x" | 230 | bool "Enable -x: exit if -s or -n is exceeded" |
| 232 | default n | 231 | default n |
| 233 | depends on XARGS | 232 | depends on XARGS |
| 234 | help | 233 | help |
| 235 | Enable support exit if the size (see the -s or -n option) | 234 | Support -x: exit if the command size (see the -s or -n option) |
| 236 | is exceeded. | 235 | is exceeded. |
| 237 | 236 | ||
| 238 | config FEATURE_XARGS_SUPPORT_ZERO_TERM | 237 | config FEATURE_XARGS_SUPPORT_ZERO_TERM |
| 239 | bool "Enable null terminated option -0" | 238 | bool "Enable -0: null terminated input" |
| 240 | default n | 239 | default n |
| 241 | depends on XARGS | 240 | depends on XARGS |
| 242 | help | 241 | help |
| 243 | Enable input filenames are terminated by a null character | 242 | Support -0: input items are terminated by a NUL character |
| 244 | instead of by whitespace, and the quotes and backslash | 243 | instead of whitespace, and the quotes and backslash |
| 245 | are not special. | 244 | are not special. |
| 246 | 245 | ||
| 247 | endmenu | 246 | endmenu |
diff --git a/libbb/Config.in b/libbb/Config.in index 7ced387a9..a572775c9 100644 --- a/libbb/Config.in +++ b/libbb/Config.in | |||
| @@ -163,4 +163,5 @@ config FEATURE_HWIB | |||
| 163 | help | 163 | help |
| 164 | Support for printing infiniband addresses in | 164 | Support for printing infiniband addresses in |
| 165 | network applets. | 165 | network applets. |
| 166 | |||
| 166 | endmenu | 167 | endmenu |
diff --git a/libbb/inet_common.c b/libbb/inet_common.c index fa4d8672f..0fc08d69d 100644 --- a/libbb/inet_common.c +++ b/libbb/inet_common.c | |||
| @@ -193,7 +193,7 @@ char* FAST_FUNC INET6_rresolve(struct sockaddr_in6 *sin6, int numeric) | |||
| 193 | 193 | ||
| 194 | if (sin6->sin6_family != AF_INET6) { | 194 | if (sin6->sin6_family != AF_INET6) { |
| 195 | #ifdef DEBUG | 195 | #ifdef DEBUG |
| 196 | bb_error_msg("rresolve: unsupport address family %d!", | 196 | bb_error_msg("rresolve: unsupported address family %d!", |
| 197 | sin6->sin6_family); | 197 | sin6->sin6_family); |
| 198 | #endif | 198 | #endif |
| 199 | errno = EAFNOSUPPORT; | 199 | errno = EAFNOSUPPORT; |
diff --git a/modutils/Config.in b/modutils/Config.in index ef8d9692a..d2a2e04d1 100644 --- a/modutils/Config.in +++ b/modutils/Config.in | |||
| @@ -91,8 +91,7 @@ config MODPROBE | |||
| 91 | level. | 91 | level. |
| 92 | 92 | ||
| 93 | config FEATURE_MODPROBE_BLACKLIST | 93 | config FEATURE_MODPROBE_BLACKLIST |
| 94 | bool | 94 | bool "Blacklist support" |
| 95 | prompt "Blacklist support" | ||
| 96 | default n | 95 | default n |
| 97 | depends on MODPROBE | 96 | depends on MODPROBE |
| 98 | help | 97 | help |
diff --git a/networking/Config.in b/networking/Config.in index 6e3ed0fad..861d96346 100644 --- a/networking/Config.in +++ b/networking/Config.in | |||
| @@ -17,7 +17,11 @@ config FEATURE_UNIX_LOCAL | |||
| 17 | default n | 17 | default n |
| 18 | help | 18 | help |
| 19 | Enable Unix domain socket support in all busybox networking | 19 | Enable Unix domain socket support in all busybox networking |
| 20 | applets. | 20 | applets. Address of the form local:/path/to/unix/socket |
| 21 | will be recognized. | ||
| 22 | |||
| 23 | This extension is almost never used in real world usage. | ||
| 24 | You most likely want to say N. | ||
| 21 | 25 | ||
| 22 | config FEATURE_PREFER_IPV4_ADDRESS | 26 | config FEATURE_PREFER_IPV4_ADDRESS |
| 23 | bool "Prefer IPv4 addresses from DNS queries" | 27 | bool "Prefer IPv4 addresses from DNS queries" |
| @@ -833,15 +837,14 @@ config TFTP_DEBUG | |||
| 833 | default n | 837 | default n |
| 834 | depends on TFTP || TFTPD | 838 | depends on TFTP || TFTPD |
| 835 | help | 839 | help |
| 836 | Enable debug settings for tftp. This is useful if you're running | 840 | Make tftp[d] print debugging messages on stderr. |
| 837 | into problems with tftp as the protocol doesn't help you much when | 841 | This is useful if you are diagnosing a bug in tftp[d]. |
| 838 | you run into problems. | ||
| 839 | 842 | ||
| 840 | config TRACEROUTE | 843 | config TRACEROUTE |
| 841 | bool "traceroute" | 844 | bool "traceroute" |
| 842 | default n | 845 | default n |
| 843 | help | 846 | help |
| 844 | Utility to trace the route of IP packets | 847 | Utility to trace the route of IP packets. |
| 845 | 848 | ||
| 846 | config FEATURE_TRACEROUTE_VERBOSE | 849 | config FEATURE_TRACEROUTE_VERBOSE |
| 847 | bool "Enable verbose output" | 850 | bool "Enable verbose output" |
