blob: 0c44c4b51451d97872157754d2d1c0a62644087a [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
Denys Vlasenkoe4070cb2010-06-04 19:59:49 +02008INSERT
Glenn L McGrath3238ea12003-02-15 10:53:40 +00009
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000010config CAL
Glenn L McGrath3238ea12003-02-15 10:53:40 +000011 bool "cal"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020012 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +000013 help
Eric Andersen88c916b2003-10-22 09:58:56 +000014 cal is used to display a monthly calender.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000015
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000016config CATV
Rob Landley8abbee42006-05-31 19:36:04 +000017 bool "catv"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020018 default y
Rob Landley8abbee42006-05-31 19:36:04 +000019 help
20 Display nonprinting characters as escape sequences (like some
21 implementations' cat -v option).
Glenn L McGrath3238ea12003-02-15 10:53:40 +000022
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000023config CHGRP
Glenn L McGrath3238ea12003-02-15 10:53:40 +000024 bool "chgrp"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020025 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +000026 help
Eric Andersen88c916b2003-10-22 09:58:56 +000027 chgrp is used to change the group ownership of files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000028
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000029config CHMOD
Glenn L McGrath3238ea12003-02-15 10:53:40 +000030 bool "chmod"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020031 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +000032 help
Eric Andersene5642112003-07-14 19:37:08 +000033 chmod is used to change the access permission of files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000034
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000035config CHOWN
Glenn L McGrath3238ea12003-02-15 10:53:40 +000036 bool "chown"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020037 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +000038 help
Eric Andersen88c916b2003-10-22 09:58:56 +000039 chown is used to change the user and/or group ownership
Eric Andersene5642112003-07-14 19:37:08 +000040 of files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000041
Matheus Izvekov31416d52010-01-21 19:30:25 -020042config FEATURE_CHOWN_LONG_OPTIONS
43 bool "Enable long options"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020044 default y
Matheus Izvekov31416d52010-01-21 19:30:25 -020045 depends on CHOWN && LONG_OPTS
46 help
47 Enable use of long options
48
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000049config CHROOT
Glenn L McGrath3238ea12003-02-15 10:53:40 +000050 bool "chroot"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020051 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +000052 help
Eric Andersene5642112003-07-14 19:37:08 +000053 chroot is used to change the root directory and run a command.
54 The default command is `/bin/sh'.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000055
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000056config CKSUM
Rob Landley856489b2006-04-18 20:57:28 +000057 bool "cksum"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020058 default y
Rob Landley856489b2006-04-18 20:57:28 +000059 help
60 cksum is used to calculate the CRC32 checksum of a file.
61
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000062config COMM
Rob Landley2acfd7b2005-05-11 23:12:49 +000063 bool "comm"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020064 default y
Rob Landley2acfd7b2005-05-11 23:12:49 +000065 help
66 comm is used to compare two files line by line and return
67 a three-column output.
68
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000069config CP
Glenn L McGrath3238ea12003-02-15 10:53:40 +000070 bool "cp"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020071 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +000072 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
Denys Vlasenko48f11612009-09-26 14:31:04 +020075config FEATURE_CP_LONG_OPTIONS
76 bool "Enable long options for cp"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020077 default y
Denys Vlasenko88a37682009-10-02 01:29:25 +020078 depends on CP && LONG_OPTS
Denys Vlasenko48f11612009-09-26 14:31:04 +020079 help
80 Enable long options for cp.
81 Also add support for --parents option.
82
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000083config CUT
Glenn L McGrath3238ea12003-02-15 10:53:40 +000084 bool "cut"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020085 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +000086 help
Eric Andersene5642112003-07-14 19:37:08 +000087 cut is used to print selected parts of lines from
88 each file to stdout.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000089
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000090config DD
Glenn L McGrath3238ea12003-02-15 10:53:40 +000091 bool "dd"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020092 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +000093 help
Eric Andersene5642112003-07-14 19:37:08 +000094 dd copies a file (from standard input to standard output,
95 by default) using specific input and output blocksizes,
Eric Andersenc7bda1c2004-03-15 08:29:22 +000096 while optionally performing conversions on it.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000097
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000098config FEATURE_DD_SIGNAL_HANDLING
Rob Landleyc5598172006-05-02 22:44:04 +000099 bool "Enable DD signal handling for status reporting"
100 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000101 depends on DD
Rob Landleyc5598172006-05-02 22:44:04 +0000102 help
Denys Vlasenko48f11612009-09-26 14:31:04 +0200103 Sending a SIGUSR1 signal to a running `dd' process makes it
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000104 print to standard error the number of records read and written
Rob Landleyc5598172006-05-02 22:44:04 +0000105 so far, then to resume copying.
106
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000107 $ dd if=/dev/zero of=/dev/null&
108 $ pid=$! kill -USR1 $pid; sleep 1; kill $pid
Gabor Heja4e5b07b2009-10-14 00:29:28 +0200109 10899206+0 records in
110 10899206+0 records out
111
112config FEATURE_DD_THIRD_STATUS_LINE
113 bool "Enable the third status line upon signal"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200114 default y
Gabor Heja4e5b07b2009-10-14 00:29:28 +0200115 depends on DD && FEATURE_DD_SIGNAL_HANDLING
116 help
117 Displays a coreutils-like third status line with transferred bytes,
118 elapsed time and speed.
Rob Landleyc5598172006-05-02 22:44:04 +0000119
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000120config FEATURE_DD_IBS_OBS
Rob Landley2686d3b2006-05-16 16:52:12 +0000121 bool "Enable ibs, obs and conv options"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200122 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000123 depends on DD
Rob Landley2686d3b2006-05-16 16:52:12 +0000124 help
125 Enables support for writing a certain number of bytes in and out,
126 at a time, and performing conversions on the data stream.
127
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000128config DF
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000129 bool "df"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200130 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000131 help
Eric Andersene5642112003-07-14 19:37:08 +0000132 df reports the amount of disk space used and available
133 on filesystems.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000134
Denis Vlasenkod66aa3c2008-08-28 22:42:52 +0000135config FEATURE_DF_FANCY
136 bool "Enable -a, -i, -B"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200137 default y
Denis Vlasenkof430cdb2007-11-15 07:02:55 +0000138 depends on DF
139 help
Denis Vlasenkod66aa3c2008-08-28 22:42:52 +0000140 This option enables -a, -i and -B.
Denis Vlasenkof430cdb2007-11-15 07:02:55 +0000141
Bernhard Reutner-Fischer1359e0d2010-02-26 18:21:42 +0100142 -a Show all filesystems
143 -i Inodes
144 -B <SIZE> Blocksize
145
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000146config DIRNAME
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000147 bool "dirname"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200148 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000149 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000150 dirname is used to strip a non-directory suffix from
Eric Andersene5642112003-07-14 19:37:08 +0000151 a file name.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000152
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000153config DOS2UNIX
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000154 bool "dos2unix/unix2dos"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200155 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000156 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000157 dos2unix is used to convert a text file from DOS format to
Eric Andersene5642112003-07-14 19:37:08 +0000158 UNIX format, and vice versa.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000159
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000160config UNIX2DOS
Eric Andersen7c512432003-06-26 21:53:51 +0000161 bool
162 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000163 depends on DOS2UNIX
Bernhard Reutner-Fischer4f7953c2006-05-05 11:55:53 +0000164 help
165 unix2dos is used to convert a text file from UNIX format to
166 DOS format, and vice versa.
Eric Andersen7c512432003-06-26 21:53:51 +0000167
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000168config DU
Manuel Novoa III cad53642003-03-19 09:13:01 +0000169 bool "du (default blocksize of 512 bytes)"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200170 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000171 help
Eric Andersene5642112003-07-14 19:37:08 +0000172 du is used to report the amount of disk space used
173 for specified files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000174
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000175config FEATURE_DU_DEFAULT_BLOCKSIZE_1K
Rob Landley2ec922e2006-04-13 23:22:16 +0000176 bool "Use a default blocksize of 1024 bytes (1K)"
Manuel Novoa III cad53642003-03-19 09:13:01 +0000177 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000178 depends on DU
Manuel Novoa III cad53642003-03-19 09:13:01 +0000179 help
Eric Andersene5642112003-07-14 19:37:08 +0000180 Use a blocksize of (1K) instead of the default 512b.
Manuel Novoa III cad53642003-03-19 09:13:01 +0000181
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000182config ECHO
Mike Frysinger7f8797c2005-09-24 23:15:28 +0000183 bool "echo (basic SuSv3 version taking no options)"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200184 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000185 help
Eric Andersene5642112003-07-14 19:37:08 +0000186 echo is used to print a specified string to stdout.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000187
Paul Fox0b621582005-08-09 19:38:05 +0000188# this entry also appears in shell/Config.in, next to the echo builtin
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000189config FEATURE_FANCY_ECHO
Rob Landley2ec922e2006-04-13 23:22:16 +0000190 bool "Enable echo options (-n and -e)"
Manuel Novoa III cad53642003-03-19 09:13:01 +0000191 default y
Denis Vlasenkodf6f95c2009-04-07 20:07:23 +0000192 depends on ECHO || ASH_BUILTIN_ECHO || HUSH
Manuel Novoa III cad53642003-03-19 09:13:01 +0000193 help
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000194 This adds options (-n and -e) to echo.
Manuel Novoa III cad53642003-03-19 09:13:01 +0000195
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000196config ENV
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000197 bool "env"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200198 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000199 help
Eric Andersene5642112003-07-14 19:37:08 +0000200 env is used to set an environment variable and run
Eric Andersen88c916b2003-10-22 09:58:56 +0000201 a command; without options it displays the current
Eric Andersene5642112003-07-14 19:37:08 +0000202 environment.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000203
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000204config FEATURE_ENV_LONG_OPTIONS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000205 bool "Enable long options"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200206 default y
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200207 depends on ENV && LONG_OPTS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000208 help
209 Support long options for the env applet.
210
Denis Vlasenko3952f202007-08-13 14:10:24 +0000211config EXPAND
212 bool "expand"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200213 default y
Denis Vlasenko3952f202007-08-13 14:10:24 +0000214 help
215 By default, convert all tabs to spaces.
216
217config FEATURE_EXPAND_LONG_OPTIONS
218 bool "Enable long options"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200219 default y
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200220 depends on EXPAND && LONG_OPTS
Denis Vlasenko3952f202007-08-13 14:10:24 +0000221 help
222 Support long options for the expand applet.
223
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000224config EXPR
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000225 bool "expr"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200226 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000227 help
Eric Andersene5642112003-07-14 19:37:08 +0000228 expr is used to calculate numbers and print the result
229 to standard output.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000230
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000231config EXPR_MATH_SUPPORT_64
Rob Landley2ec922e2006-04-13 23:22:16 +0000232 bool "Extend Posix numbers support to 64 bit"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200233 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000234 depends on EXPR
"Vladimir N. Oleynik"8aa9e572006-01-25 13:56:03 +0000235 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000236 Enable 64-bit math support in the expr applet. This will make
"Vladimir N. Oleynik"8aa9e572006-01-25 13:56:03 +0000237 the applet slightly larger, but will allow computation with very
238 large numbers.
239
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000240config FALSE
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +0000241 bool "false"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200242 default y
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +0000243 help
244 false returns an exit code of FALSE (1).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000245
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000246config FOLD
Glenn L McGrathf01b8052003-04-27 06:02:14 +0000247 bool "fold"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200248 default y
Glenn L McGrathf01b8052003-04-27 06:02:14 +0000249 help
Eric Andersene5642112003-07-14 19:37:08 +0000250 Wrap text to fit a specific width.
Glenn L McGrathf01b8052003-04-27 06:02:14 +0000251
Denys Vlasenko14f6f0a2009-06-18 08:20:02 +0200252config FSYNC
253 bool "fsync"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200254 default y
Denys Vlasenko14f6f0a2009-06-18 08:20:02 +0200255 help
256 fsync is used to flush file-related cached blocks to disk.
257
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000258config HEAD
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000259 bool "head"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200260 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000261 help
Eric Andersene5642112003-07-14 19:37:08 +0000262 head is used to print the first specified number of lines
263 from files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000264
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000265config FEATURE_FANCY_HEAD
Rob Landley2ec922e2006-04-13 23:22:16 +0000266 bool "Enable head options (-c, -q, and -v)"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200267 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000268 depends on HEAD
Manuel Novoa III cad53642003-03-19 09:13:01 +0000269 help
Eric Andersene5642112003-07-14 19:37:08 +0000270 This enables the head options (-c, -q, and -v).
Manuel Novoa III cad53642003-03-19 09:13:01 +0000271
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000272config INSTALL
Glenn L McGratheebcc1d2003-09-24 03:22:57 +0000273 bool "install"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200274 default y
Glenn L McGratheebcc1d2003-09-24 03:22:57 +0000275 help
276 Copy files and set attributes.
277
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000278config FEATURE_INSTALL_LONG_OPTIONS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000279 bool "Enable long options"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200280 default y
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200281 depends on INSTALL && LONG_OPTS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000282 help
283 Support long options for the install applet.
284
Denys Vlasenkoea023ea2011-01-26 01:21:20 +0100285####config LENGTH
286#### bool "length"
287#### default y
288#### help
289#### length is used to print out the length of a specified string.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000290
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000291config LN
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000292 bool "ln"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200293 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000294 help
Eric Andersene5642112003-07-14 19:37:08 +0000295 ln is used to create hard or soft links between files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000296
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000297config LOGNAME
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000298 bool "logname"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200299 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000300 help
Eric Andersene5642112003-07-14 19:37:08 +0000301 logname is used to print the current user's login name.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000302
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000303config LS
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000304 bool "ls"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200305 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000306 help
Eric Andersene5642112003-07-14 19:37:08 +0000307 ls is used to list the contents of directories.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000308
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000309config FEATURE_LS_FILETYPES
Rob Landley2ec922e2006-04-13 23:22:16 +0000310 bool "Enable filetyping options (-p and -F)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000311 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000312 depends on LS
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000313 help
Eric Andersene5642112003-07-14 19:37:08 +0000314 Enable the ls options (-p and -F).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000315
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000316config FEATURE_LS_FOLLOWLINKS
Rob Landley2ec922e2006-04-13 23:22:16 +0000317 bool "Enable symlinks dereferencing (-L)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000318 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000319 depends on LS
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000320 help
Eric Andersene5642112003-07-14 19:37:08 +0000321 Enable the ls option (-L).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000322
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000323config FEATURE_LS_RECURSIVE
Rob Landley2ec922e2006-04-13 23:22:16 +0000324 bool "Enable recursion (-R)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000325 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000326 depends on LS
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000327 help
Eric Andersene5642112003-07-14 19:37:08 +0000328 Enable the ls option (-R).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000329
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000330config FEATURE_LS_SORTFILES
Rob Landley2ec922e2006-04-13 23:22:16 +0000331 bool "Sort the file names"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000332 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000333 depends on LS
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000334 help
Eric Andersene5642112003-07-14 19:37:08 +0000335 Allow ls to sort file names alphabetically.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000336
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000337config FEATURE_LS_TIMESTAMPS
Rob Landley2ec922e2006-04-13 23:22:16 +0000338 bool "Show file timestamps"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000339 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000340 depends on LS
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000341 help
Eric Andersene5642112003-07-14 19:37:08 +0000342 Allow ls to display timestamps for files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000343
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000344config FEATURE_LS_USERNAME
Rob Landley2ec922e2006-04-13 23:22:16 +0000345 bool "Show username/groupnames"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000346 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000347 depends on LS
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000348 help
Eric Andersene5642112003-07-14 19:37:08 +0000349 Allow ls to display username/groupname for files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000350
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000351config FEATURE_LS_COLOR
Rob Landley2ec922e2006-04-13 23:22:16 +0000352 bool "Allow use of color to identify file types"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000353 default y
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200354 depends on LS && LONG_OPTS
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000355 help
Paul Fox156dc412005-08-01 19:33:30 +0000356 This enables the --color option to ls.
357
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000358config FEATURE_LS_COLOR_IS_DEFAULT
Rob Landley2ec922e2006-04-13 23:22:16 +0000359 bool "Produce colored ls output by default"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200360 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000361 depends on FEATURE_LS_COLOR
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +0000362 help
363 Saying yes here will turn coloring on by default,
364 even if no "--color" option is given to the ls command.
365 This is not recommended, since the colors are not
366 configurable, and the output may not be legible on
367 many output screens.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000368
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000369config MD5SUM
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000370 bool "md5sum"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200371 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000372 help
Eric Andersene5642112003-07-14 19:37:08 +0000373 md5sum is used to print or check MD5 checksums.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000374
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000375config MKDIR
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000376 bool "mkdir"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200377 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000378 help
Eric Andersene5642112003-07-14 19:37:08 +0000379 mkdir is used to create directories with the specified names.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000380
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000381config FEATURE_MKDIR_LONG_OPTIONS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000382 bool "Enable long options"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200383 default y
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200384 depends on MKDIR && LONG_OPTS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000385 help
386 Support long options for the mkdir applet.
387
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000388config MKFIFO
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000389 bool "mkfifo"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200390 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000391 help
Eric Andersene5642112003-07-14 19:37:08 +0000392 mkfifo is used to create FIFOs (named pipes).
393 The `mknod' program can also create FIFOs.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000394
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000395config MKNOD
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000396 bool "mknod"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200397 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000398 help
Eric Andersene5642112003-07-14 19:37:08 +0000399 mknod is used to create FIFOs or block/character special
400 files with the specified names.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000401
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000402config MV
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000403 bool "mv"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200404 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000405 help
Eric Andersene5642112003-07-14 19:37:08 +0000406 mv is used to move or rename files or directories.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000407
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000408config FEATURE_MV_LONG_OPTIONS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000409 bool "Enable long options"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200410 default y
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200411 depends on MV && LONG_OPTS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000412 help
413 Support long options for the mv applet.
414
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000415config NICE
Manuel Novoa III 2c511602005-02-13 20:14:05 +0000416 bool "nice"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200417 default y
Manuel Novoa III 2c511602005-02-13 20:14:05 +0000418 help
419 nice runs a program with modified scheduling priority.
420
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000421config NOHUP
Bernhard Reutner-Fischer9d7010c2005-09-21 18:25:05 +0000422 bool "nohup"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200423 default y
Bernhard Reutner-Fischer9d7010c2005-09-21 18:25:05 +0000424 help
425 run a command immune to hangups, with output to a non-tty.
426
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000427config OD
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000428 bool "od"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200429 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000430 help
Eric Andersene5642112003-07-14 19:37:08 +0000431 od is used to dump binary files in octal and other formats.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000432
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000433config PRINTENV
Mike Frysinger7f8797c2005-09-24 23:15:28 +0000434 bool "printenv"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200435 default y
Mike Frysinger7f8797c2005-09-24 23:15:28 +0000436 help
437 printenv is used to print all or part of environment.
438
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000439config PRINTF
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000440 bool "printf"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200441 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000442 help
Eric Andersene5642112003-07-14 19:37:08 +0000443 printf is used to format and print specified strings.
444 It's similar to `echo' except it has more options.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000445
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000446config PWD
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000447 bool "pwd"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200448 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000449 help
Eric Andersene5642112003-07-14 19:37:08 +0000450 pwd is used to print the current directory.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000451
Denis Vlasenkocc5e0902007-06-12 08:12:33 +0000452config READLINK
453 bool "readlink"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200454 default y
Denis Vlasenkocc5e0902007-06-12 08:12:33 +0000455 help
456 This program reads a symbolic link and returns the name
457 of the file it points to
458
459config FEATURE_READLINK_FOLLOW
460 bool "Enable canonicalization by following all symlinks (-f)"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200461 default y
Denis Vlasenkocc5e0902007-06-12 08:12:33 +0000462 depends on READLINK
463 help
464 Enable the readlink option (-f).
465
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000466config REALPATH
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000467 bool "realpath"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200468 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000469 help
470 Return the canonicalized absolute pathname.
Eric Andersen88c916b2003-10-22 09:58:56 +0000471 This isn't provided by GNU shellutils, but where else does it belong.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000472
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000473config RM
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000474 bool "rm"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200475 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000476 help
Eric Andersene5642112003-07-14 19:37:08 +0000477 rm is used to remove files or directories.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000478
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000479config RMDIR
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000480 bool "rmdir"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200481 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000482 help
Eric Andersene5642112003-07-14 19:37:08 +0000483 rmdir is used to remove empty directories.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000484
Denis Vlasenkoa2f47352008-02-24 22:45:04 +0000485config FEATURE_RMDIR_LONG_OPTIONS
486 bool "Enable long options"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200487 default y
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200488 depends on RMDIR && LONG_OPTS
Denis Vlasenkoa2f47352008-02-24 22:45:04 +0000489 help
490 Support long options for the rmdir applet, including
491 --ignore-fail-on-non-empty for compatibility with GNU rmdir.
492
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000493config SEQ
Glenn L McGrath82364bb2004-01-27 09:22:20 +0000494 bool "seq"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200495 default y
Glenn L McGrath82364bb2004-01-27 09:22:20 +0000496 help
497 print a sequence of numbers
498
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000499config SHA1SUM
Glenn L McGrathae0f1e72003-02-17 08:23:22 +0000500 bool "sha1sum"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200501 default y
Glenn L McGrathae0f1e72003-02-17 08:23:22 +0000502 help
503 Compute and check SHA1 message digest
504
Denis Vlasenko56dceb92008-11-10 13:32:50 +0000505config SHA256SUM
506 bool "sha256sum"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200507 default y
Denis Vlasenko56dceb92008-11-10 13:32:50 +0000508 help
509 Compute and check SHA256 message digest
510
511config SHA512SUM
512 bool "sha512sum"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200513 default y
Denis Vlasenko56dceb92008-11-10 13:32:50 +0000514 help
515 Compute and check SHA512 message digest
516
Lauri Kasanenb8173b62013-01-14 05:20:50 +0100517config SHA3SUM
518 bool "sha3sum"
519 default y
520 help
521 Compute and check SHA3 (512-bit) message digest
522
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000523config SLEEP
Denis Vlasenko97faf532008-07-15 22:01:49 +0000524 bool "sleep"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200525 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000526 help
Denis Vlasenko97faf532008-07-15 22:01:49 +0000527 sleep is used to pause for a specified number of seconds.
528 It comes in 3 versions:
529 - small: takes one integer parameter
530 - fancy: takes multiple integer arguments with suffixes:
531 sleep 1d 2h 3m 15s
532 - fancy with fractional numbers:
533 sleep 2.3s 4.5h sleeps for 16202.3 seconds
534 Last one is "the most compatible" with coreutils sleep,
535 but it adds around 1k of code.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000536
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000537config FEATURE_FANCY_SLEEP
Denis Vlasenko97faf532008-07-15 22:01:49 +0000538 bool "Enable multiple arguments and s/m/h/d suffixes"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200539 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000540 depends on SLEEP
Manuel Novoa III cad53642003-03-19 09:13:01 +0000541 help
Eric Andersene5642112003-07-14 19:37:08 +0000542 Allow sleep to pause for specified minutes, hours, and days.
Manuel Novoa III cad53642003-03-19 09:13:01 +0000543
Denis Vlasenko97faf532008-07-15 22:01:49 +0000544config FEATURE_FLOAT_SLEEP
545 bool "Enable fractional arguments"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200546 default y
Denis Vlasenko97faf532008-07-15 22:01:49 +0000547 depends on FEATURE_FANCY_SLEEP
548 help
549 Allow for fractional numeric parameters.
550
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000551config SORT
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000552 bool "sort"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200553 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000554 help
Eric Andersene5642112003-07-14 19:37:08 +0000555 sort is used to sort lines of text in specified files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000556
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000557config FEATURE_SORT_BIG
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000558 bool "Full SuSv3 compliant sort (support -ktcsbdfiozgM)"
Rob Landleyc0dedd02005-01-24 07:00:02 +0000559 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000560 depends on SORT
Rob Landleyc0dedd02005-01-24 07:00:02 +0000561 help
Denis Vlasenko97faf532008-07-15 22:01:49 +0000562 Without this, sort only supports -r, -u, and an integer version
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000563 of -n. Selecting this adds sort keys, floating point support, and
564 more. This adds a little over 3k to a nonstatic build on x86.
Rob Landleyc0dedd02005-01-24 07:00:02 +0000565
566 The SuSv3 sort standard is available at:
567 http://www.opengroup.org/onlinepubs/007904975/utilities/sort.html
568
Bernhard Reutner-Fischer10f8f5f2007-03-25 21:50:18 +0000569config SPLIT
570 bool "split"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200571 default y
Bernhard Reutner-Fischer10f8f5f2007-03-25 21:50:18 +0000572 help
573 split a file into pieces.
Bernhard Reutner-Fischer0a537a02007-03-28 16:48:40 +0000574
575config FEATURE_SPLIT_FANCY
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000576 bool "Fancy extensions"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200577 default y
Bernhard Reutner-Fischer0a537a02007-03-28 16:48:40 +0000578 depends on SPLIT
579 help
580 Add support for features not required by SUSv3.
581 Supports additional suffixes 'b' for 512 bytes,
582 'g' for 1GiB for the -b option.
Bernhard Reutner-Fischer10f8f5f2007-03-25 21:50:18 +0000583
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000584config STAT
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000585 bool "stat"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200586 default y
Denys Vlasenkoe3b1a1f2011-02-26 22:24:08 +0100587 select PLATFORM_LINUX # statfs()
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000588 help
589 display file or filesystem status.
590
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000591config FEATURE_STAT_FORMAT
Rob Landley2ec922e2006-04-13 23:22:16 +0000592 bool "Enable custom formats (-c)"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200593 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000594 depends on STAT
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000595 help
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000596 Without this, stat will not support the '-c format' option where
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000597 users can pass a custom format string for output. This adds about
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000598 7k to a nonstatic build on amd64.
599
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000600config STTY
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000601 bool "stty"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200602 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000603 help
Eric Andersene5642112003-07-14 19:37:08 +0000604 stty is used to change and print terminal line settings.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000605
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000606config SUM
Mike Frysinger4a211702005-04-21 23:24:46 +0000607 bool "sum"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200608 default y
Mike Frysinger4a211702005-04-21 23:24:46 +0000609 help
610 checksum and count the blocks in a file
611
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000612config SYNC
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000613 bool "sync"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200614 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000615 help
Eric Andersene5642112003-07-14 19:37:08 +0000616 sync is used to flush filesystem buffers.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000617
Denis Vlasenkobcd5fc12008-01-06 06:27:17 +0000618config TAC
619 bool "tac"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200620 default y
Denis Vlasenkobcd5fc12008-01-06 06:27:17 +0000621 help
622 tac is used to concatenate and print files in reverse.
623
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000624config TAIL
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000625 bool "tail"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200626 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000627 help
Eric Andersene5642112003-07-14 19:37:08 +0000628 tail is used to print the last specified number of lines
629 from files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000630
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000631config FEATURE_FANCY_TAIL
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200632 bool "Enable extra tail options (-q, -s, -v, and -F)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000633 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000634 depends on TAIL
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000635 help
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000636 The options (-q, -s, and -v) are provided by GNU tail, but
637 are not specific in the SUSv3 standard.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000638
Bernhard Reutner-Fischer836f3632010-02-26 18:33:39 +0100639 -q Never output headers giving file names
640 -s SEC Wait SEC seconds between reads with -f
641 -v Always output headers giving file names
642
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000643config TEE
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000644 bool "tee"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200645 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000646 help
Eric Andersene5642112003-07-14 19:37:08 +0000647 tee is used to read from standard input and write
648 to standard output and files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000649
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000650config FEATURE_TEE_USE_BLOCK_IO
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000651 bool "Enable block I/O (larger/faster) instead of byte I/O"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200652 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000653 depends on TEE
Manuel Novoa III cad53642003-03-19 09:13:01 +0000654 help
Eric Andersene5642112003-07-14 19:37:08 +0000655 Enable this option for a faster tee, at expense of size.
Manuel Novoa III cad53642003-03-19 09:13:01 +0000656
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000657config TRUE
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +0000658 bool "true"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200659 default y
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +0000660 help
661 true returns an exit code of TRUE (0).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000662
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000663config TTY
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000664 bool "tty"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200665 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000666 help
Eric Andersene5642112003-07-14 19:37:08 +0000667 tty is used to print the name of the current terminal to
668 standard output.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000669
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000670config UNAME
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000671 bool "uname"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200672 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000673 help
Eric Andersene5642112003-07-14 19:37:08 +0000674 uname is used to print system information.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000675
Denis Vlasenko3952f202007-08-13 14:10:24 +0000676config UNEXPAND
677 bool "unexpand"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200678 default y
Denis Vlasenko3952f202007-08-13 14:10:24 +0000679 help
680 By default, convert only leading sequences of blanks to tabs.
681
682config FEATURE_UNEXPAND_LONG_OPTIONS
683 bool "Enable long options"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200684 default y
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200685 depends on UNEXPAND && LONG_OPTS
Denis Vlasenko3952f202007-08-13 14:10:24 +0000686 help
687 Support long options for the unexpand applet.
688
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000689config UNIQ
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000690 bool "uniq"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200691 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000692 help
Eric Andersene5642112003-07-14 19:37:08 +0000693 uniq is used to remove duplicate lines from a sorted file.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000694
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000695config USLEEP
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000696 bool "usleep"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200697 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000698 help
Eric Andersene5642112003-07-14 19:37:08 +0000699 usleep is used to pause for a specified number of microseconds.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000700
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000701config UUDECODE
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000702 bool "uudecode"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200703 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000704 help
Eric Andersene5642112003-07-14 19:37:08 +0000705 uudecode is used to decode a uuencoded file.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000706
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000707config UUENCODE
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000708 bool "uuencode"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200709 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000710 help
Eric Andersene5642112003-07-14 19:37:08 +0000711 uuencode is used to uuencode a file.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000712
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000713config WC
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000714 bool "wc"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200715 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000716 help
Eric Andersene5642112003-07-14 19:37:08 +0000717 wc is used to print the number of bytes, words, and lines,
718 in specified files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000719
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000720config FEATURE_WC_LARGE
Denis Vlasenko70210162006-09-29 23:41:59 +0000721 bool "Support very large files in wc"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200722 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000723 depends on WC
Denis Vlasenko70210162006-09-29 23:41:59 +0000724 help
Bernhard Reutner-Fischerbb5f8ed2009-02-14 12:13:13 +0000725 Use "unsigned long long" in wc for counter variables.
Denis Vlasenko70210162006-09-29 23:41:59 +0000726
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000727config WHOAMI
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000728 bool "whoami"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200729 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000730 help
Eric Andersene5642112003-07-14 19:37:08 +0000731 whoami is used to print the username of the current
732 user id (same as id -un).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000733
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000734config YES
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000735 bool "yes"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200736 default y
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000737 help
Eric Andersene5642112003-07-14 19:37:08 +0000738 yes is used to repeatedly output a specific string, or
739 the default string `y'.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000740
741comment "Common options for cp and mv"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000742 depends on CP || MV
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000743
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000744config FEATURE_PRESERVE_HARDLINKS
Rob Landley2ec922e2006-04-13 23:22:16 +0000745 bool "Preserve hard links"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200746 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000747 depends on CP || MV
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000748 help
Eric Andersene5642112003-07-14 19:37:08 +0000749 Allow cp and mv to preserve hard links.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000750
Rob Landley30a6bba2006-02-06 02:49:45 +0000751comment "Common options for ls, more and telnet"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000752 depends on LS || MORE || TELNET
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000753
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000754config FEATURE_AUTOWIDTH
Rob Landley2ec922e2006-04-13 23:22:16 +0000755 bool "Calculate terminal & column widths"
Eric Andersen727f5292003-07-26 09:33:16 +0000756 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000757 depends on LS || MORE || TELNET
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000758 help
Rob Landley30a6bba2006-02-06 02:49:45 +0000759 This option allows utilities such as 'ls', 'more' and 'telnet'
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000760 to determine the width of the screen, which can allow them to
Rob Landley30a6bba2006-02-06 02:49:45 +0000761 display additional text or avoid wrapping text onto the next line.
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000762 If you leave this disabled, your utilities will be especially
Rob Landley30a6bba2006-02-06 02:49:45 +0000763 primitive and will be unable to determine the current screen width.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000764
765comment "Common options for df, du, ls"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000766 depends on DF || DU || LS
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000767
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000768config FEATURE_HUMAN_READABLE
Rob Landley2ec922e2006-04-13 23:22:16 +0000769 bool "Support for human readable output (example 13k, 23M, 235G)"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200770 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000771 depends on DF || DU || LS
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000772 help
Eric Andersene5642112003-07-14 19:37:08 +0000773 Allow df, du, and ls to have human readable output.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000774
Lauri Kasanenb8173b62013-01-14 05:20:50 +0100775comment "Common options for md5sum, sha1sum, sha256sum, sha512sum, sha3sum"
776 depends on MD5SUM || SHA1SUM || SHA256SUM || SHA512SUM || SHA3SUM
Glenn L McGrathd2a897a2003-11-10 04:33:55 +0000777
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000778config FEATURE_MD5_SHA1_SUM_CHECK
Rob Landley2ec922e2006-04-13 23:22:16 +0000779 bool "Enable -c, -s and -w options"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200780 default y
Lauri Kasanenb8173b62013-01-14 05:20:50 +0100781 depends on MD5SUM || SHA1SUM || SHA256SUM || SHA512SUM || SHA3SUM
Glenn L McGrathd2a897a2003-11-10 04:33:55 +0000782 help
Glenn L McGrath5c0d84a2003-12-08 20:11:55 +0000783 Enabling the -c options allows files to be checked
Glenn L McGrathd2a897a2003-11-10 04:33:55 +0000784 against pre-calculated hash values.
785
Glenn L McGrath5c0d84a2003-12-08 20:11:55 +0000786 -s and -w are useful options when verifying checksums.
787
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000788endmenu