blob: d7e31e868a9ba4c90851b2d5f6f9753ae0281bb2 [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
Rob Landley5fe8d5b2006-04-25 22:40:53 +000029config CONFIG_FEATURE_CAT_ESCAPE
30 bool "support -vetET"
31 depends on CONFIG_CAT
32 default n
33 help
34 Sheer bloat.
35
Glenn L McGrath3238ea12003-02-15 10:53:40 +000036config CONFIG_CHGRP
37 bool "chgrp"
38 default n
39 help
Eric Andersen88c916b2003-10-22 09:58:56 +000040 chgrp is used to change the group ownership of files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000041
42config CONFIG_CHMOD
43 bool "chmod"
44 default n
45 help
Eric Andersene5642112003-07-14 19:37:08 +000046 chmod is used to change the access permission of files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000047
48config CONFIG_CHOWN
49 bool "chown"
50 default n
51 help
Eric Andersen88c916b2003-10-22 09:58:56 +000052 chown is used to change the user and/or group ownership
Eric Andersene5642112003-07-14 19:37:08 +000053 of files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000054
55config CONFIG_CHROOT
56 bool "chroot"
57 default n
58 help
Eric Andersene5642112003-07-14 19:37:08 +000059 chroot is used to change the root directory and run a command.
60 The default command is `/bin/sh'.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000061
Rob Landley856489b2006-04-18 20:57:28 +000062config 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 McGrath3238ea12003-02-15 10:53:40 +000068config CONFIG_CMP
69 bool "cmp"
70 default n
71 help
Eric Andersene5642112003-07-14 19:37:08 +000072 cmp is used to compare two files and returns the result
73 to standard output.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000074
Rob Landley2acfd7b2005-05-11 23:12:49 +000075config 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 McGrath3238ea12003-02-15 10:53:40 +000082config CONFIG_CP
83 bool "cp"
84 default n
85 help
Eric Andersene5642112003-07-14 19:37:08 +000086 cp is used to copy files and directories.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000087
88config CONFIG_CUT
89 bool "cut"
90 default n
91 help
Eric Andersene5642112003-07-14 19:37:08 +000092 cut is used to print selected parts of lines from
93 each file to stdout.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000094
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +000095config 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 McGrath3238ea12003-02-15 10:53:40 +0000101
102config CONFIG_FEATURE_DATE_ISOFMT
Rob Landley2ec922e2006-04-13 23:22:16 +0000103 bool "Enable ISO date format output (-I)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000104 default y
105 depends on CONFIG_DATE
106 help
Eric Andersen65e20a32003-07-05 07:52:35 +0000107 Enable option (-I) to output an ISO-8601 compliant
108 date/time string.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000109
110config CONFIG_DD
111 bool "dd"
112 default n
113 help
Eric Andersene5642112003-07-14 19:37:08 +0000114 dd copies a file (from standard input to standard output,
115 by default) using specific input and output blocksizes,
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000116 while optionally performing conversions on it.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000117
Rob Landleyc5598172006-05-02 22:44:04 +0000118config 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 Landley2686d3b2006-05-16 16:52:12 +0000130config 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 McGrath3238ea12003-02-15 10:53:40 +0000138config CONFIG_DF
139 bool "df"
140 default n
141 help
Eric Andersene5642112003-07-14 19:37:08 +0000142 df reports the amount of disk space used and available
143 on filesystems.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000144
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +0000145config 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
153config CONFIG_FEATURE_DIFF_BINARY
Rob Landley2ec922e2006-04-13 23:22:16 +0000154 bool "Enable checks for binary files"
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +0000155 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
161config CONFIG_FEATURE_DIFF_DIR
Rob Landley2ec922e2006-04-13 23:22:16 +0000162 bool "Enable directory support"
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +0000163 default y
164 depends on CONFIG_DIFF
165 help
166 This option enables support for directory and subdirectory
167 comparison.
168
169config CONFIG_FEATURE_DIFF_MINIMAL
Rob Landley2ec922e2006-04-13 23:22:16 +0000170 bool "Enable -d option to find smaller sets of changes"
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +0000171 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 McGrath3238ea12003-02-15 10:53:40 +0000177config CONFIG_DIRNAME
178 bool "dirname"
179 default n
180 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000181 dirname is used to strip a non-directory suffix from
Eric Andersene5642112003-07-14 19:37:08 +0000182 a file name.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000183
184config CONFIG_DOS2UNIX
185 bool "dos2unix/unix2dos"
186 default n
187 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000188 dos2unix is used to convert a text file from DOS format to
Eric Andersene5642112003-07-14 19:37:08 +0000189 UNIX format, and vice versa.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000190
Eric Andersen7c512432003-06-26 21:53:51 +0000191config CONFIG_UNIX2DOS
192 bool
193 default y
194 depends on CONFIG_DOS2UNIX
Bernhard Reutner-Fischer4f7953c2006-05-05 11:55:53 +0000195 help
196 unix2dos is used to convert a text file from UNIX format to
197 DOS format, and vice versa.
Eric Andersen7c512432003-06-26 21:53:51 +0000198
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000199config CONFIG_DU
Manuel Novoa III cad53642003-03-19 09:13:01 +0000200 bool "du (default blocksize of 512 bytes)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000201 default n
202 help
Eric Andersene5642112003-07-14 19:37:08 +0000203 du is used to report the amount of disk space used
204 for specified files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000205
Rob Landley5fe8d5b2006-04-25 22:40:53 +0000206config CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K
Rob Landley2ec922e2006-04-13 23:22:16 +0000207 bool "Use a default blocksize of 1024 bytes (1K)"
Manuel Novoa III cad53642003-03-19 09:13:01 +0000208 default y
209 depends on CONFIG_DU
210 help
Eric Andersene5642112003-07-14 19:37:08 +0000211 Use a blocksize of (1K) instead of the default 512b.
Manuel Novoa III cad53642003-03-19 09:13:01 +0000212
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000213config CONFIG_ECHO
Mike Frysinger7f8797c2005-09-24 23:15:28 +0000214 bool "echo (basic SuSv3 version taking no options)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000215 default n
216 help
Eric Andersene5642112003-07-14 19:37:08 +0000217 echo is used to print a specified string to stdout.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000218
Paul Fox0b621582005-08-09 19:38:05 +0000219# this entry also appears in shell/Config.in, next to the echo builtin
Manuel Novoa III cad53642003-03-19 09:13:01 +0000220config CONFIG_FEATURE_FANCY_ECHO
Rob Landley2ec922e2006-04-13 23:22:16 +0000221 bool "Enable echo options (-n and -e)"
Manuel Novoa III cad53642003-03-19 09:13:01 +0000222 default y
223 depends on CONFIG_ECHO
224 help
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000225 This adds options (-n and -e) to echo.
Manuel Novoa III cad53642003-03-19 09:13:01 +0000226
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000227config CONFIG_ENV
228 bool "env"
229 default n
230 help
Eric Andersene5642112003-07-14 19:37:08 +0000231 env is used to set an environment variable and run
Eric Andersen88c916b2003-10-22 09:58:56 +0000232 a command; without options it displays the current
Eric Andersene5642112003-07-14 19:37:08 +0000233 environment.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000234
235config CONFIG_EXPR
236 bool "expr"
237 default n
238 help
Eric Andersene5642112003-07-14 19:37:08 +0000239 expr is used to calculate numbers and print the result
240 to standard output.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000241
"Vladimir N. Oleynik"8aa9e572006-01-25 13:56:03 +0000242config CONFIG_EXPR_MATH_SUPPORT_64
Rob Landley2ec922e2006-04-13 23:22:16 +0000243 bool "Extend Posix numbers support to 64 bit"
"Vladimir N. Oleynik"8aa9e572006-01-25 13:56:03 +0000244 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-Fischer96002bb2006-01-19 14:42:23 +0000251config CONFIG_FALSE
252 bool "false"
253 default n
254 help
255 false returns an exit code of FALSE (1).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000256
Glenn L McGrathf01b8052003-04-27 06:02:14 +0000257config CONFIG_FOLD
258 bool "fold"
259 default n
260 help
Eric Andersene5642112003-07-14 19:37:08 +0000261 Wrap text to fit a specific width.
Glenn L McGrathf01b8052003-04-27 06:02:14 +0000262
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000263config CONFIG_HEAD
264 bool "head"
265 default n
266 help
Eric Andersene5642112003-07-14 19:37:08 +0000267 head is used to print the first specified number of lines
268 from files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000269
Manuel Novoa III cad53642003-03-19 09:13:01 +0000270config CONFIG_FEATURE_FANCY_HEAD
Rob Landley2ec922e2006-04-13 23:22:16 +0000271 bool "Enable head options (-c, -q, and -v)"
Manuel Novoa III cad53642003-03-19 09:13:01 +0000272 default n
273 depends on CONFIG_HEAD
274 help
Eric Andersene5642112003-07-14 19:37:08 +0000275 This enables the head options (-c, -q, and -v).
Manuel Novoa III cad53642003-03-19 09:13:01 +0000276
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000277config CONFIG_HOSTID
278 bool "hostid"
279 default n
280 help
Eric Andersene5642112003-07-14 19:37:08 +0000281 hostid prints the numeric identifier (in hexadecimal) for
282 the current host.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000283
284config CONFIG_ID
285 bool "id"
286 default n
287 help
Eric Andersene5642112003-07-14 19:37:08 +0000288 id displays the current user and group ID names.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000289
Glenn L McGratheebcc1d2003-09-24 03:22:57 +0000290config CONFIG_INSTALL
291 bool "install"
292 default n
293 help
294 Copy files and set attributes.
295
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000296config CONFIG_LENGTH
297 bool "length"
298 default n
299 help
Eric Andersene5642112003-07-14 19:37:08 +0000300 length is used to print out the length of a specified string.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000301
302config CONFIG_LN
303 bool "ln"
304 default n
305 help
Eric Andersene5642112003-07-14 19:37:08 +0000306 ln is used to create hard or soft links between files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000307
308config CONFIG_LOGNAME
309 bool "logname"
310 default n
311 help
Eric Andersene5642112003-07-14 19:37:08 +0000312 logname is used to print the current user's login name.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000313
314config CONFIG_LS
315 bool "ls"
316 default n
317 help
Eric Andersene5642112003-07-14 19:37:08 +0000318 ls is used to list the contents of directories.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000319
320config CONFIG_FEATURE_LS_FILETYPES
Rob Landley2ec922e2006-04-13 23:22:16 +0000321 bool "Enable filetyping options (-p and -F)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000322 default y
323 depends on CONFIG_LS
324 help
Eric Andersene5642112003-07-14 19:37:08 +0000325 Enable the ls options (-p and -F).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000326
327config CONFIG_FEATURE_LS_FOLLOWLINKS
Rob Landley2ec922e2006-04-13 23:22:16 +0000328 bool "Enable symlinks dereferencing (-L)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000329 default y
330 depends on CONFIG_LS
331 help
Eric Andersene5642112003-07-14 19:37:08 +0000332 Enable the ls option (-L).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000333
334config CONFIG_FEATURE_LS_RECURSIVE
Rob Landley2ec922e2006-04-13 23:22:16 +0000335 bool "Enable recursion (-R)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000336 default y
337 depends on CONFIG_LS
338 help
Eric Andersene5642112003-07-14 19:37:08 +0000339 Enable the ls option (-R).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000340
341config CONFIG_FEATURE_LS_SORTFILES
Rob Landley2ec922e2006-04-13 23:22:16 +0000342 bool "Sort the file names"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000343 default y
344 depends on CONFIG_LS
345 help
Eric Andersene5642112003-07-14 19:37:08 +0000346 Allow ls to sort file names alphabetically.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000347
348config CONFIG_FEATURE_LS_TIMESTAMPS
Rob Landley2ec922e2006-04-13 23:22:16 +0000349 bool "Show file timestamps"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000350 default y
351 depends on CONFIG_LS
352 help
Eric Andersene5642112003-07-14 19:37:08 +0000353 Allow ls to display timestamps for files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000354
355config CONFIG_FEATURE_LS_USERNAME
Rob Landley2ec922e2006-04-13 23:22:16 +0000356 bool "Show username/groupnames"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000357 default y
358 depends on CONFIG_LS
359 help
Eric Andersene5642112003-07-14 19:37:08 +0000360 Allow ls to display username/groupname for files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000361
362config CONFIG_FEATURE_LS_COLOR
Rob Landley2ec922e2006-04-13 23:22:16 +0000363 bool "Allow use of color to identify file types"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000364 default y
365 depends on CONFIG_LS
366 help
Paul Fox156dc412005-08-01 19:33:30 +0000367 This enables the --color option to ls.
368
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +0000369config CONFIG_FEATURE_LS_COLOR_IS_DEFAULT
Rob Landley2ec922e2006-04-13 23:22:16 +0000370 bool "Produce colored ls output by default"
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +0000371 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 McGrath3238ea12003-02-15 10:53:40 +0000379
380config CONFIG_MD5SUM
381 bool "md5sum"
382 default n
383 help
Eric Andersene5642112003-07-14 19:37:08 +0000384 md5sum is used to print or check MD5 checksums.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000385
386config CONFIG_MKDIR
387 bool "mkdir"
388 default n
389 help
Eric Andersene5642112003-07-14 19:37:08 +0000390 mkdir is used to create directories with the specified names.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000391
392config CONFIG_MKFIFO
393 bool "mkfifo"
394 default n
395 help
Eric Andersene5642112003-07-14 19:37:08 +0000396 mkfifo is used to create FIFOs (named pipes).
397 The `mknod' program can also create FIFOs.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000398
399config CONFIG_MKNOD
400 bool "mknod"
401 default n
402 help
Eric Andersene5642112003-07-14 19:37:08 +0000403 mknod is used to create FIFOs or block/character special
404 files with the specified names.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000405
406config CONFIG_MV
407 bool "mv"
408 default n
409 help
Eric Andersene5642112003-07-14 19:37:08 +0000410 mv is used to move or rename files or directories.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000411
Manuel Novoa III 2c511602005-02-13 20:14:05 +0000412config CONFIG_NICE
413 bool "nice"
414 default n
415 help
416 nice runs a program with modified scheduling priority.
417
Bernhard Reutner-Fischer9d7010c2005-09-21 18:25:05 +0000418config 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 McGrath3238ea12003-02-15 10:53:40 +0000424config CONFIG_OD
425 bool "od"
426 default n
427 help
Eric Andersene5642112003-07-14 19:37:08 +0000428 od is used to dump binary files in octal and other formats.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000429
Mike Frysinger7f8797c2005-09-24 23:15:28 +0000430config CONFIG_PRINTENV
431 bool "printenv"
432 default n
433 help
434 printenv is used to print all or part of environment.
435
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000436config CONFIG_PRINTF
437 bool "printf"
438 default n
439 help
Eric Andersene5642112003-07-14 19:37:08 +0000440 printf is used to format and print specified strings.
441 It's similar to `echo' except it has more options.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000442
443config CONFIG_PWD
444 bool "pwd"
445 default n
446 help
Eric Andersene5642112003-07-14 19:37:08 +0000447 pwd is used to print the current directory.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000448
449config CONFIG_REALPATH
450 bool "realpath"
451 default n
452 help
453 Return the canonicalized absolute pathname.
Eric Andersen88c916b2003-10-22 09:58:56 +0000454 This isn't provided by GNU shellutils, but where else does it belong.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000455
456config CONFIG_RM
457 bool "rm"
458 default n
459 help
Eric Andersene5642112003-07-14 19:37:08 +0000460 rm is used to remove files or directories.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000461
462config CONFIG_RMDIR
463 bool "rmdir"
464 default n
465 help
Eric Andersene5642112003-07-14 19:37:08 +0000466 rmdir is used to remove empty directories.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000467
Glenn L McGrath82364bb2004-01-27 09:22:20 +0000468config CONFIG_SEQ
469 bool "seq"
470 default n
471 help
472 print a sequence of numbers
473
Glenn L McGrathae0f1e72003-02-17 08:23:22 +0000474config CONFIG_SHA1SUM
475 bool "sha1sum"
476 default n
477 help
478 Compute and check SHA1 message digest
479
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000480config CONFIG_SLEEP
Manuel Novoa III cad53642003-03-19 09:13:01 +0000481 bool "sleep (single integer arg with no suffix)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000482 default n
483 help
Eric Andersene5642112003-07-14 19:37:08 +0000484 sleep is used to pause for a specified number of seconds,
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000485
Manuel Novoa III cad53642003-03-19 09:13:01 +0000486config CONFIG_FEATURE_FANCY_SLEEP
Rob Landley2ec922e2006-04-13 23:22:16 +0000487 bool "Enable multiple integer args and optional time suffixes"
Manuel Novoa III cad53642003-03-19 09:13:01 +0000488 default n
489 depends on CONFIG_SLEEP
490 help
Eric Andersene5642112003-07-14 19:37:08 +0000491 Allow sleep to pause for specified minutes, hours, and days.
Manuel Novoa III cad53642003-03-19 09:13:01 +0000492
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000493config CONFIG_SORT
494 bool "sort"
495 default n
496 help
Eric Andersene5642112003-07-14 19:37:08 +0000497 sort is used to sort lines of text in specified files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000498
Rob Landley45ad0e82005-10-08 17:48:25 +0000499config CONFIG_FEATURE_SORT_BIG
Rob Landley2ec922e2006-04-13 23:22:16 +0000500 bool "full SuSv3 compliant sort (Support -ktcsbdfiozgM)"
Rob Landleyc0dedd02005-01-24 07:00:02 +0000501 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 Frysinger9b5f71e2005-04-23 06:26:38 +0000511config CONFIG_STAT
512 bool "stat"
513 default n
514 help
515 display file or filesystem status.
516
517config CONFIG_FEATURE_STAT_FORMAT
Rob Landley2ec922e2006-04-13 23:22:16 +0000518 bool "Enable custom formats (-c)"
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000519 default n
520 depends on CONFIG_STAT
521 help
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000522 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 Frysinger9b5f71e2005-04-23 06:26:38 +0000524 7k to a nonstatic build on amd64.
525
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000526config CONFIG_STTY
527 bool "stty"
528 default n
529 help
Eric Andersene5642112003-07-14 19:37:08 +0000530 stty is used to change and print terminal line settings.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000531
Mike Frysinger4a211702005-04-21 23:24:46 +0000532config CONFIG_SUM
533 bool "sum"
534 default n
535 help
536 checksum and count the blocks in a file
537
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000538config CONFIG_SYNC
539 bool "sync"
540 default n
541 help
Eric Andersene5642112003-07-14 19:37:08 +0000542 sync is used to flush filesystem buffers.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000543
544config CONFIG_TAIL
545 bool "tail"
546 default n
547 help
Eric Andersene5642112003-07-14 19:37:08 +0000548 tail is used to print the last specified number of lines
549 from files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000550
551config CONFIG_FEATURE_FANCY_TAIL
Rob Landley2ec922e2006-04-13 23:22:16 +0000552 bool "Enable extra tail options (-q, -s, and -v)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000553 default y
554 depends on CONFIG_TAIL
555 help
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000556 The options (-q, -s, and -v) are provided by GNU tail, but
557 are not specific in the SUSv3 standard.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000558
559config CONFIG_TEE
560 bool "tee"
561 default n
562 help
Eric Andersene5642112003-07-14 19:37:08 +0000563 tee is used to read from standard input and write
564 to standard output and files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000565
Manuel Novoa III cad53642003-03-19 09:13:01 +0000566config CONFIG_FEATURE_TEE_USE_BLOCK_IO
Rob Landley2ec922e2006-04-13 23:22:16 +0000567 bool "Enable block i/o (larger/faster) instead of byte i/o."
Manuel Novoa III cad53642003-03-19 09:13:01 +0000568 default n
569 depends on CONFIG_TEE
570 help
Eric Andersene5642112003-07-14 19:37:08 +0000571 Enable this option for a faster tee, at expense of size.
Manuel Novoa III cad53642003-03-19 09:13:01 +0000572
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +0000573config 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 McGrath3238ea12003-02-15 10:53:40 +0000580
Glenn L McGrath73db8be2004-08-11 02:45:47 +0000581config CONFIG_FEATURE_TEST_64
Rob Landley2ec922e2006-04-13 23:22:16 +0000582 bool "Extend test to 64 bit"
Glenn L McGrath73db8be2004-08-11 02:45:47 +0000583 default n
584 depends on CONFIG_TEST
585 help
586 Enable 64-bit support in test.
587
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000588config CONFIG_TOUCH
589 bool "touch"
590 default n
591 help
Eric Andersene5642112003-07-14 19:37:08 +0000592 touch is used to create or change the access and/or
593 modification timestamp of specified files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000594
595config CONFIG_TR
596 bool "tr"
597 default n
598 help
Eric Andersene5642112003-07-14 19:37:08 +0000599 tr is used to squeeze, and/or delete characters from standard
600 input, writing to standard output.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000601
Rob Landley45ad0e82005-10-08 17:48:25 +0000602config CONFIG_FEATURE_TR_CLASSES
Rob Landley2ec922e2006-04-13 23:22:16 +0000603 bool "Enable character classes (such as [:upper:])"
Rob Landley45ad0e82005-10-08 17:48:25 +0000604 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
610config CONFIG_FEATURE_TR_EQUIV
Rob Landley2ec922e2006-04-13 23:22:16 +0000611 bool "Enable equivalence classes"
Rob Landley45ad0e82005-10-08 17:48:25 +0000612 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-Fischer96002bb2006-01-19 14:42:23 +0000621config CONFIG_TRUE
622 bool "true"
623 default n
624 help
625 true returns an exit code of TRUE (0).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000626
627config CONFIG_TTY
628 bool "tty"
629 default n
630 help
Eric Andersene5642112003-07-14 19:37:08 +0000631 tty is used to print the name of the current terminal to
632 standard output.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000633
634config CONFIG_UNAME
635 bool "uname"
636 default n
637 help
Eric Andersene5642112003-07-14 19:37:08 +0000638 uname is used to print system information.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000639
640config CONFIG_UNIQ
641 bool "uniq"
642 default n
643 help
Eric Andersene5642112003-07-14 19:37:08 +0000644 uniq is used to remove duplicate lines from a sorted file.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000645
646config CONFIG_USLEEP
647 bool "usleep"
648 default n
649 help
Eric Andersene5642112003-07-14 19:37:08 +0000650 usleep is used to pause for a specified number of microseconds.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000651
652config CONFIG_UUDECODE
653 bool "uudecode"
654 default n
655 help
Eric Andersene5642112003-07-14 19:37:08 +0000656 uudecode is used to decode a uuencoded file.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000657
658config CONFIG_UUENCODE
659 bool "uuencode"
660 default n
661 help
Eric Andersene5642112003-07-14 19:37:08 +0000662 uuencode is used to uuencode a file.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000663
664config CONFIG_WATCH
665 bool "watch"
666 default n
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +0000667 select CONFIG_DATE
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000668 help
Eric Andersene5642112003-07-14 19:37:08 +0000669 watch is used to execute a program periodically, showing
670 output to the screen.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000671
672config CONFIG_WC
673 bool "wc"
674 default n
675 help
Eric Andersene5642112003-07-14 19:37:08 +0000676 wc is used to print the number of bytes, words, and lines,
677 in specified files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000678
679config CONFIG_WHO
680 bool "who"
681 default n
Mike Frysinger8deb6862005-07-01 01:04:32 +0000682 select CONFIG_FEATURE_UTMP
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000683 help
Eric Andersene5642112003-07-14 19:37:08 +0000684 who is used to show who is logged on.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000685
686config CONFIG_WHOAMI
687 bool "whoami"
688 default n
689 help
Eric Andersene5642112003-07-14 19:37:08 +0000690 whoami is used to print the username of the current
691 user id (same as id -un).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000692
693config CONFIG_YES
694 bool "yes"
695 default n
696 help
Eric Andersene5642112003-07-14 19:37:08 +0000697 yes is used to repeatedly output a specific string, or
698 the default string `y'.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000699
700comment "Common options for cp and mv"
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +0000701 depends on CONFIG_CP || CONFIG_MV
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000702
703config CONFIG_FEATURE_PRESERVE_HARDLINKS
Rob Landley2ec922e2006-04-13 23:22:16 +0000704 bool "Preserve hard links"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000705 default n
706 depends on CONFIG_CP || CONFIG_MV
707 help
Eric Andersene5642112003-07-14 19:37:08 +0000708 Allow cp and mv to preserve hard links.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000709
Rob Landley30a6bba2006-02-06 02:49:45 +0000710comment "Common options for ls, more and telnet"
711 depends on CONFIG_LS || CONFIG_MORE || CONFIG_TELNET
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000712
713config CONFIG_FEATURE_AUTOWIDTH
Rob Landley2ec922e2006-04-13 23:22:16 +0000714 bool "Calculate terminal & column widths"
Eric Andersen727f5292003-07-26 09:33:16 +0000715 default y
Rob Landley30a6bba2006-02-06 02:49:45 +0000716 depends on CONFIG_LS || CONFIG_MORE || CONFIG_TELNET
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000717 help
Rob Landley30a6bba2006-02-06 02:49:45 +0000718 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 McGrath3238ea12003-02-15 10:53:40 +0000723
724comment "Common options for df, du, ls"
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +0000725 depends on CONFIG_DF || CONFIG_DU || CONFIG_LS
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000726
727config CONFIG_FEATURE_HUMAN_READABLE
Rob Landley2ec922e2006-04-13 23:22:16 +0000728 bool "Support for human readable output (example 13k, 23M, 235G)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000729 default n
730 depends on CONFIG_DF || CONFIG_DU || CONFIG_LS
731 help
Eric Andersene5642112003-07-14 19:37:08 +0000732 Allow df, du, and ls to have human readable output.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000733
Glenn L McGrathd2a897a2003-11-10 04:33:55 +0000734comment "Common options for md5sum, sha1sum"
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +0000735 depends on CONFIG_MD5SUM || CONFIG_SHA1SUM
Glenn L McGrathd2a897a2003-11-10 04:33:55 +0000736
737config CONFIG_FEATURE_MD5_SHA1_SUM_CHECK
Rob Landley2ec922e2006-04-13 23:22:16 +0000738 bool "Enable -c, -s and -w options"
Glenn L McGrathd2a897a2003-11-10 04:33:55 +0000739 default n
740 depends on CONFIG_MD5SUM || CONFIG_SHA1SUM
741 help
Glenn L McGrath5c0d84a2003-12-08 20:11:55 +0000742 Enabling the -c options allows files to be checked
Glenn L McGrathd2a897a2003-11-10 04:33:55 +0000743 against pre-calculated hash values.
744
Glenn L McGrath5c0d84a2003-12-08 20:11:55 +0000745 -s and -w are useful options when verifying checksums.
746
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000747endmenu