blob: 074312b6e55fa098f5b1bfebce9247285a009788 [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,
13 leaving just the filename itself. Enable this option if you wish
14 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 Andersene5642112003-07-14 19:37:08 +000020 cal is used to display a montly 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 Andersene5642112003-07-14 19:37:08 +000033 chgrp is used to change the group owership 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 Andersene5642112003-07-14 19:37:08 +000045 chown is used too change the user and/or group ownership
46 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
62config CONFIG_CP
63 bool "cp"
64 default n
65 help
Eric Andersene5642112003-07-14 19:37:08 +000066 cp is used to copy files and directories.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000067
68config CONFIG_CUT
69 bool "cut"
70 default n
71 help
Eric Andersene5642112003-07-14 19:37:08 +000072 cut is used to print selected parts of lines from
73 each file to stdout.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000074
75if CONFIG_WATCH
76 config CONFIG_DATE
77 default y
78 comment "date (forced enabled for use with watch)"
79endif
80
81if !CONFIG_WATCH
82 config CONFIG_DATE
83 bool "date"
84 default n
85 help
Eric Andersene5920a22003-07-03 10:00:15 +000086 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 +000088endif
89
90config CONFIG_FEATURE_DATE_ISOFMT
91 bool " Enable ISO date format output (-I)"
92 default y
93 depends on CONFIG_DATE
94 help
Eric Andersen65e20a32003-07-05 07:52:35 +000095 Enable option (-I) to output an ISO-8601 compliant
96 date/time string.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000097
98config CONFIG_DD
99 bool "dd"
100 default n
101 help
Eric Andersene5642112003-07-14 19:37:08 +0000102 dd copies a file (from standard input to standard output,
103 by default) using specific input and output blocksizes,
104 while optionally performing conversions on it.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000105
106config CONFIG_DF
107 bool "df"
108 default n
109 help
Eric Andersene5642112003-07-14 19:37:08 +0000110 df reports the amount of disk space used and available
111 on filesystems.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000112
113config CONFIG_DIRNAME
114 bool "dirname"
115 default n
116 help
Eric Andersene5642112003-07-14 19:37:08 +0000117 dirname is used to strip a non directory suffix from
118 a file name.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000119
120config CONFIG_DOS2UNIX
121 bool "dos2unix/unix2dos"
122 default n
123 help
Eric Andersene5642112003-07-14 19:37:08 +0000124 dos2unix is uses to convert a text file from DOS format to
125 UNIX format, and vice versa.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000126
Eric Andersen7c512432003-06-26 21:53:51 +0000127config CONFIG_UNIX2DOS
128 bool
129 default y
130 depends on CONFIG_DOS2UNIX
131
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000132config CONFIG_DU
Manuel Novoa III cad53642003-03-19 09:13:01 +0000133 bool "du (default blocksize of 512 bytes)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000134 default n
135 help
Eric Andersene5642112003-07-14 19:37:08 +0000136 du is used to report the amount of disk space used
137 for specified files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000138
Manuel Novoa III cad53642003-03-19 09:13:01 +0000139config CONFIG_FEATURE_DU_DEFALT_BLOCKSIZE_1K
140 bool " Use a default blocksize of 1024 bytes (1K)"
141 default y
142 depends on CONFIG_DU
143 help
Eric Andersene5642112003-07-14 19:37:08 +0000144 Use a blocksize of (1K) instead of the default 512b.
Manuel Novoa III cad53642003-03-19 09:13:01 +0000145
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000146config CONFIG_ECHO
Manuel Novoa III cad53642003-03-19 09:13:01 +0000147 bool "echo (basic SUSv3 version taking no options"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000148 default n
149 help
Eric Andersene5642112003-07-14 19:37:08 +0000150 echo is used to print a specified string to stdout.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000151
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 Andersene5642112003-07-14 19:37:08 +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
164 a command, without options it displays the current
165 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
174if CONFIG_HUSH || CONFIG_LASH || CONFIG_MSH
175 config CONFIG_FALSE
176 default y
177 comment "false (forced enabled for use with shell)"
178endif
179
180if !CONFIG_HUSH && !CONFIG_LASH && !CONFIG_MSH
181 config CONFIG_FALSE
182 bool "false"
183 default n
184 help
Eric Andersene5920a22003-07-03 10:00:15 +0000185 false returns an exit code of FALSE (1).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000186endif
187
Glenn L McGrathf01b8052003-04-27 06:02:14 +0000188config CONFIG_FOLD
189 bool "fold"
190 default n
191 help
Eric Andersene5642112003-07-14 19:37:08 +0000192 Wrap text to fit a specific width.
Glenn L McGrathf01b8052003-04-27 06:02:14 +0000193
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000194config CONFIG_HEAD
195 bool "head"
196 default n
197 help
Eric Andersene5642112003-07-14 19:37:08 +0000198 head is used to print the first specified number of lines
199 from files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000200
Manuel Novoa III cad53642003-03-19 09:13:01 +0000201config CONFIG_FEATURE_FANCY_HEAD
202 bool " Enable head options (-c, -q, and -v)"
203 default n
204 depends on CONFIG_HEAD
205 help
Eric Andersene5642112003-07-14 19:37:08 +0000206 This enables the head options (-c, -q, and -v).
Manuel Novoa III cad53642003-03-19 09:13:01 +0000207
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000208config CONFIG_HOSTID
209 bool "hostid"
210 default n
211 help
Eric Andersene5642112003-07-14 19:37:08 +0000212 hostid prints the numeric identifier (in hexadecimal) for
213 the current host.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000214
215config CONFIG_ID
216 bool "id"
217 default n
218 help
Eric Andersene5642112003-07-14 19:37:08 +0000219 id displays the current user and group ID names.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000220
221config CONFIG_LENGTH
222 bool "length"
223 default n
224 help
Eric Andersene5642112003-07-14 19:37:08 +0000225 length is used to print out the length of a specified string.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000226
227config CONFIG_LN
228 bool "ln"
229 default n
230 help
Eric Andersene5642112003-07-14 19:37:08 +0000231 ln is used to create hard or soft links between files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000232
233config CONFIG_LOGNAME
234 bool "logname"
235 default n
236 help
Eric Andersene5642112003-07-14 19:37:08 +0000237 logname is used to print the current user's login name.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000238
239config CONFIG_LS
240 bool "ls"
241 default n
242 help
Eric Andersene5642112003-07-14 19:37:08 +0000243 ls is used to list the contents of directories.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000244
245config CONFIG_FEATURE_LS_FILETYPES
246 bool " Enable filetyping options (-p and -F)"
247 default y
248 depends on CONFIG_LS
249 help
Eric Andersene5642112003-07-14 19:37:08 +0000250 Enable the ls options (-p and -F).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000251
252config CONFIG_FEATURE_LS_FOLLOWLINKS
253 bool " Enable symlinks dereferencing (-L)"
254 default y
255 depends on CONFIG_LS
256 help
Eric Andersene5642112003-07-14 19:37:08 +0000257 Enable the ls option (-L).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000258
259config CONFIG_FEATURE_LS_RECURSIVE
260 bool " Enable recursion (-R)"
261 default y
262 depends on CONFIG_LS
263 help
Eric Andersene5642112003-07-14 19:37:08 +0000264 Enable the ls option (-R).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000265
266config CONFIG_FEATURE_LS_SORTFILES
267 bool " Sort the file names"
268 default y
269 depends on CONFIG_LS
270 help
Eric Andersene5642112003-07-14 19:37:08 +0000271 Allow ls to sort file names alphabetically.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000272
273config CONFIG_FEATURE_LS_TIMESTAMPS
274 bool " Show file timestamps"
275 default y
276 depends on CONFIG_LS
277 help
Eric Andersene5642112003-07-14 19:37:08 +0000278 Allow ls to display timestamps for files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000279
280config CONFIG_FEATURE_LS_USERNAME
281 bool " Show username/groupnames"
282 default y
283 depends on CONFIG_LS
284 help
Eric Andersene5642112003-07-14 19:37:08 +0000285 Allow ls to display username/groupname for files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000286
287config CONFIG_FEATURE_LS_COLOR
288 bool " Use color to identify file types"
289 default y
290 depends on CONFIG_LS
291 help
Eric Andersene5642112003-07-14 19:37:08 +0000292 Allow ls to use color when displaying files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000293
294config CONFIG_MD5SUM
295 bool "md5sum"
296 default n
297 help
Eric Andersene5642112003-07-14 19:37:08 +0000298 md5sum is used to print or check MD5 checksums.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000299
300config CONFIG_MKDIR
301 bool "mkdir"
302 default n
303 help
Eric Andersene5642112003-07-14 19:37:08 +0000304 mkdir is used to create directories with the specified names.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000305
306config CONFIG_MKFIFO
307 bool "mkfifo"
308 default n
309 help
Eric Andersene5642112003-07-14 19:37:08 +0000310 mkfifo is used to create FIFOs (named pipes).
311 The `mknod' program can also create FIFOs.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000312
313config CONFIG_MKNOD
314 bool "mknod"
315 default n
316 help
Eric Andersene5642112003-07-14 19:37:08 +0000317 mknod is used to create FIFOs or block/character special
318 files with the specified names.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000319
320config CONFIG_MV
321 bool "mv"
322 default n
323 help
Eric Andersene5642112003-07-14 19:37:08 +0000324 mv is used to move or rename files or directories.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000325
326config CONFIG_OD
327 bool "od"
328 default n
329 help
Eric Andersene5642112003-07-14 19:37:08 +0000330 od is used to dump binary files in octal and other formats.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000331
332config CONFIG_PRINTF
333 bool "printf"
334 default n
335 help
Eric Andersene5642112003-07-14 19:37:08 +0000336 printf is used to format and print specified strings.
337 It's similar to `echo' except it has more options.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000338
339config CONFIG_PWD
340 bool "pwd"
341 default n
342 help
Eric Andersene5642112003-07-14 19:37:08 +0000343 pwd is used to print the current directory.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000344
345config CONFIG_REALPATH
346 bool "realpath"
347 default n
348 help
349 Return the canonicalized absolute pathname.
350 This isnt provided by GNU shellutils, but where else does it belong.
351
352config CONFIG_RM
353 bool "rm"
354 default n
355 help
Eric Andersene5642112003-07-14 19:37:08 +0000356 rm is used to remove files or directories.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000357
358config CONFIG_RMDIR
359 bool "rmdir"
360 default n
361 help
Eric Andersene5642112003-07-14 19:37:08 +0000362 rmdir is used to remove empty directories.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000363
Glenn L McGrathae0f1e72003-02-17 08:23:22 +0000364config CONFIG_SHA1SUM
365 bool "sha1sum"
366 default n
367 help
368 Compute and check SHA1 message digest
369
Glenn L McGrath6c43f742003-06-08 13:32:12 +0000370config CONFIG_FEATURE_SHA1SUM_CHECK
Glenn L McGrathd382c892003-08-19 03:49:00 +0000371 bool " Enable -c and -w options"
Glenn L McGrath6c43f742003-06-08 13:32:12 +0000372 default n
Glenn L McGrathc3f29562003-08-26 04:28:05 +0000373 depends on CONFIG_SHA1SUM
Glenn L McGrath6c43f742003-06-08 13:32:12 +0000374 help
375 Enabling the -c and -w options allow files to be checked
376 against pre-calculated hash values.
377
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000378config CONFIG_SLEEP
Manuel Novoa III cad53642003-03-19 09:13:01 +0000379 bool "sleep (single integer arg with no suffix)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000380 default n
381 help
Eric Andersene5642112003-07-14 19:37:08 +0000382 sleep is used to pause for a specified number of seconds,
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000383
Manuel Novoa III cad53642003-03-19 09:13:01 +0000384config CONFIG_FEATURE_FANCY_SLEEP
385 bool " Enable multiple integer args and optional time suffixes"
386 default n
387 depends on CONFIG_SLEEP
388 help
Eric Andersene5642112003-07-14 19:37:08 +0000389 Allow sleep to pause for specified minutes, hours, and days.
Manuel Novoa III cad53642003-03-19 09:13:01 +0000390
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000391config CONFIG_SORT
392 bool "sort"
393 default n
394 help
Eric Andersene5642112003-07-14 19:37:08 +0000395 sort is used to sort lines of text in specified files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000396
397config CONFIG_FEATURE_SORT_REVERSE
398 bool " Enable reverse sort"
399 default y
400 depends on CONFIG_SORT
401 help
Eric Andersene5642112003-07-14 19:37:08 +0000402 Enable the `-r' option that allows sort to sort lines of
403 text in reverse.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000404
405config CONFIG_FEATURE_SORT_UNIQUE
406 bool " Enable unique sort"
407 default y
408 depends on CONFIG_SORT
409 help
Eric Andersene5642112003-07-14 19:37:08 +0000410 Enable the `-u' option that allows sort to only sort lines
411 that are uniq.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000412
413config CONFIG_STTY
414 bool "stty"
415 default n
416 help
Eric Andersene5642112003-07-14 19:37:08 +0000417 stty is used to change and print terminal line settings.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000418
419config CONFIG_SYNC
420 bool "sync"
421 default n
422 help
Eric Andersene5642112003-07-14 19:37:08 +0000423 sync is used to flush filesystem buffers.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000424
425config CONFIG_TAIL
426 bool "tail"
427 default n
428 help
Eric Andersene5642112003-07-14 19:37:08 +0000429 tail is used to print the last specified number of lines
430 from files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000431
432config CONFIG_FEATURE_FANCY_TAIL
433 bool " Enable extra tail options (-c, -q, -s, and -v)"
434 default y
435 depends on CONFIG_TAIL
436 help
Eric Andersene5642112003-07-14 19:37:08 +0000437 Enable tail options (-c, -q, -s, and -v).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000438
439config CONFIG_TEE
440 bool "tee"
441 default n
442 help
Eric Andersene5642112003-07-14 19:37:08 +0000443 tee is used to read from standard input and write
444 to standard output and files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000445
Manuel Novoa III cad53642003-03-19 09:13:01 +0000446config CONFIG_FEATURE_TEE_USE_BLOCK_IO
447 bool " Enable block i/o (larger/faster) instead of byte i/o."
448 default n
449 depends on CONFIG_TEE
450 help
Eric Andersene5642112003-07-14 19:37:08 +0000451 Enable this option for a faster tee, at expense of size.
Manuel Novoa III cad53642003-03-19 09:13:01 +0000452
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000453if CONFIG_ASH || CONFIG_HUSH || CONFIG_LASH || CONFIG_MSH
454 config CONFIG_TEST
455 default y
456 comment "test (forced enabled for use with shell)"
457endif
458
459if !CONFIG_ASH && !CONFIG_HUSH && !CONFIG_LASH && !CONFIG_MSH
460 config CONFIG_TEST
461 bool "test"
462 default n
463 help
Eric Andersene5920a22003-07-03 10:00:15 +0000464 test is used to check file types and compare values,
465 returning an appropriate exit code. The shells (ash
466 and bash have test builtin).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000467endif
468
469config CONFIG_TOUCH
470 bool "touch"
471 default n
472 help
Eric Andersene5642112003-07-14 19:37:08 +0000473 touch is used to create or change the access and/or
474 modification timestamp of specified files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000475
476config CONFIG_TR
477 bool "tr"
478 default n
479 help
Eric Andersene5642112003-07-14 19:37:08 +0000480 tr is used to squeeze, and/or delete characters from standard
481 input, writing to standard output.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000482
483if CONFIG_HUSH || CONFIG_LASH || CONFIG_MSH
484 config CONFIG_TRUE
485 default y
486 comment "true (forced enabled for use with shell)"
487endif
488
489if !CONFIG_HUSH && !CONFIG_LASH && !CONFIG_MSH
490 config CONFIG_TRUE
491 bool "true"
492 default n
493 help
Eric Andersene5920a22003-07-03 10:00:15 +0000494 true returns an exit code of TRUE (0).
495
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000496endif
497
498config CONFIG_TTY
499 bool "tty"
500 default n
501 help
Eric Andersene5642112003-07-14 19:37:08 +0000502 tty is used to print the name of the current terminal to
503 standard output.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000504
505config CONFIG_UNAME
506 bool "uname"
507 default n
508 help
Eric Andersene5642112003-07-14 19:37:08 +0000509 uname is used to print system information.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000510
511config CONFIG_UNIQ
512 bool "uniq"
513 default n
514 help
Eric Andersene5642112003-07-14 19:37:08 +0000515 uniq is used to remove duplicate lines from a sorted file.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000516
517config CONFIG_USLEEP
518 bool "usleep"
519 default n
520 help
Eric Andersene5642112003-07-14 19:37:08 +0000521 usleep is used to pause for a specified number of microseconds.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000522
523config CONFIG_UUDECODE
524 bool "uudecode"
525 default n
526 help
Eric Andersene5642112003-07-14 19:37:08 +0000527 uudecode is used to decode a uuencoded file.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000528
529config CONFIG_UUENCODE
530 bool "uuencode"
531 default n
532 help
Eric Andersene5642112003-07-14 19:37:08 +0000533 uuencode is used to uuencode a file.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000534
535config CONFIG_WATCH
536 bool "watch"
537 default n
538 help
Eric Andersene5642112003-07-14 19:37:08 +0000539 watch is used to execute a program periodically, showing
540 output to the screen.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000541
542config CONFIG_WC
543 bool "wc"
544 default n
545 help
Eric Andersene5642112003-07-14 19:37:08 +0000546 wc is used to print the number of bytes, words, and lines,
547 in specified files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000548
549config CONFIG_WHO
550 bool "who"
551 default n
552 help
Eric Andersene5642112003-07-14 19:37:08 +0000553 who is used to show who is logged on.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000554
555config CONFIG_WHOAMI
556 bool "whoami"
557 default n
558 help
Eric Andersene5642112003-07-14 19:37:08 +0000559 whoami is used to print the username of the current
560 user id (same as id -un).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000561
562config CONFIG_YES
563 bool "yes"
564 default n
565 help
Eric Andersene5642112003-07-14 19:37:08 +0000566 yes is used to repeatedly output a specific string, or
567 the default string `y'.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000568
569comment "Common options for cp and mv"
570 depends on CONFIG_CP || CONFIG_MV
571
572config CONFIG_FEATURE_PRESERVE_HARDLINKS
573 bool " Preserve hard links"
574 default n
575 depends on CONFIG_CP || CONFIG_MV
576 help
Eric Andersene5642112003-07-14 19:37:08 +0000577 Allow cp and mv to preserve hard links.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000578
579comment "Common options for ls and more"
Eric Andersen727f5292003-07-26 09:33:16 +0000580 depends on CONFIG_LS || CONFIG_MORE
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000581
582config CONFIG_FEATURE_AUTOWIDTH
583 bool " Calculate terminal & column widths"
Eric Andersen727f5292003-07-26 09:33:16 +0000584 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000585 depends on CONFIG_LS || CONFIG_MORE
586 help
Eric Andersen727f5292003-07-26 09:33:16 +0000587 This option allows utilities such as 'ls' and 'more' to determine the
588 width of the screen, which can allow them to display additional text
589 or avoid wrapping text onto the next line. If you leave this
590 disabled, your utilities will be especially primitive and will be
591 unable to determine the current screen width.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000592
593comment "Common options for df, du, ls"
594 depends on CONFIG_DF || CONFIG_DU || CONFIG_LS
595
596config CONFIG_FEATURE_HUMAN_READABLE
597 bool " Support for human readable output (example 13k, 23M, 235G)"
598 default n
599 depends on CONFIG_DF || CONFIG_DU || CONFIG_LS
600 help
Eric Andersene5642112003-07-14 19:37:08 +0000601 Allow df, du, and ls to have human readable output.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000602
603endmenu