blob: ffdc11ced58088ffe0878f58f364308626ec3c32 [file] [log] [blame]
Glenn L McGrath3238ea12003-02-15 10:53:40 +00001#
2# For a description of the syntax of this configuration file,
3# see scripts/kbuild/config-language.txt.
4#
5
6menu "Coreutils"
7
8config CONFIG_BASENAME
9 bool "basename"
10 default n
11 help
Eric Andersen4762a482003-04-04 14:35:36 +000012 basename is used to strip the directory and suffix from filenames,
Eric Andersenc7bda1c2004-03-15 08:29:22 +000013 leaving just the filename itself. Enable this option if you wish
Eric Andersen4762a482003-04-04 14:35:36 +000014 to enable the 'basename' utility.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000015
16config CONFIG_CAL
17 bool "cal"
18 default n
19 help
Eric Andersen88c916b2003-10-22 09:58:56 +000020 cal is used to display a monthly calender.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000021
22config CONFIG_CAT
23 bool "cat"
24 default n
25 help
Eric Andersen982da3e2003-04-04 15:20:53 +000026 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 McGrath3238ea12003-02-15 10:53:40 +000028
29config CONFIG_CHGRP
30 bool "chgrp"
31 default n
32 help
Eric Andersen88c916b2003-10-22 09:58:56 +000033 chgrp is used to change the group ownership of files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000034
35config CONFIG_CHMOD
36 bool "chmod"
37 default n
38 help
Eric Andersene5642112003-07-14 19:37:08 +000039 chmod is used to change the access permission of files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000040
41config CONFIG_CHOWN
42 bool "chown"
43 default n
44 help
Eric Andersen88c916b2003-10-22 09:58:56 +000045 chown is used to change the user and/or group ownership
Eric Andersene5642112003-07-14 19:37:08 +000046 of files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000047
48config CONFIG_CHROOT
49 bool "chroot"
50 default n
51 help
Eric Andersene5642112003-07-14 19:37:08 +000052 chroot is used to change the root directory and run a command.
53 The default command is `/bin/sh'.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000054
55config CONFIG_CMP
56 bool "cmp"
57 default n
58 help
Eric Andersene5642112003-07-14 19:37:08 +000059 cmp is used to compare two files and returns the result
60 to standard output.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000061
Rob Landley2acfd7b2005-05-11 23:12:49 +000062config CONFIG_COMM
63 bool "comm"
64 default n
65 help
66 comm is used to compare two files line by line and return
67 a three-column output.
68
Glenn L McGrath3238ea12003-02-15 10:53:40 +000069config CONFIG_CP
70 bool "cp"
71 default n
72 help
Eric Andersene5642112003-07-14 19:37:08 +000073 cp is used to copy files and directories.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000074
75config CONFIG_CUT
76 bool "cut"
77 default n
78 help
Eric Andersene5642112003-07-14 19:37:08 +000079 cut is used to print selected parts of lines from
80 each file to stdout.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000081
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +000082config CONFIG_DATE
83 bool "date"
84 default n
85 help
86 date is used to set the system date or display the
87 current time in the given format.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000088
89config CONFIG_FEATURE_DATE_ISOFMT
90 bool " Enable ISO date format output (-I)"
91 default y
92 depends on CONFIG_DATE
93 help
Eric Andersen65e20a32003-07-05 07:52:35 +000094 Enable option (-I) to output an ISO-8601 compliant
95 date/time string.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000096
97config CONFIG_DD
98 bool "dd"
99 default n
100 help
Eric Andersene5642112003-07-14 19:37:08 +0000101 dd copies a file (from standard input to standard output,
102 by default) using specific input and output blocksizes,
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000103 while optionally performing conversions on it.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000104
105config CONFIG_DF
106 bool "df"
107 default n
108 help
Eric Andersene5642112003-07-14 19:37:08 +0000109 df reports the amount of disk space used and available
110 on filesystems.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000111
112config CONFIG_DIRNAME
113 bool "dirname"
114 default n
115 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000116 dirname is used to strip a non-directory suffix from
Eric Andersene5642112003-07-14 19:37:08 +0000117 a file name.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000118
119config CONFIG_DOS2UNIX
120 bool "dos2unix/unix2dos"
121 default n
122 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000123 dos2unix is used to convert a text file from DOS format to
Eric Andersene5642112003-07-14 19:37:08 +0000124 UNIX format, and vice versa.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000125
Eric Andersen7c512432003-06-26 21:53:51 +0000126config CONFIG_UNIX2DOS
127 bool
128 default y
129 depends on CONFIG_DOS2UNIX
130
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000131config CONFIG_DU
Manuel Novoa III cad53642003-03-19 09:13:01 +0000132 bool "du (default blocksize of 512 bytes)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000133 default n
134 help
Eric Andersene5642112003-07-14 19:37:08 +0000135 du is used to report the amount of disk space used
136 for specified files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000137
Manuel Novoa III cad53642003-03-19 09:13:01 +0000138config CONFIG_FEATURE_DU_DEFALT_BLOCKSIZE_1K
139 bool " Use a default blocksize of 1024 bytes (1K)"
140 default y
141 depends on CONFIG_DU
142 help
Eric Andersene5642112003-07-14 19:37:08 +0000143 Use a blocksize of (1K) instead of the default 512b.
Manuel Novoa III cad53642003-03-19 09:13:01 +0000144
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000145config CONFIG_ECHO
Mike Frysinger7f8797c2005-09-24 23:15:28 +0000146 bool "echo (basic SuSv3 version taking no options)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000147 default n
148 help
Eric Andersene5642112003-07-14 19:37:08 +0000149 echo is used to print a specified string to stdout.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000150
Paul Fox0b621582005-08-09 19:38:05 +0000151# this entry also appears in shell/Config.in, next to the echo builtin
Manuel Novoa III cad53642003-03-19 09:13:01 +0000152config CONFIG_FEATURE_FANCY_ECHO
153 bool " Enable echo options (-n and -e)"
154 default y
155 depends on CONFIG_ECHO
156 help
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000157 This adds options (-n and -e) to echo.
Manuel Novoa III cad53642003-03-19 09:13:01 +0000158
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000159config CONFIG_ENV
160 bool "env"
161 default n
162 help
Eric Andersene5642112003-07-14 19:37:08 +0000163 env is used to set an environment variable and run
Eric Andersen88c916b2003-10-22 09:58:56 +0000164 a command; without options it displays the current
Eric Andersene5642112003-07-14 19:37:08 +0000165 environment.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000166
167config CONFIG_EXPR
168 bool "expr"
169 default n
170 help
Eric Andersene5642112003-07-14 19:37:08 +0000171 expr is used to calculate numbers and print the result
172 to standard output.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000173
"Vladimir N. Oleynik"8aa9e572006-01-25 13:56:03 +0000174config CONFIG_EXPR_MATH_SUPPORT_64
175 bool " Extend Posix numbers support to 64 bit"
176 default n
177 depends on CONFIG_EXPR
178 help
179 Enable 64-bit math support in the expr applet. This will make
180 the applet slightly larger, but will allow computation with very
181 large numbers.
182
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +0000183config CONFIG_FALSE
184 bool "false"
185 default n
186 help
187 false returns an exit code of FALSE (1).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000188
Glenn L McGrathf01b8052003-04-27 06:02:14 +0000189config CONFIG_FOLD
190 bool "fold"
191 default n
192 help
Eric Andersene5642112003-07-14 19:37:08 +0000193 Wrap text to fit a specific width.
Glenn L McGrathf01b8052003-04-27 06:02:14 +0000194
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000195config CONFIG_HEAD
196 bool "head"
197 default n
198 help
Eric Andersene5642112003-07-14 19:37:08 +0000199 head is used to print the first specified number of lines
200 from files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000201
Manuel Novoa III cad53642003-03-19 09:13:01 +0000202config CONFIG_FEATURE_FANCY_HEAD
203 bool " Enable head options (-c, -q, and -v)"
204 default n
205 depends on CONFIG_HEAD
206 help
Eric Andersene5642112003-07-14 19:37:08 +0000207 This enables the head options (-c, -q, and -v).
Manuel Novoa III cad53642003-03-19 09:13:01 +0000208
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000209config CONFIG_HOSTID
210 bool "hostid"
211 default n
212 help
Eric Andersene5642112003-07-14 19:37:08 +0000213 hostid prints the numeric identifier (in hexadecimal) for
214 the current host.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000215
216config CONFIG_ID
217 bool "id"
218 default n
219 help
Eric Andersene5642112003-07-14 19:37:08 +0000220 id displays the current user and group ID names.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000221
Glenn L McGratheebcc1d2003-09-24 03:22:57 +0000222config CONFIG_INSTALL
223 bool "install"
224 default n
225 help
226 Copy files and set attributes.
227
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000228config CONFIG_LENGTH
229 bool "length"
230 default n
231 help
Eric Andersene5642112003-07-14 19:37:08 +0000232 length is used to print out the length of a specified string.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000233
234config CONFIG_LN
235 bool "ln"
236 default n
237 help
Eric Andersene5642112003-07-14 19:37:08 +0000238 ln is used to create hard or soft links between files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000239
240config CONFIG_LOGNAME
241 bool "logname"
242 default n
243 help
Eric Andersene5642112003-07-14 19:37:08 +0000244 logname is used to print the current user's login name.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000245
246config CONFIG_LS
247 bool "ls"
248 default n
249 help
Eric Andersene5642112003-07-14 19:37:08 +0000250 ls is used to list the contents of directories.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000251
252config CONFIG_FEATURE_LS_FILETYPES
253 bool " Enable filetyping options (-p and -F)"
254 default y
255 depends on CONFIG_LS
256 help
Eric Andersene5642112003-07-14 19:37:08 +0000257 Enable the ls options (-p and -F).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000258
259config CONFIG_FEATURE_LS_FOLLOWLINKS
260 bool " Enable symlinks dereferencing (-L)"
261 default y
262 depends on CONFIG_LS
263 help
Eric Andersene5642112003-07-14 19:37:08 +0000264 Enable the ls option (-L).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000265
266config CONFIG_FEATURE_LS_RECURSIVE
267 bool " Enable recursion (-R)"
268 default y
269 depends on CONFIG_LS
270 help
Eric Andersene5642112003-07-14 19:37:08 +0000271 Enable the ls option (-R).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000272
273config CONFIG_FEATURE_LS_SORTFILES
274 bool " Sort the file names"
275 default y
276 depends on CONFIG_LS
277 help
Eric Andersene5642112003-07-14 19:37:08 +0000278 Allow ls to sort file names alphabetically.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000279
280config CONFIG_FEATURE_LS_TIMESTAMPS
281 bool " Show file timestamps"
282 default y
283 depends on CONFIG_LS
284 help
Eric Andersene5642112003-07-14 19:37:08 +0000285 Allow ls to display timestamps for files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000286
287config CONFIG_FEATURE_LS_USERNAME
288 bool " Show username/groupnames"
289 default y
290 depends on CONFIG_LS
291 help
Eric Andersene5642112003-07-14 19:37:08 +0000292 Allow ls to display username/groupname for files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000293
294config CONFIG_FEATURE_LS_COLOR
Paul Fox156dc412005-08-01 19:33:30 +0000295 bool " Allow use of color to identify file types"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000296 default y
297 depends on CONFIG_LS
298 help
Paul Fox156dc412005-08-01 19:33:30 +0000299 This enables the --color option to ls.
300
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +0000301config CONFIG_FEATURE_LS_COLOR_IS_DEFAULT
302 bool " Produce colored ls output by default"
303 default n
304 depends on CONFIG_FEATURE_LS_COLOR
305 help
306 Saying yes here will turn coloring on by default,
307 even if no "--color" option is given to the ls command.
308 This is not recommended, since the colors are not
309 configurable, and the output may not be legible on
310 many output screens.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000311
312config CONFIG_MD5SUM
313 bool "md5sum"
314 default n
315 help
Eric Andersene5642112003-07-14 19:37:08 +0000316 md5sum is used to print or check MD5 checksums.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000317
Bernhard Reutner-Fischer37dec0e2006-01-17 12:07:03 +0000318config CONFIG_MD5SUM_SIZE_VS_SPEED
319 int " Trade Bytes for Speed"
320 default 2
321 range 0 3
322 depends on CONFIG_MD5SUM
323 help
324 Trade binary size versus speed for the md5sum algorithm.
325 Approximate values running uClibc and hashing
326 linux-2.4.4.tar.bz2 were:
327 user times (sec) text size (386)
328 0 (fastest) 1.1 6144
329 1 1.4 5392
330 2 3.0 5088
331 3 (smallest) 5.1 4912
332
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000333config CONFIG_MKDIR
334 bool "mkdir"
335 default n
336 help
Eric Andersene5642112003-07-14 19:37:08 +0000337 mkdir is used to create directories with the specified names.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000338
339config CONFIG_MKFIFO
340 bool "mkfifo"
341 default n
342 help
Eric Andersene5642112003-07-14 19:37:08 +0000343 mkfifo is used to create FIFOs (named pipes).
344 The `mknod' program can also create FIFOs.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000345
346config CONFIG_MKNOD
347 bool "mknod"
348 default n
349 help
Eric Andersene5642112003-07-14 19:37:08 +0000350 mknod is used to create FIFOs or block/character special
351 files with the specified names.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000352
353config CONFIG_MV
354 bool "mv"
355 default n
356 help
Eric Andersene5642112003-07-14 19:37:08 +0000357 mv is used to move or rename files or directories.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000358
Manuel Novoa III 2c511602005-02-13 20:14:05 +0000359config CONFIG_NICE
360 bool "nice"
361 default n
362 help
363 nice runs a program with modified scheduling priority.
364
Bernhard Reutner-Fischer9d7010c2005-09-21 18:25:05 +0000365config CONFIG_NOHUP
366 bool "nohup"
367 default n
368 help
369 run a command immune to hangups, with output to a non-tty.
370
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000371config CONFIG_OD
372 bool "od"
373 default n
374 help
Eric Andersene5642112003-07-14 19:37:08 +0000375 od is used to dump binary files in octal and other formats.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000376
Mike Frysinger7f8797c2005-09-24 23:15:28 +0000377config CONFIG_PRINTENV
378 bool "printenv"
379 default n
380 help
381 printenv is used to print all or part of environment.
382
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000383config CONFIG_PRINTF
384 bool "printf"
385 default n
386 help
Eric Andersene5642112003-07-14 19:37:08 +0000387 printf is used to format and print specified strings.
388 It's similar to `echo' except it has more options.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000389
390config CONFIG_PWD
391 bool "pwd"
392 default n
393 help
Eric Andersene5642112003-07-14 19:37:08 +0000394 pwd is used to print the current directory.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000395
396config CONFIG_REALPATH
397 bool "realpath"
398 default n
399 help
400 Return the canonicalized absolute pathname.
Eric Andersen88c916b2003-10-22 09:58:56 +0000401 This isn't provided by GNU shellutils, but where else does it belong.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000402
403config CONFIG_RM
404 bool "rm"
405 default n
406 help
Eric Andersene5642112003-07-14 19:37:08 +0000407 rm is used to remove files or directories.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000408
409config CONFIG_RMDIR
410 bool "rmdir"
411 default n
412 help
Eric Andersene5642112003-07-14 19:37:08 +0000413 rmdir is used to remove empty directories.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000414
Glenn L McGrath82364bb2004-01-27 09:22:20 +0000415config CONFIG_SEQ
416 bool "seq"
417 default n
418 help
419 print a sequence of numbers
420
Glenn L McGrathae0f1e72003-02-17 08:23:22 +0000421config CONFIG_SHA1SUM
422 bool "sha1sum"
423 default n
424 help
425 Compute and check SHA1 message digest
426
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000427config CONFIG_SLEEP
Manuel Novoa III cad53642003-03-19 09:13:01 +0000428 bool "sleep (single integer arg with no suffix)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000429 default n
430 help
Eric Andersene5642112003-07-14 19:37:08 +0000431 sleep is used to pause for a specified number of seconds,
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000432
Manuel Novoa III cad53642003-03-19 09:13:01 +0000433config CONFIG_FEATURE_FANCY_SLEEP
434 bool " Enable multiple integer args and optional time suffixes"
435 default n
436 depends on CONFIG_SLEEP
437 help
Eric Andersene5642112003-07-14 19:37:08 +0000438 Allow sleep to pause for specified minutes, hours, and days.
Manuel Novoa III cad53642003-03-19 09:13:01 +0000439
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000440config CONFIG_SORT
441 bool "sort"
442 default n
443 help
Eric Andersene5642112003-07-14 19:37:08 +0000444 sort is used to sort lines of text in specified files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000445
Rob Landley45ad0e82005-10-08 17:48:25 +0000446config CONFIG_FEATURE_SORT_BIG
Rob Landleyc0dedd02005-01-24 07:00:02 +0000447 bool " full SuSv3 compliant sort (Support -ktcsbdfiozgM)"
448 default y
449 depends on CONFIG_SORT
450 help
451 Without this, sort only supports -r, -u, and an integer version
452 of -n. Selecting this adds sort keys, floating point support, and
453 more. This adds a little over 3k to a nonstatic build on x86.
454
455 The SuSv3 sort standard is available at:
456 http://www.opengroup.org/onlinepubs/007904975/utilities/sort.html
457
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000458config CONFIG_STAT
459 bool "stat"
460 default n
461 help
462 display file or filesystem status.
463
464config CONFIG_FEATURE_STAT_FORMAT
465 bool " Enable custom formats (-c)"
466 default n
467 depends on CONFIG_STAT
468 help
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000469 Without this, stat will not support the '-c format' option where
470 users can pass a custom format string for output. This adds about
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000471 7k to a nonstatic build on amd64.
472
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000473config CONFIG_STTY
474 bool "stty"
475 default n
476 help
Eric Andersene5642112003-07-14 19:37:08 +0000477 stty is used to change and print terminal line settings.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000478
Mike Frysinger4a211702005-04-21 23:24:46 +0000479config CONFIG_SUM
480 bool "sum"
481 default n
482 help
483 checksum and count the blocks in a file
484
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000485config CONFIG_SYNC
486 bool "sync"
487 default n
488 help
Eric Andersene5642112003-07-14 19:37:08 +0000489 sync is used to flush filesystem buffers.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000490
491config CONFIG_TAIL
492 bool "tail"
493 default n
494 help
Eric Andersene5642112003-07-14 19:37:08 +0000495 tail is used to print the last specified number of lines
496 from files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000497
498config CONFIG_FEATURE_FANCY_TAIL
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000499 bool " Enable extra tail options (-q, -s, and -v)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000500 default y
501 depends on CONFIG_TAIL
502 help
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000503 The options (-q, -s, and -v) are provided by GNU tail, but
504 are not specific in the SUSv3 standard.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000505
506config CONFIG_TEE
507 bool "tee"
508 default n
509 help
Eric Andersene5642112003-07-14 19:37:08 +0000510 tee is used to read from standard input and write
511 to standard output and files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000512
Manuel Novoa III cad53642003-03-19 09:13:01 +0000513config CONFIG_FEATURE_TEE_USE_BLOCK_IO
514 bool " Enable block i/o (larger/faster) instead of byte i/o."
515 default n
516 depends on CONFIG_TEE
517 help
Eric Andersene5642112003-07-14 19:37:08 +0000518 Enable this option for a faster tee, at expense of size.
Manuel Novoa III cad53642003-03-19 09:13:01 +0000519
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +0000520config CONFIG_TEST
521 bool "test"
522 default n
523 help
524 test is used to check file types and compare values,
525 returning an appropriate exit code. The shells (ash
526 and bash) have test builtin.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000527
Glenn L McGrath73db8be2004-08-11 02:45:47 +0000528config CONFIG_FEATURE_TEST_64
529 bool " Extend test to 64 bit"
530 default n
531 depends on CONFIG_TEST
532 help
533 Enable 64-bit support in test.
534
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000535config CONFIG_TOUCH
536 bool "touch"
537 default n
538 help
Eric Andersene5642112003-07-14 19:37:08 +0000539 touch is used to create or change the access and/or
540 modification timestamp of specified files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000541
542config CONFIG_TR
543 bool "tr"
544 default n
545 help
Eric Andersene5642112003-07-14 19:37:08 +0000546 tr is used to squeeze, and/or delete characters from standard
547 input, writing to standard output.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000548
Rob Landley45ad0e82005-10-08 17:48:25 +0000549config CONFIG_FEATURE_TR_CLASSES
550 bool " Enable character classes (such as [:upper:])"
551 default n
552 depends on CONFIG_TR
553 help
554 Enable character classes, enabling commands such as:
555 tr [:upper:] [:lower:] to convert input into lowercase.
556
557config CONFIG_FEATURE_TR_EQUIV
558 bool " Enable equivalence classes"
559 default n
560 depends on CONFIG_TR
561 help
562 Enable equivalence classes, which essentially add the enclosed
563 character to the current set. For instance, tr [=a=] xyz would
564 replace all instances of 'a' with 'xyz'. This option is mainly
565 useful for cases when no other way of expressing a character
566 is possible.
567
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +0000568config CONFIG_TRUE
569 bool "true"
570 default n
571 help
572 true returns an exit code of TRUE (0).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000573
574config CONFIG_TTY
575 bool "tty"
576 default n
577 help
Eric Andersene5642112003-07-14 19:37:08 +0000578 tty is used to print the name of the current terminal to
579 standard output.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000580
581config CONFIG_UNAME
582 bool "uname"
583 default n
584 help
Eric Andersene5642112003-07-14 19:37:08 +0000585 uname is used to print system information.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000586
587config CONFIG_UNIQ
588 bool "uniq"
589 default n
590 help
Eric Andersene5642112003-07-14 19:37:08 +0000591 uniq is used to remove duplicate lines from a sorted file.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000592
593config CONFIG_USLEEP
594 bool "usleep"
595 default n
596 help
Eric Andersene5642112003-07-14 19:37:08 +0000597 usleep is used to pause for a specified number of microseconds.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000598
599config CONFIG_UUDECODE
600 bool "uudecode"
601 default n
602 help
Eric Andersene5642112003-07-14 19:37:08 +0000603 uudecode is used to decode a uuencoded file.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000604
605config CONFIG_UUENCODE
606 bool "uuencode"
607 default n
608 help
Eric Andersene5642112003-07-14 19:37:08 +0000609 uuencode is used to uuencode a file.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000610
611config CONFIG_WATCH
612 bool "watch"
613 default n
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +0000614 select CONFIG_DATE
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000615 help
Eric Andersene5642112003-07-14 19:37:08 +0000616 watch is used to execute a program periodically, showing
617 output to the screen.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000618
619config CONFIG_WC
620 bool "wc"
621 default n
622 help
Eric Andersene5642112003-07-14 19:37:08 +0000623 wc is used to print the number of bytes, words, and lines,
624 in specified files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000625
626config CONFIG_WHO
627 bool "who"
628 default n
Mike Frysinger8deb6862005-07-01 01:04:32 +0000629 select CONFIG_FEATURE_UTMP
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000630 help
Eric Andersene5642112003-07-14 19:37:08 +0000631 who is used to show who is logged on.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000632
633config CONFIG_WHOAMI
634 bool "whoami"
635 default n
636 help
Eric Andersene5642112003-07-14 19:37:08 +0000637 whoami is used to print the username of the current
638 user id (same as id -un).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000639
640config CONFIG_YES
641 bool "yes"
642 default n
643 help
Eric Andersene5642112003-07-14 19:37:08 +0000644 yes is used to repeatedly output a specific string, or
645 the default string `y'.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000646
647comment "Common options for cp and mv"
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +0000648 depends on CONFIG_CP || CONFIG_MV
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000649
650config CONFIG_FEATURE_PRESERVE_HARDLINKS
651 bool " Preserve hard links"
652 default n
653 depends on CONFIG_CP || CONFIG_MV
654 help
Eric Andersene5642112003-07-14 19:37:08 +0000655 Allow cp and mv to preserve hard links.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000656
Rob Landley30a6bba2006-02-06 02:49:45 +0000657comment "Common options for ls, more and telnet"
658 depends on CONFIG_LS || CONFIG_MORE || CONFIG_TELNET
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000659
660config CONFIG_FEATURE_AUTOWIDTH
661 bool " Calculate terminal & column widths"
Eric Andersen727f5292003-07-26 09:33:16 +0000662 default y
Rob Landley30a6bba2006-02-06 02:49:45 +0000663 depends on CONFIG_LS || CONFIG_MORE || CONFIG_TELNET
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000664 help
Rob Landley30a6bba2006-02-06 02:49:45 +0000665 This option allows utilities such as 'ls', 'more' and 'telnet'
666 to determine the width of the screen, which can allow them to
667 display additional text or avoid wrapping text onto the next line.
668 If you leave this disabled, your utilities will be especially
669 primitive and will be unable to determine the current screen width.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000670
671comment "Common options for df, du, ls"
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +0000672 depends on CONFIG_DF || CONFIG_DU || CONFIG_LS
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000673
674config CONFIG_FEATURE_HUMAN_READABLE
675 bool " Support for human readable output (example 13k, 23M, 235G)"
676 default n
677 depends on CONFIG_DF || CONFIG_DU || CONFIG_LS
678 help
Eric Andersene5642112003-07-14 19:37:08 +0000679 Allow df, du, and ls to have human readable output.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000680
Glenn L McGrathd2a897a2003-11-10 04:33:55 +0000681comment "Common options for md5sum, sha1sum"
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +0000682 depends on CONFIG_MD5SUM || CONFIG_SHA1SUM
Glenn L McGrathd2a897a2003-11-10 04:33:55 +0000683
684config CONFIG_FEATURE_MD5_SHA1_SUM_CHECK
Glenn L McGrath5c0d84a2003-12-08 20:11:55 +0000685 bool " Enable -c, -s and -w options"
Glenn L McGrathd2a897a2003-11-10 04:33:55 +0000686 default n
687 depends on CONFIG_MD5SUM || CONFIG_SHA1SUM
688 help
Glenn L McGrath5c0d84a2003-12-08 20:11:55 +0000689 Enabling the -c options allows files to be checked
Glenn L McGrathd2a897a2003-11-10 04:33:55 +0000690 against pre-calculated hash values.
691
Glenn L McGrath5c0d84a2003-12-08 20:11:55 +0000692 -s and -w are useful options when verifying checksums.
693
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000694endmenu