Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 1 | # |
| 2 | # For a description of the syntax of this configuration file, |
| 3 | # see scripts/kbuild/config-language.txt. |
| 4 | # |
| 5 | |
| 6 | menu "Coreutils" |
| 7 | |
| 8 | config CONFIG_BASENAME |
| 9 | bool "basename" |
| 10 | default n |
| 11 | help |
Eric Andersen | 4762a48 | 2003-04-04 14:35:36 +0000 | [diff] [blame] | 12 | basename is used to strip the directory and suffix from filenames, |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 13 | leaving just the filename itself. Enable this option if you wish |
Eric Andersen | 4762a48 | 2003-04-04 14:35:36 +0000 | [diff] [blame] | 14 | to enable the 'basename' utility. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 15 | |
| 16 | config CONFIG_CAL |
| 17 | bool "cal" |
| 18 | default n |
| 19 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 20 | cal is used to display a monthly calender. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 21 | |
| 22 | config CONFIG_CAT |
| 23 | bool "cat" |
| 24 | default n |
| 25 | help |
Eric Andersen | 982da3e | 2003-04-04 15:20:53 +0000 | [diff] [blame] | 26 | cat is used to concatenate files and print them to the standard |
| 27 | output. Enable this option if you wish to enable the 'cat' utility. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 28 | |
Rob Landley | 5fe8d5b | 2006-04-25 22:40:53 +0000 | [diff] [blame] | 29 | config CONFIG_FEATURE_CAT_ESCAPE |
| 30 | bool "support -vetET" |
| 31 | depends on CONFIG_CAT |
| 32 | default n |
| 33 | help |
| 34 | Sheer bloat. |
| 35 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 36 | config CONFIG_CHGRP |
| 37 | bool "chgrp" |
| 38 | default n |
| 39 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 40 | chgrp is used to change the group ownership of files. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 41 | |
| 42 | config CONFIG_CHMOD |
| 43 | bool "chmod" |
| 44 | default n |
| 45 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 46 | chmod is used to change the access permission of files. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 47 | |
| 48 | config CONFIG_CHOWN |
| 49 | bool "chown" |
| 50 | default n |
| 51 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 52 | chown is used to change the user and/or group ownership |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 53 | of files. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 54 | |
| 55 | config CONFIG_CHROOT |
| 56 | bool "chroot" |
| 57 | default n |
| 58 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 59 | chroot is used to change the root directory and run a command. |
| 60 | The default command is `/bin/sh'. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 61 | |
Rob Landley | 856489b | 2006-04-18 20:57:28 +0000 | [diff] [blame] | 62 | config CONFIG_CKSUM |
| 63 | bool "cksum" |
| 64 | default n |
| 65 | help |
| 66 | cksum is used to calculate the CRC32 checksum of a file. |
| 67 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 68 | config CONFIG_CMP |
| 69 | bool "cmp" |
| 70 | default n |
| 71 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 72 | cmp is used to compare two files and returns the result |
| 73 | to standard output. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 74 | |
Rob Landley | 2acfd7b | 2005-05-11 23:12:49 +0000 | [diff] [blame] | 75 | config CONFIG_COMM |
| 76 | bool "comm" |
| 77 | default n |
| 78 | help |
| 79 | comm is used to compare two files line by line and return |
| 80 | a three-column output. |
| 81 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 82 | config CONFIG_CP |
| 83 | bool "cp" |
| 84 | default n |
| 85 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 86 | cp is used to copy files and directories. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 87 | |
| 88 | config CONFIG_CUT |
| 89 | bool "cut" |
| 90 | default n |
| 91 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 92 | cut is used to print selected parts of lines from |
| 93 | each file to stdout. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 94 | |
Bernhard Reutner-Fischer | 96002bb | 2006-01-19 14:42:23 +0000 | [diff] [blame] | 95 | config CONFIG_DATE |
| 96 | bool "date" |
| 97 | default n |
| 98 | help |
| 99 | date is used to set the system date or display the |
| 100 | current time in the given format. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 101 | |
| 102 | config CONFIG_FEATURE_DATE_ISOFMT |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 103 | bool "Enable ISO date format output (-I)" |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 104 | default y |
| 105 | depends on CONFIG_DATE |
| 106 | help |
Eric Andersen | 65e20a3 | 2003-07-05 07:52:35 +0000 | [diff] [blame] | 107 | Enable option (-I) to output an ISO-8601 compliant |
| 108 | date/time string. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 109 | |
| 110 | config CONFIG_DD |
| 111 | bool "dd" |
| 112 | default n |
| 113 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 114 | dd copies a file (from standard input to standard output, |
| 115 | by default) using specific input and output blocksizes, |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 116 | while optionally performing conversions on it. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 117 | |
Rob Landley | c559817 | 2006-05-02 22:44:04 +0000 | [diff] [blame] | 118 | config CONFIG_FEATURE_DD_SIGNAL_HANDLING |
| 119 | bool "Enable DD signal handling for status reporting" |
| 120 | default y |
| 121 | depends on CONFIG_DD |
| 122 | help |
| 123 | sending a SIGUSR1 signal to a running `dd' process makes it |
| 124 | print to standard error the number of records read and written |
| 125 | so far, then to resume copying. |
| 126 | |
| 127 | $ dd if=/dev/zero of=/dev/null& pid=$! $ kill -USR1 $pid; sleep 1; kill $pid |
| 128 | 10899206+0 records in 10899206+0 records out |
| 129 | |
Rob Landley | 2686d3b | 2006-05-16 16:52:12 +0000 | [diff] [blame] | 130 | config CONFIG_FEATURE_DD_IBS_OBS |
| 131 | bool "Enable ibs, obs and conv options" |
| 132 | default n |
| 133 | depends on CONFIG_DD |
| 134 | help |
| 135 | Enables support for writing a certain number of bytes in and out, |
| 136 | at a time, and performing conversions on the data stream. |
| 137 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 138 | config CONFIG_DF |
| 139 | bool "df" |
| 140 | default n |
| 141 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 142 | df reports the amount of disk space used and available |
| 143 | on filesystems. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 144 | |
Bernhard Reutner-Fischer | 8f7d389 | 2006-04-06 08:11:08 +0000 | [diff] [blame] | 145 | config CONFIG_DIFF |
| 146 | bool "diff" |
| 147 | default n |
| 148 | help |
| 149 | diff compares two files or directories and outputs the |
| 150 | differences between them in a form that can be given to |
| 151 | the patch command. |
| 152 | |
| 153 | config CONFIG_FEATURE_DIFF_BINARY |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 154 | bool "Enable checks for binary files" |
Bernhard Reutner-Fischer | 8f7d389 | 2006-04-06 08:11:08 +0000 | [diff] [blame] | 155 | default y |
| 156 | depends on CONFIG_DIFF |
| 157 | help |
| 158 | This option enables support for checking for binary files |
| 159 | before a comparison is carried out. |
| 160 | |
| 161 | config CONFIG_FEATURE_DIFF_DIR |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 162 | bool "Enable directory support" |
Bernhard Reutner-Fischer | 8f7d389 | 2006-04-06 08:11:08 +0000 | [diff] [blame] | 163 | default y |
| 164 | depends on CONFIG_DIFF |
| 165 | help |
| 166 | This option enables support for directory and subdirectory |
| 167 | comparison. |
| 168 | |
| 169 | config CONFIG_FEATURE_DIFF_MINIMAL |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 170 | bool "Enable -d option to find smaller sets of changes" |
Bernhard Reutner-Fischer | 8f7d389 | 2006-04-06 08:11:08 +0000 | [diff] [blame] | 171 | default n |
| 172 | depends on CONFIG_DIFF |
| 173 | help |
| 174 | Enabling this option allows the use of -d to make diff |
| 175 | try hard to find the smallest possible set of changes. |
| 176 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 177 | config CONFIG_DIRNAME |
| 178 | bool "dirname" |
| 179 | default n |
| 180 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 181 | dirname is used to strip a non-directory suffix from |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 182 | a file name. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 183 | |
| 184 | config CONFIG_DOS2UNIX |
| 185 | bool "dos2unix/unix2dos" |
| 186 | default n |
| 187 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 188 | dos2unix is used to convert a text file from DOS format to |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 189 | UNIX format, and vice versa. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 190 | |
Eric Andersen | 7c51243 | 2003-06-26 21:53:51 +0000 | [diff] [blame] | 191 | config CONFIG_UNIX2DOS |
| 192 | bool |
| 193 | default y |
| 194 | depends on CONFIG_DOS2UNIX |
Bernhard Reutner-Fischer | 4f7953c | 2006-05-05 11:55:53 +0000 | [diff] [blame] | 195 | help |
| 196 | unix2dos is used to convert a text file from UNIX format to |
| 197 | DOS format, and vice versa. |
Eric Andersen | 7c51243 | 2003-06-26 21:53:51 +0000 | [diff] [blame] | 198 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 199 | config CONFIG_DU |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 200 | bool "du (default blocksize of 512 bytes)" |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 201 | default n |
| 202 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 203 | du is used to report the amount of disk space used |
| 204 | for specified files. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 205 | |
Rob Landley | 5fe8d5b | 2006-04-25 22:40:53 +0000 | [diff] [blame] | 206 | config CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 207 | bool "Use a default blocksize of 1024 bytes (1K)" |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 208 | default y |
| 209 | depends on CONFIG_DU |
| 210 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 211 | Use a blocksize of (1K) instead of the default 512b. |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 212 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 213 | config CONFIG_ECHO |
Mike Frysinger | 7f8797c | 2005-09-24 23:15:28 +0000 | [diff] [blame] | 214 | bool "echo (basic SuSv3 version taking no options)" |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 215 | default n |
| 216 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 217 | echo is used to print a specified string to stdout. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 218 | |
Paul Fox | 0b62158 | 2005-08-09 19:38:05 +0000 | [diff] [blame] | 219 | # this entry also appears in shell/Config.in, next to the echo builtin |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 220 | config CONFIG_FEATURE_FANCY_ECHO |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 221 | bool "Enable echo options (-n and -e)" |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 222 | default y |
| 223 | depends on CONFIG_ECHO |
| 224 | help |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 225 | This adds options (-n and -e) to echo. |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 226 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 227 | config CONFIG_ENV |
| 228 | bool "env" |
| 229 | default n |
| 230 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 231 | env is used to set an environment variable and run |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 232 | a command; without options it displays the current |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 233 | environment. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 234 | |
| 235 | config CONFIG_EXPR |
| 236 | bool "expr" |
| 237 | default n |
| 238 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 239 | expr is used to calculate numbers and print the result |
| 240 | to standard output. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 241 | |
"Vladimir N. Oleynik" | 8aa9e57 | 2006-01-25 13:56:03 +0000 | [diff] [blame] | 242 | config CONFIG_EXPR_MATH_SUPPORT_64 |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 243 | bool "Extend Posix numbers support to 64 bit" |
"Vladimir N. Oleynik" | 8aa9e57 | 2006-01-25 13:56:03 +0000 | [diff] [blame] | 244 | default n |
| 245 | depends on CONFIG_EXPR |
| 246 | help |
| 247 | Enable 64-bit math support in the expr applet. This will make |
| 248 | the applet slightly larger, but will allow computation with very |
| 249 | large numbers. |
| 250 | |
Bernhard Reutner-Fischer | 96002bb | 2006-01-19 14:42:23 +0000 | [diff] [blame] | 251 | config CONFIG_FALSE |
| 252 | bool "false" |
| 253 | default n |
| 254 | help |
| 255 | false returns an exit code of FALSE (1). |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 256 | |
Glenn L McGrath | f01b805 | 2003-04-27 06:02:14 +0000 | [diff] [blame] | 257 | config CONFIG_FOLD |
| 258 | bool "fold" |
| 259 | default n |
| 260 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 261 | Wrap text to fit a specific width. |
Glenn L McGrath | f01b805 | 2003-04-27 06:02:14 +0000 | [diff] [blame] | 262 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 263 | config CONFIG_HEAD |
| 264 | bool "head" |
| 265 | default n |
| 266 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 267 | head is used to print the first specified number of lines |
| 268 | from files. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 269 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 270 | config CONFIG_FEATURE_FANCY_HEAD |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 271 | bool "Enable head options (-c, -q, and -v)" |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 272 | default n |
| 273 | depends on CONFIG_HEAD |
| 274 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 275 | This enables the head options (-c, -q, and -v). |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 276 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 277 | config CONFIG_HOSTID |
| 278 | bool "hostid" |
| 279 | default n |
| 280 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 281 | hostid prints the numeric identifier (in hexadecimal) for |
| 282 | the current host. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 283 | |
| 284 | config CONFIG_ID |
| 285 | bool "id" |
| 286 | default n |
| 287 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 288 | id displays the current user and group ID names. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 289 | |
Glenn L McGrath | eebcc1d | 2003-09-24 03:22:57 +0000 | [diff] [blame] | 290 | config CONFIG_INSTALL |
| 291 | bool "install" |
| 292 | default n |
| 293 | help |
| 294 | Copy files and set attributes. |
| 295 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 296 | config CONFIG_LENGTH |
| 297 | bool "length" |
| 298 | default n |
| 299 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 300 | length is used to print out the length of a specified string. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 301 | |
| 302 | config CONFIG_LN |
| 303 | bool "ln" |
| 304 | default n |
| 305 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 306 | ln is used to create hard or soft links between files. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 307 | |
| 308 | config CONFIG_LOGNAME |
| 309 | bool "logname" |
| 310 | default n |
| 311 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 312 | logname is used to print the current user's login name. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 313 | |
| 314 | config CONFIG_LS |
| 315 | bool "ls" |
| 316 | default n |
| 317 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 318 | ls is used to list the contents of directories. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 319 | |
| 320 | config CONFIG_FEATURE_LS_FILETYPES |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 321 | bool "Enable filetyping options (-p and -F)" |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 322 | default y |
| 323 | depends on CONFIG_LS |
| 324 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 325 | Enable the ls options (-p and -F). |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 326 | |
| 327 | config CONFIG_FEATURE_LS_FOLLOWLINKS |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 328 | bool "Enable symlinks dereferencing (-L)" |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 329 | default y |
| 330 | depends on CONFIG_LS |
| 331 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 332 | Enable the ls option (-L). |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 333 | |
| 334 | config CONFIG_FEATURE_LS_RECURSIVE |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 335 | bool "Enable recursion (-R)" |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 336 | default y |
| 337 | depends on CONFIG_LS |
| 338 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 339 | Enable the ls option (-R). |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 340 | |
| 341 | config CONFIG_FEATURE_LS_SORTFILES |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 342 | bool "Sort the file names" |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 343 | default y |
| 344 | depends on CONFIG_LS |
| 345 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 346 | Allow ls to sort file names alphabetically. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 347 | |
| 348 | config CONFIG_FEATURE_LS_TIMESTAMPS |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 349 | bool "Show file timestamps" |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 350 | default y |
| 351 | depends on CONFIG_LS |
| 352 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 353 | Allow ls to display timestamps for files. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 354 | |
| 355 | config CONFIG_FEATURE_LS_USERNAME |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 356 | bool "Show username/groupnames" |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 357 | default y |
| 358 | depends on CONFIG_LS |
| 359 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 360 | Allow ls to display username/groupname for files. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 361 | |
| 362 | config CONFIG_FEATURE_LS_COLOR |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 363 | bool "Allow use of color to identify file types" |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 364 | default y |
| 365 | depends on CONFIG_LS |
| 366 | help |
Paul Fox | 156dc41 | 2005-08-01 19:33:30 +0000 | [diff] [blame] | 367 | This enables the --color option to ls. |
| 368 | |
Bernhard Reutner-Fischer | 96002bb | 2006-01-19 14:42:23 +0000 | [diff] [blame] | 369 | config CONFIG_FEATURE_LS_COLOR_IS_DEFAULT |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 370 | bool "Produce colored ls output by default" |
Bernhard Reutner-Fischer | 96002bb | 2006-01-19 14:42:23 +0000 | [diff] [blame] | 371 | default n |
| 372 | depends on CONFIG_FEATURE_LS_COLOR |
| 373 | help |
| 374 | Saying yes here will turn coloring on by default, |
| 375 | even if no "--color" option is given to the ls command. |
| 376 | This is not recommended, since the colors are not |
| 377 | configurable, and the output may not be legible on |
| 378 | many output screens. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 379 | |
| 380 | config CONFIG_MD5SUM |
| 381 | bool "md5sum" |
| 382 | default n |
| 383 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 384 | md5sum is used to print or check MD5 checksums. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 385 | |
| 386 | config CONFIG_MKDIR |
| 387 | bool "mkdir" |
| 388 | default n |
| 389 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 390 | mkdir is used to create directories with the specified names. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 391 | |
| 392 | config CONFIG_MKFIFO |
| 393 | bool "mkfifo" |
| 394 | default n |
| 395 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 396 | mkfifo is used to create FIFOs (named pipes). |
| 397 | The `mknod' program can also create FIFOs. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 398 | |
| 399 | config CONFIG_MKNOD |
| 400 | bool "mknod" |
| 401 | default n |
| 402 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 403 | mknod is used to create FIFOs or block/character special |
| 404 | files with the specified names. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 405 | |
| 406 | config CONFIG_MV |
| 407 | bool "mv" |
| 408 | default n |
| 409 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 410 | mv is used to move or rename files or directories. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 411 | |
Manuel Novoa III | 2c51160 | 2005-02-13 20:14:05 +0000 | [diff] [blame] | 412 | config CONFIG_NICE |
| 413 | bool "nice" |
| 414 | default n |
| 415 | help |
| 416 | nice runs a program with modified scheduling priority. |
| 417 | |
Bernhard Reutner-Fischer | 9d7010c | 2005-09-21 18:25:05 +0000 | [diff] [blame] | 418 | config CONFIG_NOHUP |
| 419 | bool "nohup" |
| 420 | default n |
| 421 | help |
| 422 | run a command immune to hangups, with output to a non-tty. |
| 423 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 424 | config CONFIG_OD |
| 425 | bool "od" |
| 426 | default n |
| 427 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 428 | od is used to dump binary files in octal and other formats. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 429 | |
Mike Frysinger | 7f8797c | 2005-09-24 23:15:28 +0000 | [diff] [blame] | 430 | config CONFIG_PRINTENV |
| 431 | bool "printenv" |
| 432 | default n |
| 433 | help |
| 434 | printenv is used to print all or part of environment. |
| 435 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 436 | config CONFIG_PRINTF |
| 437 | bool "printf" |
| 438 | default n |
| 439 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 440 | printf is used to format and print specified strings. |
| 441 | It's similar to `echo' except it has more options. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 442 | |
| 443 | config CONFIG_PWD |
| 444 | bool "pwd" |
| 445 | default n |
| 446 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 447 | pwd is used to print the current directory. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 448 | |
| 449 | config CONFIG_REALPATH |
| 450 | bool "realpath" |
| 451 | default n |
| 452 | help |
| 453 | Return the canonicalized absolute pathname. |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 454 | This isn't provided by GNU shellutils, but where else does it belong. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 455 | |
| 456 | config CONFIG_RM |
| 457 | bool "rm" |
| 458 | default n |
| 459 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 460 | rm is used to remove files or directories. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 461 | |
| 462 | config CONFIG_RMDIR |
| 463 | bool "rmdir" |
| 464 | default n |
| 465 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 466 | rmdir is used to remove empty directories. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 467 | |
Glenn L McGrath | 82364bb | 2004-01-27 09:22:20 +0000 | [diff] [blame] | 468 | config CONFIG_SEQ |
| 469 | bool "seq" |
| 470 | default n |
| 471 | help |
| 472 | print a sequence of numbers |
| 473 | |
Glenn L McGrath | ae0f1e7 | 2003-02-17 08:23:22 +0000 | [diff] [blame] | 474 | config CONFIG_SHA1SUM |
| 475 | bool "sha1sum" |
| 476 | default n |
| 477 | help |
| 478 | Compute and check SHA1 message digest |
| 479 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 480 | config CONFIG_SLEEP |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 481 | bool "sleep (single integer arg with no suffix)" |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 482 | default n |
| 483 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 484 | sleep is used to pause for a specified number of seconds, |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 485 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 486 | config CONFIG_FEATURE_FANCY_SLEEP |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 487 | bool "Enable multiple integer args and optional time suffixes" |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 488 | default n |
| 489 | depends on CONFIG_SLEEP |
| 490 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 491 | Allow sleep to pause for specified minutes, hours, and days. |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 492 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 493 | config CONFIG_SORT |
| 494 | bool "sort" |
| 495 | default n |
| 496 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 497 | sort is used to sort lines of text in specified files. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 498 | |
Rob Landley | 45ad0e8 | 2005-10-08 17:48:25 +0000 | [diff] [blame] | 499 | config CONFIG_FEATURE_SORT_BIG |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 500 | bool "full SuSv3 compliant sort (Support -ktcsbdfiozgM)" |
Rob Landley | c0dedd0 | 2005-01-24 07:00:02 +0000 | [diff] [blame] | 501 | default y |
| 502 | depends on CONFIG_SORT |
| 503 | help |
| 504 | Without this, sort only supports -r, -u, and an integer version |
| 505 | of -n. Selecting this adds sort keys, floating point support, and |
| 506 | more. This adds a little over 3k to a nonstatic build on x86. |
| 507 | |
| 508 | The SuSv3 sort standard is available at: |
| 509 | http://www.opengroup.org/onlinepubs/007904975/utilities/sort.html |
| 510 | |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 511 | config CONFIG_STAT |
| 512 | bool "stat" |
| 513 | default n |
| 514 | help |
| 515 | display file or filesystem status. |
| 516 | |
| 517 | config CONFIG_FEATURE_STAT_FORMAT |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 518 | bool "Enable custom formats (-c)" |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 519 | default n |
| 520 | depends on CONFIG_STAT |
| 521 | help |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 522 | Without this, stat will not support the '-c format' option where |
| 523 | users can pass a custom format string for output. This adds about |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 524 | 7k to a nonstatic build on amd64. |
| 525 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 526 | config CONFIG_STTY |
| 527 | bool "stty" |
| 528 | default n |
| 529 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 530 | stty is used to change and print terminal line settings. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 531 | |
Mike Frysinger | 4a21170 | 2005-04-21 23:24:46 +0000 | [diff] [blame] | 532 | config CONFIG_SUM |
| 533 | bool "sum" |
| 534 | default n |
| 535 | help |
| 536 | checksum and count the blocks in a file |
| 537 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 538 | config CONFIG_SYNC |
| 539 | bool "sync" |
| 540 | default n |
| 541 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 542 | sync is used to flush filesystem buffers. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 543 | |
| 544 | config CONFIG_TAIL |
| 545 | bool "tail" |
| 546 | default n |
| 547 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 548 | tail is used to print the last specified number of lines |
| 549 | from files. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 550 | |
| 551 | config CONFIG_FEATURE_FANCY_TAIL |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 552 | bool "Enable extra tail options (-q, -s, and -v)" |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 553 | default y |
| 554 | depends on CONFIG_TAIL |
| 555 | help |
Glenn L McGrath | 4ef5a84 | 2003-10-31 00:35:59 +0000 | [diff] [blame] | 556 | The options (-q, -s, and -v) are provided by GNU tail, but |
| 557 | are not specific in the SUSv3 standard. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 558 | |
| 559 | config CONFIG_TEE |
| 560 | bool "tee" |
| 561 | default n |
| 562 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 563 | tee is used to read from standard input and write |
| 564 | to standard output and files. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 565 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 566 | config CONFIG_FEATURE_TEE_USE_BLOCK_IO |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 567 | bool "Enable block i/o (larger/faster) instead of byte i/o." |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 568 | default n |
| 569 | depends on CONFIG_TEE |
| 570 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 571 | Enable this option for a faster tee, at expense of size. |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 572 | |
Bernhard Reutner-Fischer | 96002bb | 2006-01-19 14:42:23 +0000 | [diff] [blame] | 573 | config CONFIG_TEST |
| 574 | bool "test" |
| 575 | default n |
| 576 | help |
| 577 | test is used to check file types and compare values, |
| 578 | returning an appropriate exit code. The shells (ash |
| 579 | and bash) have test builtin. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 580 | |
Glenn L McGrath | 73db8be | 2004-08-11 02:45:47 +0000 | [diff] [blame] | 581 | config CONFIG_FEATURE_TEST_64 |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 582 | bool "Extend test to 64 bit" |
Glenn L McGrath | 73db8be | 2004-08-11 02:45:47 +0000 | [diff] [blame] | 583 | default n |
| 584 | depends on CONFIG_TEST |
| 585 | help |
| 586 | Enable 64-bit support in test. |
| 587 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 588 | config CONFIG_TOUCH |
| 589 | bool "touch" |
| 590 | default n |
| 591 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 592 | touch is used to create or change the access and/or |
| 593 | modification timestamp of specified files. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 594 | |
| 595 | config CONFIG_TR |
| 596 | bool "tr" |
| 597 | default n |
| 598 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 599 | tr is used to squeeze, and/or delete characters from standard |
| 600 | input, writing to standard output. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 601 | |
Rob Landley | 45ad0e8 | 2005-10-08 17:48:25 +0000 | [diff] [blame] | 602 | config CONFIG_FEATURE_TR_CLASSES |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 603 | bool "Enable character classes (such as [:upper:])" |
Rob Landley | 45ad0e8 | 2005-10-08 17:48:25 +0000 | [diff] [blame] | 604 | default n |
| 605 | depends on CONFIG_TR |
| 606 | help |
| 607 | Enable character classes, enabling commands such as: |
| 608 | tr [:upper:] [:lower:] to convert input into lowercase. |
| 609 | |
| 610 | config CONFIG_FEATURE_TR_EQUIV |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 611 | bool "Enable equivalence classes" |
Rob Landley | 45ad0e8 | 2005-10-08 17:48:25 +0000 | [diff] [blame] | 612 | default n |
| 613 | depends on CONFIG_TR |
| 614 | help |
| 615 | Enable equivalence classes, which essentially add the enclosed |
| 616 | character to the current set. For instance, tr [=a=] xyz would |
| 617 | replace all instances of 'a' with 'xyz'. This option is mainly |
| 618 | useful for cases when no other way of expressing a character |
| 619 | is possible. |
| 620 | |
Bernhard Reutner-Fischer | 96002bb | 2006-01-19 14:42:23 +0000 | [diff] [blame] | 621 | config CONFIG_TRUE |
| 622 | bool "true" |
| 623 | default n |
| 624 | help |
| 625 | true returns an exit code of TRUE (0). |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 626 | |
| 627 | config CONFIG_TTY |
| 628 | bool "tty" |
| 629 | default n |
| 630 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 631 | tty is used to print the name of the current terminal to |
| 632 | standard output. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 633 | |
| 634 | config CONFIG_UNAME |
| 635 | bool "uname" |
| 636 | default n |
| 637 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 638 | uname is used to print system information. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 639 | |
| 640 | config CONFIG_UNIQ |
| 641 | bool "uniq" |
| 642 | default n |
| 643 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 644 | uniq is used to remove duplicate lines from a sorted file. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 645 | |
| 646 | config CONFIG_USLEEP |
| 647 | bool "usleep" |
| 648 | default n |
| 649 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 650 | usleep is used to pause for a specified number of microseconds. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 651 | |
| 652 | config CONFIG_UUDECODE |
| 653 | bool "uudecode" |
| 654 | default n |
| 655 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 656 | uudecode is used to decode a uuencoded file. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 657 | |
| 658 | config CONFIG_UUENCODE |
| 659 | bool "uuencode" |
| 660 | default n |
| 661 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 662 | uuencode is used to uuencode a file. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 663 | |
| 664 | config CONFIG_WATCH |
| 665 | bool "watch" |
| 666 | default n |
Bernhard Reutner-Fischer | 96002bb | 2006-01-19 14:42:23 +0000 | [diff] [blame] | 667 | select CONFIG_DATE |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 668 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 669 | watch is used to execute a program periodically, showing |
| 670 | output to the screen. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 671 | |
| 672 | config CONFIG_WC |
| 673 | bool "wc" |
| 674 | default n |
| 675 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 676 | wc is used to print the number of bytes, words, and lines, |
| 677 | in specified files. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 678 | |
| 679 | config CONFIG_WHO |
| 680 | bool "who" |
| 681 | default n |
Mike Frysinger | 8deb686 | 2005-07-01 01:04:32 +0000 | [diff] [blame] | 682 | select CONFIG_FEATURE_UTMP |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 683 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 684 | who is used to show who is logged on. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 685 | |
| 686 | config CONFIG_WHOAMI |
| 687 | bool "whoami" |
| 688 | default n |
| 689 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 690 | whoami is used to print the username of the current |
| 691 | user id (same as id -un). |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 692 | |
| 693 | config CONFIG_YES |
| 694 | bool "yes" |
| 695 | default n |
| 696 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 697 | yes is used to repeatedly output a specific string, or |
| 698 | the default string `y'. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 699 | |
| 700 | comment "Common options for cp and mv" |
Bernhard Reutner-Fischer | 96002bb | 2006-01-19 14:42:23 +0000 | [diff] [blame] | 701 | depends on CONFIG_CP || CONFIG_MV |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 702 | |
| 703 | config CONFIG_FEATURE_PRESERVE_HARDLINKS |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 704 | bool "Preserve hard links" |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 705 | default n |
| 706 | depends on CONFIG_CP || CONFIG_MV |
| 707 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 708 | Allow cp and mv to preserve hard links. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 709 | |
Rob Landley | 30a6bba | 2006-02-06 02:49:45 +0000 | [diff] [blame] | 710 | comment "Common options for ls, more and telnet" |
| 711 | depends on CONFIG_LS || CONFIG_MORE || CONFIG_TELNET |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 712 | |
| 713 | config CONFIG_FEATURE_AUTOWIDTH |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 714 | bool "Calculate terminal & column widths" |
Eric Andersen | 727f529 | 2003-07-26 09:33:16 +0000 | [diff] [blame] | 715 | default y |
Rob Landley | 30a6bba | 2006-02-06 02:49:45 +0000 | [diff] [blame] | 716 | depends on CONFIG_LS || CONFIG_MORE || CONFIG_TELNET |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 717 | help |
Rob Landley | 30a6bba | 2006-02-06 02:49:45 +0000 | [diff] [blame] | 718 | This option allows utilities such as 'ls', 'more' and 'telnet' |
| 719 | to determine the width of the screen, which can allow them to |
| 720 | display additional text or avoid wrapping text onto the next line. |
| 721 | If you leave this disabled, your utilities will be especially |
| 722 | primitive and will be unable to determine the current screen width. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 723 | |
| 724 | comment "Common options for df, du, ls" |
Bernhard Reutner-Fischer | 96002bb | 2006-01-19 14:42:23 +0000 | [diff] [blame] | 725 | depends on CONFIG_DF || CONFIG_DU || CONFIG_LS |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 726 | |
| 727 | config CONFIG_FEATURE_HUMAN_READABLE |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 728 | bool "Support for human readable output (example 13k, 23M, 235G)" |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 729 | default n |
| 730 | depends on CONFIG_DF || CONFIG_DU || CONFIG_LS |
| 731 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 732 | Allow df, du, and ls to have human readable output. |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 733 | |
Glenn L McGrath | d2a897a | 2003-11-10 04:33:55 +0000 | [diff] [blame] | 734 | comment "Common options for md5sum, sha1sum" |
Bernhard Reutner-Fischer | 96002bb | 2006-01-19 14:42:23 +0000 | [diff] [blame] | 735 | depends on CONFIG_MD5SUM || CONFIG_SHA1SUM |
Glenn L McGrath | d2a897a | 2003-11-10 04:33:55 +0000 | [diff] [blame] | 736 | |
| 737 | config CONFIG_FEATURE_MD5_SHA1_SUM_CHECK |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 738 | bool "Enable -c, -s and -w options" |
Glenn L McGrath | d2a897a | 2003-11-10 04:33:55 +0000 | [diff] [blame] | 739 | default n |
| 740 | depends on CONFIG_MD5SUM || CONFIG_SHA1SUM |
| 741 | help |
Glenn L McGrath | 5c0d84a | 2003-12-08 20:11:55 +0000 | [diff] [blame] | 742 | Enabling the -c options allows files to be checked |
Glenn L McGrath | d2a897a | 2003-11-10 04:33:55 +0000 | [diff] [blame] | 743 | against pre-calculated hash values. |
| 744 | |
Glenn L McGrath | 5c0d84a | 2003-12-08 20:11:55 +0000 | [diff] [blame] | 745 | -s and -w are useful options when verifying checksums. |
| 746 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 747 | endmenu |