blob: f92cd0d311e14a5dd634696819a4c7bb7fad26e9 [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
82if CONFIG_WATCH
83 config CONFIG_DATE
84 default y
85 comment "date (forced enabled for use with watch)"
86endif
87
88if !CONFIG_WATCH
89 config CONFIG_DATE
90 bool "date"
91 default n
92 help
Eric Andersene5920a22003-07-03 10:00:15 +000093 date is used to set the system date or display the
94 current time in the given format.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000095endif
96
97config CONFIG_FEATURE_DATE_ISOFMT
98 bool " Enable ISO date format output (-I)"
99 default y
100 depends on CONFIG_DATE
101 help
Eric Andersen65e20a32003-07-05 07:52:35 +0000102 Enable option (-I) to output an ISO-8601 compliant
103 date/time string.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000104
105config CONFIG_DD
106 bool "dd"
107 default n
108 help
Eric Andersene5642112003-07-14 19:37:08 +0000109 dd copies a file (from standard input to standard output,
110 by default) using specific input and output blocksizes,
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000111 while optionally performing conversions on it.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000112
113config CONFIG_DF
114 bool "df"
115 default n
116 help
Eric Andersene5642112003-07-14 19:37:08 +0000117 df reports the amount of disk space used and available
118 on filesystems.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000119
120config CONFIG_DIRNAME
121 bool "dirname"
122 default n
123 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000124 dirname is used to strip a non-directory suffix from
Eric Andersene5642112003-07-14 19:37:08 +0000125 a file name.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000126
127config CONFIG_DOS2UNIX
128 bool "dos2unix/unix2dos"
129 default n
130 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000131 dos2unix is used to convert a text file from DOS format to
Eric Andersene5642112003-07-14 19:37:08 +0000132 UNIX format, and vice versa.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000133
Eric Andersen7c512432003-06-26 21:53:51 +0000134config CONFIG_UNIX2DOS
135 bool
136 default y
137 depends on CONFIG_DOS2UNIX
138
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000139config CONFIG_DU
Manuel Novoa III cad53642003-03-19 09:13:01 +0000140 bool "du (default blocksize of 512 bytes)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000141 default n
142 help
Eric Andersene5642112003-07-14 19:37:08 +0000143 du is used to report the amount of disk space used
144 for specified files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000145
Manuel Novoa III cad53642003-03-19 09:13:01 +0000146config CONFIG_FEATURE_DU_DEFALT_BLOCKSIZE_1K
147 bool " Use a default blocksize of 1024 bytes (1K)"
148 default y
149 depends on CONFIG_DU
150 help
Eric Andersene5642112003-07-14 19:37:08 +0000151 Use a blocksize of (1K) instead of the default 512b.
Manuel Novoa III cad53642003-03-19 09:13:01 +0000152
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000153config CONFIG_ECHO
Glenn L McGrath95ed8d92004-03-05 06:47:25 +0000154 bool "echo (basic SUSv3 version taking no options)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000155 default n
156 help
Eric Andersene5642112003-07-14 19:37:08 +0000157 echo is used to print a specified string to stdout.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000158
Paul Fox0b621582005-08-09 19:38:05 +0000159# this entry also appears in shell/Config.in, next to the echo builtin
Manuel Novoa III cad53642003-03-19 09:13:01 +0000160config CONFIG_FEATURE_FANCY_ECHO
161 bool " Enable echo options (-n and -e)"
162 default y
163 depends on CONFIG_ECHO
164 help
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000165 This adds options (-n and -e) to echo.
Manuel Novoa III cad53642003-03-19 09:13:01 +0000166
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000167config CONFIG_ENV
168 bool "env"
169 default n
170 help
Eric Andersene5642112003-07-14 19:37:08 +0000171 env is used to set an environment variable and run
Eric Andersen88c916b2003-10-22 09:58:56 +0000172 a command; without options it displays the current
Eric Andersene5642112003-07-14 19:37:08 +0000173 environment.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000174
Mike Frysinger6d1d2e52005-04-21 23:23:13 +0000175config CONFIG_PRINTENV
176 bool "printenv"
177 default n
178 help
179 printenv is used to print all or part of environment.
180
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000181config CONFIG_EXPR
182 bool "expr"
183 default n
184 help
Eric Andersene5642112003-07-14 19:37:08 +0000185 expr is used to calculate numbers and print the result
186 to standard output.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000187
188if CONFIG_HUSH || CONFIG_LASH || CONFIG_MSH
189 config CONFIG_FALSE
190 default y
191 comment "false (forced enabled for use with shell)"
192endif
193
194if !CONFIG_HUSH && !CONFIG_LASH && !CONFIG_MSH
195 config CONFIG_FALSE
196 bool "false"
197 default n
198 help
Eric Andersene5920a22003-07-03 10:00:15 +0000199 false returns an exit code of FALSE (1).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000200endif
201
Glenn L McGrathf01b8052003-04-27 06:02:14 +0000202config CONFIG_FOLD
203 bool "fold"
204 default n
205 help
Eric Andersene5642112003-07-14 19:37:08 +0000206 Wrap text to fit a specific width.
Glenn L McGrathf01b8052003-04-27 06:02:14 +0000207
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000208config CONFIG_HEAD
209 bool "head"
210 default n
211 help
Eric Andersene5642112003-07-14 19:37:08 +0000212 head is used to print the first specified number of lines
213 from files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000214
Manuel Novoa III cad53642003-03-19 09:13:01 +0000215config CONFIG_FEATURE_FANCY_HEAD
216 bool " Enable head options (-c, -q, and -v)"
217 default n
218 depends on CONFIG_HEAD
219 help
Eric Andersene5642112003-07-14 19:37:08 +0000220 This enables the head options (-c, -q, and -v).
Manuel Novoa III cad53642003-03-19 09:13:01 +0000221
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000222config CONFIG_HOSTID
223 bool "hostid"
224 default n
225 help
Eric Andersene5642112003-07-14 19:37:08 +0000226 hostid prints the numeric identifier (in hexadecimal) for
227 the current host.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000228
229config CONFIG_ID
230 bool "id"
231 default n
232 help
Eric Andersene5642112003-07-14 19:37:08 +0000233 id displays the current user and group ID names.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000234
Glenn L McGratheebcc1d2003-09-24 03:22:57 +0000235config CONFIG_INSTALL
236 bool "install"
237 default n
238 help
239 Copy files and set attributes.
240
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000241config CONFIG_LENGTH
242 bool "length"
243 default n
244 help
Eric Andersene5642112003-07-14 19:37:08 +0000245 length is used to print out the length of a specified string.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000246
247config CONFIG_LN
248 bool "ln"
249 default n
250 help
Eric Andersene5642112003-07-14 19:37:08 +0000251 ln is used to create hard or soft links between files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000252
253config CONFIG_LOGNAME
254 bool "logname"
255 default n
256 help
Eric Andersene5642112003-07-14 19:37:08 +0000257 logname is used to print the current user's login name.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000258
259config CONFIG_LS
260 bool "ls"
261 default n
262 help
Eric Andersene5642112003-07-14 19:37:08 +0000263 ls is used to list the contents of directories.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000264
265config CONFIG_FEATURE_LS_FILETYPES
266 bool " Enable filetyping options (-p and -F)"
267 default y
268 depends on CONFIG_LS
269 help
Eric Andersene5642112003-07-14 19:37:08 +0000270 Enable the ls options (-p and -F).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000271
272config CONFIG_FEATURE_LS_FOLLOWLINKS
273 bool " Enable symlinks dereferencing (-L)"
274 default y
275 depends on CONFIG_LS
276 help
Eric Andersene5642112003-07-14 19:37:08 +0000277 Enable the ls option (-L).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000278
279config CONFIG_FEATURE_LS_RECURSIVE
280 bool " Enable recursion (-R)"
281 default y
282 depends on CONFIG_LS
283 help
Eric Andersene5642112003-07-14 19:37:08 +0000284 Enable the ls option (-R).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000285
286config CONFIG_FEATURE_LS_SORTFILES
287 bool " Sort the file names"
288 default y
289 depends on CONFIG_LS
290 help
Eric Andersene5642112003-07-14 19:37:08 +0000291 Allow ls to sort file names alphabetically.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000292
293config CONFIG_FEATURE_LS_TIMESTAMPS
294 bool " Show file timestamps"
295 default y
296 depends on CONFIG_LS
297 help
Eric Andersene5642112003-07-14 19:37:08 +0000298 Allow ls to display timestamps for files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000299
300config CONFIG_FEATURE_LS_USERNAME
301 bool " Show username/groupnames"
302 default y
303 depends on CONFIG_LS
304 help
Eric Andersene5642112003-07-14 19:37:08 +0000305 Allow ls to display username/groupname for files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000306
307config CONFIG_FEATURE_LS_COLOR
Paul Fox156dc412005-08-01 19:33:30 +0000308 bool " Allow use of color to identify file types"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000309 default y
310 depends on CONFIG_LS
311 help
Paul Fox156dc412005-08-01 19:33:30 +0000312 This enables the --color option to ls.
313
314if CONFIG_FEATURE_LS_COLOR
315 config CONFIG_FEATURE_LS_COLOR_IS_DEFAULT
316 bool " Produce colored ls output by default"
317 default n
318 help
319 Saying yes here will turn coloring on by default,
320 even if no "--color" option is given to the ls command.
321 This is not recommended, since the colors are not
322 configurable, and the output may not be legible on
323 many output screens.
324endif
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000325
326config CONFIG_MD5SUM
327 bool "md5sum"
328 default n
329 help
Eric Andersene5642112003-07-14 19:37:08 +0000330 md5sum is used to print or check MD5 checksums.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000331
332config CONFIG_MKDIR
333 bool "mkdir"
334 default n
335 help
Eric Andersene5642112003-07-14 19:37:08 +0000336 mkdir is used to create directories with the specified names.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000337
338config CONFIG_MKFIFO
339 bool "mkfifo"
340 default n
341 help
Eric Andersene5642112003-07-14 19:37:08 +0000342 mkfifo is used to create FIFOs (named pipes).
343 The `mknod' program can also create FIFOs.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000344
345config CONFIG_MKNOD
346 bool "mknod"
347 default n
348 help
Eric Andersene5642112003-07-14 19:37:08 +0000349 mknod is used to create FIFOs or block/character special
350 files with the specified names.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000351
352config CONFIG_MV
353 bool "mv"
354 default n
355 help
Eric Andersene5642112003-07-14 19:37:08 +0000356 mv is used to move or rename files or directories.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000357
Manuel Novoa III 2c511602005-02-13 20:14:05 +0000358config CONFIG_NICE
359 bool "nice"
360 default n
361 help
362 nice runs a program with modified scheduling priority.
363
Bernhard Reutner-Fischer9d7010c2005-09-21 18:25:05 +0000364config CONFIG_NOHUP
365 bool "nohup"
366 default n
367 help
368 run a command immune to hangups, with output to a non-tty.
369
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000370config CONFIG_OD
371 bool "od"
372 default n
373 help
Eric Andersene5642112003-07-14 19:37:08 +0000374 od is used to dump binary files in octal and other formats.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000375
376config CONFIG_PRINTF
377 bool "printf"
378 default n
379 help
Eric Andersene5642112003-07-14 19:37:08 +0000380 printf is used to format and print specified strings.
381 It's similar to `echo' except it has more options.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000382
383config CONFIG_PWD
384 bool "pwd"
385 default n
386 help
Eric Andersene5642112003-07-14 19:37:08 +0000387 pwd is used to print the current directory.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000388
389config CONFIG_REALPATH
390 bool "realpath"
391 default n
392 help
393 Return the canonicalized absolute pathname.
Eric Andersen88c916b2003-10-22 09:58:56 +0000394 This isn't provided by GNU shellutils, but where else does it belong.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000395
396config CONFIG_RM
397 bool "rm"
398 default n
399 help
Eric Andersene5642112003-07-14 19:37:08 +0000400 rm is used to remove files or directories.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000401
402config CONFIG_RMDIR
403 bool "rmdir"
404 default n
405 help
Eric Andersene5642112003-07-14 19:37:08 +0000406 rmdir is used to remove empty directories.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000407
Glenn L McGrath82364bb2004-01-27 09:22:20 +0000408config CONFIG_SEQ
409 bool "seq"
410 default n
411 help
412 print a sequence of numbers
413
Glenn L McGrathae0f1e72003-02-17 08:23:22 +0000414config CONFIG_SHA1SUM
415 bool "sha1sum"
416 default n
417 help
418 Compute and check SHA1 message digest
419
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000420config CONFIG_SLEEP
Manuel Novoa III cad53642003-03-19 09:13:01 +0000421 bool "sleep (single integer arg with no suffix)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000422 default n
423 help
Eric Andersene5642112003-07-14 19:37:08 +0000424 sleep is used to pause for a specified number of seconds,
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000425
Manuel Novoa III cad53642003-03-19 09:13:01 +0000426config CONFIG_FEATURE_FANCY_SLEEP
427 bool " Enable multiple integer args and optional time suffixes"
428 default n
429 depends on CONFIG_SLEEP
430 help
Eric Andersene5642112003-07-14 19:37:08 +0000431 Allow sleep to pause for specified minutes, hours, and days.
Manuel Novoa III cad53642003-03-19 09:13:01 +0000432
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000433config CONFIG_SORT
434 bool "sort"
435 default n
436 help
Eric Andersene5642112003-07-14 19:37:08 +0000437 sort is used to sort lines of text in specified files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000438
Rob Landleyc0dedd02005-01-24 07:00:02 +0000439config CONFIG_SORT_BIG
440 bool " full SuSv3 compliant sort (Support -ktcsbdfiozgM)"
441 default y
442 depends on CONFIG_SORT
443 help
444 Without this, sort only supports -r, -u, and an integer version
445 of -n. Selecting this adds sort keys, floating point support, and
446 more. This adds a little over 3k to a nonstatic build on x86.
447
448 The SuSv3 sort standard is available at:
449 http://www.opengroup.org/onlinepubs/007904975/utilities/sort.html
450
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000451config CONFIG_STAT
452 bool "stat"
453 default n
454 help
455 display file or filesystem status.
456
457config CONFIG_FEATURE_STAT_FORMAT
458 bool " Enable custom formats (-c)"
459 default n
460 depends on CONFIG_STAT
461 help
462 Without this, stat will not support the '-c format' option where
463 users can pass a custom format string for output. This adds about
464 7k to a nonstatic build on amd64.
465
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000466config CONFIG_STTY
467 bool "stty"
468 default n
469 help
Eric Andersene5642112003-07-14 19:37:08 +0000470 stty is used to change and print terminal line settings.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000471
Mike Frysinger4a211702005-04-21 23:24:46 +0000472config CONFIG_SUM
473 bool "sum"
474 default n
475 help
476 checksum and count the blocks in a file
477
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000478config CONFIG_SYNC
479 bool "sync"
480 default n
481 help
Eric Andersene5642112003-07-14 19:37:08 +0000482 sync is used to flush filesystem buffers.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000483
484config CONFIG_TAIL
485 bool "tail"
486 default n
487 help
Eric Andersene5642112003-07-14 19:37:08 +0000488 tail is used to print the last specified number of lines
489 from files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000490
491config CONFIG_FEATURE_FANCY_TAIL
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000492 bool " Enable extra tail options (-q, -s, and -v)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000493 default y
494 depends on CONFIG_TAIL
495 help
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000496 The options (-q, -s, and -v) are provided by GNU tail, but
497 are not specific in the SUSv3 standard.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000498
499config CONFIG_TEE
500 bool "tee"
501 default n
502 help
Eric Andersene5642112003-07-14 19:37:08 +0000503 tee is used to read from standard input and write
504 to standard output and files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000505
Manuel Novoa III cad53642003-03-19 09:13:01 +0000506config CONFIG_FEATURE_TEE_USE_BLOCK_IO
507 bool " Enable block i/o (larger/faster) instead of byte i/o."
508 default n
509 depends on CONFIG_TEE
510 help
Eric Andersene5642112003-07-14 19:37:08 +0000511 Enable this option for a faster tee, at expense of size.
Manuel Novoa III cad53642003-03-19 09:13:01 +0000512
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000513if CONFIG_ASH || CONFIG_HUSH || CONFIG_LASH || CONFIG_MSH
514 config CONFIG_TEST
515 default y
516 comment "test (forced enabled for use with shell)"
517endif
518
519if !CONFIG_ASH && !CONFIG_HUSH && !CONFIG_LASH && !CONFIG_MSH
520 config CONFIG_TEST
521 bool "test"
522 default n
523 help
Eric Andersene5920a22003-07-03 10:00:15 +0000524 test is used to check file types and compare values,
525 returning an appropriate exit code. The shells (ash
Eric Andersen88c916b2003-10-22 09:58:56 +0000526 and bash) have test builtin.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000527endif
528
Glenn L McGrath73db8be2004-08-11 02:45:47 +0000529config CONFIG_FEATURE_TEST_64
530 bool " Extend test to 64 bit"
531 default n
532 depends on CONFIG_TEST
533 help
534 Enable 64-bit support in test.
535
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000536config CONFIG_TOUCH
537 bool "touch"
538 default n
539 help
Eric Andersene5642112003-07-14 19:37:08 +0000540 touch is used to create or change the access and/or
541 modification timestamp of specified files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000542
543config CONFIG_TR
544 bool "tr"
545 default n
546 help
Eric Andersene5642112003-07-14 19:37:08 +0000547 tr is used to squeeze, and/or delete characters from standard
548 input, writing to standard output.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000549
550if CONFIG_HUSH || CONFIG_LASH || CONFIG_MSH
551 config CONFIG_TRUE
552 default y
553 comment "true (forced enabled for use with shell)"
554endif
555
556if !CONFIG_HUSH && !CONFIG_LASH && !CONFIG_MSH
557 config CONFIG_TRUE
558 bool "true"
559 default n
560 help
Eric Andersene5920a22003-07-03 10:00:15 +0000561 true returns an exit code of TRUE (0).
562
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000563endif
564
565config CONFIG_TTY
566 bool "tty"
567 default n
568 help
Eric Andersene5642112003-07-14 19:37:08 +0000569 tty is used to print the name of the current terminal to
570 standard output.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000571
572config CONFIG_UNAME
573 bool "uname"
574 default n
575 help
Eric Andersene5642112003-07-14 19:37:08 +0000576 uname is used to print system information.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000577
578config CONFIG_UNIQ
579 bool "uniq"
580 default n
581 help
Eric Andersene5642112003-07-14 19:37:08 +0000582 uniq is used to remove duplicate lines from a sorted file.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000583
584config CONFIG_USLEEP
585 bool "usleep"
586 default n
587 help
Eric Andersene5642112003-07-14 19:37:08 +0000588 usleep is used to pause for a specified number of microseconds.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000589
590config CONFIG_UUDECODE
591 bool "uudecode"
592 default n
593 help
Eric Andersene5642112003-07-14 19:37:08 +0000594 uudecode is used to decode a uuencoded file.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000595
596config CONFIG_UUENCODE
597 bool "uuencode"
598 default n
599 help
Eric Andersene5642112003-07-14 19:37:08 +0000600 uuencode is used to uuencode a file.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000601
602config CONFIG_WATCH
603 bool "watch"
604 default n
605 help
Eric Andersene5642112003-07-14 19:37:08 +0000606 watch is used to execute a program periodically, showing
607 output to the screen.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000608
609config CONFIG_WC
610 bool "wc"
611 default n
612 help
Eric Andersene5642112003-07-14 19:37:08 +0000613 wc is used to print the number of bytes, words, and lines,
614 in specified files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000615
616config CONFIG_WHO
617 bool "who"
618 default n
Mike Frysinger8deb6862005-07-01 01:04:32 +0000619 select CONFIG_FEATURE_UTMP
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000620 help
Eric Andersene5642112003-07-14 19:37:08 +0000621 who is used to show who is logged on.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000622
623config CONFIG_WHOAMI
624 bool "whoami"
625 default n
626 help
Eric Andersene5642112003-07-14 19:37:08 +0000627 whoami is used to print the username of the current
628 user id (same as id -un).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000629
630config CONFIG_YES
631 bool "yes"
632 default n
633 help
Eric Andersene5642112003-07-14 19:37:08 +0000634 yes is used to repeatedly output a specific string, or
635 the default string `y'.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000636
637comment "Common options for cp and mv"
638 depends on CONFIG_CP || CONFIG_MV
639
640config CONFIG_FEATURE_PRESERVE_HARDLINKS
641 bool " Preserve hard links"
642 default n
643 depends on CONFIG_CP || CONFIG_MV
644 help
Eric Andersene5642112003-07-14 19:37:08 +0000645 Allow cp and mv to preserve hard links.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000646
647comment "Common options for ls and more"
Eric Andersen727f5292003-07-26 09:33:16 +0000648 depends on CONFIG_LS || CONFIG_MORE
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000649
650config CONFIG_FEATURE_AUTOWIDTH
651 bool " Calculate terminal & column widths"
Eric Andersen727f5292003-07-26 09:33:16 +0000652 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000653 depends on CONFIG_LS || CONFIG_MORE
654 help
Eric Andersen727f5292003-07-26 09:33:16 +0000655 This option allows utilities such as 'ls' and 'more' to determine the
656 width of the screen, which can allow them to display additional text
657 or avoid wrapping text onto the next line. If you leave this
658 disabled, your utilities will be especially primitive and will be
659 unable to determine the current screen width.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000660
661comment "Common options for df, du, ls"
662 depends on CONFIG_DF || CONFIG_DU || CONFIG_LS
663
664config CONFIG_FEATURE_HUMAN_READABLE
665 bool " Support for human readable output (example 13k, 23M, 235G)"
666 default n
667 depends on CONFIG_DF || CONFIG_DU || CONFIG_LS
668 help
Eric Andersene5642112003-07-14 19:37:08 +0000669 Allow df, du, and ls to have human readable output.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000670
Glenn L McGrathd2a897a2003-11-10 04:33:55 +0000671comment "Common options for md5sum, sha1sum"
672 depends on CONFIG_MD5SUM || CONFIG_SHA1SUM
673
674config CONFIG_FEATURE_MD5_SHA1_SUM_CHECK
Glenn L McGrath5c0d84a2003-12-08 20:11:55 +0000675 bool " Enable -c, -s and -w options"
Glenn L McGrathd2a897a2003-11-10 04:33:55 +0000676 default n
677 depends on CONFIG_MD5SUM || CONFIG_SHA1SUM
678 help
Glenn L McGrath5c0d84a2003-12-08 20:11:55 +0000679 Enabling the -c options allows files to be checked
Glenn L McGrathd2a897a2003-11-10 04:33:55 +0000680 against pre-calculated hash values.
681
Glenn L McGrath5c0d84a2003-12-08 20:11:55 +0000682 -s and -w are useful options when verifying checksums.
683
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000684endmenu