blob: ead632a312c14f69739ef671409a4a9a421ce3ff [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
Denis Vlasenko7d219aa2006-10-05 10:17:08 +00008config BASENAME
Glenn L McGrath3238ea12003-02-15 10:53:40 +00009 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,
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +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
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000016config CAL
Glenn L McGrath3238ea12003-02-15 10:53:40 +000017 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
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000022config CAT
Glenn L McGrath3238ea12003-02-15 10:53:40 +000023 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
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +000027 output. Enable this option if you wish to enable the 'cat' utility.
Rob Landleyeb29d6c2006-06-06 22:59:37 +000028
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000029config CATV
Rob Landley8abbee42006-05-31 19:36:04 +000030 bool "catv"
31 default n
32 help
33 Display nonprinting characters as escape sequences (like some
34 implementations' cat -v option).
Glenn L McGrath3238ea12003-02-15 10:53:40 +000035
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000036config CHGRP
Glenn L McGrath3238ea12003-02-15 10:53:40 +000037 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
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000042config CHMOD
Glenn L McGrath3238ea12003-02-15 10:53:40 +000043 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
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000048config CHOWN
Glenn L McGrath3238ea12003-02-15 10:53:40 +000049 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
Matheus Izvekov31416d52010-01-21 19:30:25 -020055config FEATURE_CHOWN_LONG_OPTIONS
56 bool "Enable long options"
57 default n
58 depends on CHOWN && LONG_OPTS
59 help
60 Enable use of long options
61
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000062config CHROOT
Glenn L McGrath3238ea12003-02-15 10:53:40 +000063 bool "chroot"
64 default n
65 help
Eric Andersene5642112003-07-14 19:37:08 +000066 chroot is used to change the root directory and run a command.
67 The default command is `/bin/sh'.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000068
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000069config CKSUM
Rob Landley856489b2006-04-18 20:57:28 +000070 bool "cksum"
71 default n
72 help
73 cksum is used to calculate the CRC32 checksum of a file.
74
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000075config COMM
Rob Landley2acfd7b2005-05-11 23:12:49 +000076 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
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000082config CP
Glenn L McGrath3238ea12003-02-15 10:53:40 +000083 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
Denys Vlasenko48f11612009-09-26 14:31:04 +020088config FEATURE_CP_LONG_OPTIONS
89 bool "Enable long options for cp"
90 default n
Denys Vlasenko88a37682009-10-02 01:29:25 +020091 depends on CP && LONG_OPTS
Denys Vlasenko48f11612009-09-26 14:31:04 +020092 help
93 Enable long options for cp.
94 Also add support for --parents option.
95
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000096config CUT
Glenn L McGrath3238ea12003-02-15 10:53:40 +000097 bool "cut"
98 default n
99 help
Eric Andersene5642112003-07-14 19:37:08 +0000100 cut is used to print selected parts of lines from
101 each file to stdout.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000102
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000103config DATE
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +0000104 bool "date"
105 default n
106 help
107 date is used to set the system date or display the
108 current time in the given format.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000109
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000110config FEATURE_DATE_ISOFMT
Rob Landley2ec922e2006-04-13 23:22:16 +0000111 bool "Enable ISO date format output (-I)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000112 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000113 depends on DATE
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000114 help
Eric Andersen65e20a32003-07-05 07:52:35 +0000115 Enable option (-I) to output an ISO-8601 compliant
116 date/time string.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000117
Denys Vlasenko5da9f962010-01-23 23:37:52 +0100118config FEATURE_DATE_COMPAT
119 bool "Support weird 'date MMDDhhmm[[YY]YY][.ss]' format"
120 default y
121 depends on DATE
122 help
123 System time can be set by 'date -s DATE' and simply 'date DATE',
124 but formats of DATE string are different. 'date DATE' accepts
125 a rather weird MMDDhhmm[[YY]YY][.ss] format with completely
126 unnatural placement of year between minutes and seconds.
127 date -s (and other commands like touch -d) use more sensible
128 formats (for one, ISO format YYYY-MM-DD hh:mm:ss.ssssss).
129
130 With this option off, 'date DATE' is 'date -s DATE' support
131 the same format. With it on, 'date DATE' additionally supports
132 MMDDhhmm[[YY]YY][.ss] format.
133
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000134config DD
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000135 bool "dd"
136 default n
137 help
Eric Andersene5642112003-07-14 19:37:08 +0000138 dd copies a file (from standard input to standard output,
139 by default) using specific input and output blocksizes,
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000140 while optionally performing conversions on it.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000141
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000142config FEATURE_DD_SIGNAL_HANDLING
Rob Landleyc5598172006-05-02 22:44:04 +0000143 bool "Enable DD signal handling for status reporting"
144 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000145 depends on DD
Rob Landleyc5598172006-05-02 22:44:04 +0000146 help
Denys Vlasenko48f11612009-09-26 14:31:04 +0200147 Sending a SIGUSR1 signal to a running `dd' process makes it
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000148 print to standard error the number of records read and written
Rob Landleyc5598172006-05-02 22:44:04 +0000149 so far, then to resume copying.
150
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000151 $ dd if=/dev/zero of=/dev/null&
152 $ pid=$! kill -USR1 $pid; sleep 1; kill $pid
Gabor Heja4e5b07b2009-10-14 00:29:28 +0200153 10899206+0 records in
154 10899206+0 records out
155
156config FEATURE_DD_THIRD_STATUS_LINE
157 bool "Enable the third status line upon signal"
158 default n
159 depends on DD && FEATURE_DD_SIGNAL_HANDLING
160 help
161 Displays a coreutils-like third status line with transferred bytes,
162 elapsed time and speed.
Rob Landleyc5598172006-05-02 22:44:04 +0000163
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000164config FEATURE_DD_IBS_OBS
Rob Landley2686d3b2006-05-16 16:52:12 +0000165 bool "Enable ibs, obs and conv options"
166 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000167 depends on DD
Rob Landley2686d3b2006-05-16 16:52:12 +0000168 help
169 Enables support for writing a certain number of bytes in and out,
170 at a time, and performing conversions on the data stream.
171
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000172config DF
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000173 bool "df"
174 default n
175 help
Eric Andersene5642112003-07-14 19:37:08 +0000176 df reports the amount of disk space used and available
177 on filesystems.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000178
Denis Vlasenkod66aa3c2008-08-28 22:42:52 +0000179config FEATURE_DF_FANCY
180 bool "Enable -a, -i, -B"
Denis Vlasenkof430cdb2007-11-15 07:02:55 +0000181 default n
182 depends on DF
183 help
Denis Vlasenkod66aa3c2008-08-28 22:42:52 +0000184 This option enables -a, -i and -B.
Denis Vlasenkof430cdb2007-11-15 07:02:55 +0000185
Bernhard Reutner-Fischer1359e0d2010-02-26 18:21:42 +0100186 -a Show all filesystems
187 -i Inodes
188 -B <SIZE> Blocksize
189
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000190config DIRNAME
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000191 bool "dirname"
192 default n
193 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000194 dirname is used to strip a non-directory suffix from
Eric Andersene5642112003-07-14 19:37:08 +0000195 a file name.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000196
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000197config DOS2UNIX
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000198 bool "dos2unix/unix2dos"
199 default n
200 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000201 dos2unix is used to convert a text file from DOS format to
Eric Andersene5642112003-07-14 19:37:08 +0000202 UNIX format, and vice versa.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000203
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000204config UNIX2DOS
Eric Andersen7c512432003-06-26 21:53:51 +0000205 bool
206 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000207 depends on DOS2UNIX
Bernhard Reutner-Fischer4f7953c2006-05-05 11:55:53 +0000208 help
209 unix2dos is used to convert a text file from UNIX format to
210 DOS format, and vice versa.
Eric Andersen7c512432003-06-26 21:53:51 +0000211
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000212config DU
Manuel Novoa III cad53642003-03-19 09:13:01 +0000213 bool "du (default blocksize of 512 bytes)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000214 default n
215 help
Eric Andersene5642112003-07-14 19:37:08 +0000216 du is used to report the amount of disk space used
217 for specified files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000218
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000219config FEATURE_DU_DEFAULT_BLOCKSIZE_1K
Rob Landley2ec922e2006-04-13 23:22:16 +0000220 bool "Use a default blocksize of 1024 bytes (1K)"
Manuel Novoa III cad53642003-03-19 09:13:01 +0000221 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000222 depends on DU
Manuel Novoa III cad53642003-03-19 09:13:01 +0000223 help
Eric Andersene5642112003-07-14 19:37:08 +0000224 Use a blocksize of (1K) instead of the default 512b.
Manuel Novoa III cad53642003-03-19 09:13:01 +0000225
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000226config ECHO
Mike Frysinger7f8797c2005-09-24 23:15:28 +0000227 bool "echo (basic SuSv3 version taking no options)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000228 default n
229 help
Eric Andersene5642112003-07-14 19:37:08 +0000230 echo is used to print a specified string to stdout.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000231
Paul Fox0b621582005-08-09 19:38:05 +0000232# this entry also appears in shell/Config.in, next to the echo builtin
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000233config FEATURE_FANCY_ECHO
Rob Landley2ec922e2006-04-13 23:22:16 +0000234 bool "Enable echo options (-n and -e)"
Manuel Novoa III cad53642003-03-19 09:13:01 +0000235 default y
Denis Vlasenkodf6f95c2009-04-07 20:07:23 +0000236 depends on ECHO || ASH_BUILTIN_ECHO || HUSH
Manuel Novoa III cad53642003-03-19 09:13:01 +0000237 help
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000238 This adds options (-n and -e) to echo.
Manuel Novoa III cad53642003-03-19 09:13:01 +0000239
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000240config ENV
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000241 bool "env"
242 default n
243 help
Eric Andersene5642112003-07-14 19:37:08 +0000244 env is used to set an environment variable and run
Eric Andersen88c916b2003-10-22 09:58:56 +0000245 a command; without options it displays the current
Eric Andersene5642112003-07-14 19:37:08 +0000246 environment.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000247
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000248config FEATURE_ENV_LONG_OPTIONS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000249 bool "Enable long options"
250 default n
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200251 depends on ENV && LONG_OPTS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000252 help
253 Support long options for the env applet.
254
Denis Vlasenko3952f202007-08-13 14:10:24 +0000255config EXPAND
256 bool "expand"
257 default n
258 help
259 By default, convert all tabs to spaces.
260
261config FEATURE_EXPAND_LONG_OPTIONS
262 bool "Enable long options"
263 default n
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200264 depends on EXPAND && LONG_OPTS
Denis Vlasenko3952f202007-08-13 14:10:24 +0000265 help
266 Support long options for the expand applet.
267
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000268config EXPR
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000269 bool "expr"
270 default n
271 help
Eric Andersene5642112003-07-14 19:37:08 +0000272 expr is used to calculate numbers and print the result
273 to standard output.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000274
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000275config EXPR_MATH_SUPPORT_64
Rob Landley2ec922e2006-04-13 23:22:16 +0000276 bool "Extend Posix numbers support to 64 bit"
"Vladimir N. Oleynik"8aa9e572006-01-25 13:56:03 +0000277 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000278 depends on EXPR
"Vladimir N. Oleynik"8aa9e572006-01-25 13:56:03 +0000279 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000280 Enable 64-bit math support in the expr applet. This will make
"Vladimir N. Oleynik"8aa9e572006-01-25 13:56:03 +0000281 the applet slightly larger, but will allow computation with very
282 large numbers.
283
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000284config FALSE
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +0000285 bool "false"
286 default n
287 help
288 false returns an exit code of FALSE (1).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000289
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000290config FOLD
Glenn L McGrathf01b8052003-04-27 06:02:14 +0000291 bool "fold"
292 default n
293 help
Eric Andersene5642112003-07-14 19:37:08 +0000294 Wrap text to fit a specific width.
Glenn L McGrathf01b8052003-04-27 06:02:14 +0000295
Denys Vlasenko14f6f0a2009-06-18 08:20:02 +0200296config FSYNC
297 bool "fsync"
298 default n
299 help
300 fsync is used to flush file-related cached blocks to disk.
301
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000302config HEAD
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000303 bool "head"
304 default n
305 help
Eric Andersene5642112003-07-14 19:37:08 +0000306 head is used to print the first specified number of lines
307 from files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000308
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000309config FEATURE_FANCY_HEAD
Rob Landley2ec922e2006-04-13 23:22:16 +0000310 bool "Enable head options (-c, -q, and -v)"
Manuel Novoa III cad53642003-03-19 09:13:01 +0000311 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000312 depends on HEAD
Manuel Novoa III cad53642003-03-19 09:13:01 +0000313 help
Eric Andersene5642112003-07-14 19:37:08 +0000314 This enables the head options (-c, -q, and -v).
Manuel Novoa III cad53642003-03-19 09:13:01 +0000315
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000316config HOSTID
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000317 bool "hostid"
318 default n
319 help
Eric Andersene5642112003-07-14 19:37:08 +0000320 hostid prints the numeric identifier (in hexadecimal) for
321 the current host.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000322
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000323config ID
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000324 bool "id"
325 default n
326 help
Eric Andersene5642112003-07-14 19:37:08 +0000327 id displays the current user and group ID names.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000328
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000329config INSTALL
Glenn L McGratheebcc1d2003-09-24 03:22:57 +0000330 bool "install"
331 default n
332 help
333 Copy files and set attributes.
334
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000335config FEATURE_INSTALL_LONG_OPTIONS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000336 bool "Enable long options"
337 default n
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200338 depends on INSTALL && LONG_OPTS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000339 help
340 Support long options for the install applet.
341
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000342config LENGTH
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000343 bool "length"
344 default n
345 help
Eric Andersene5642112003-07-14 19:37:08 +0000346 length is used to print out the length of a specified string.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000347
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000348config LN
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000349 bool "ln"
350 default n
351 help
Eric Andersene5642112003-07-14 19:37:08 +0000352 ln is used to create hard or soft links between files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000353
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000354config LOGNAME
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000355 bool "logname"
356 default n
357 help
Eric Andersene5642112003-07-14 19:37:08 +0000358 logname is used to print the current user's login name.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000359
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000360config LS
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000361 bool "ls"
362 default n
363 help
Eric Andersene5642112003-07-14 19:37:08 +0000364 ls is used to list the contents of directories.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000365
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000366config FEATURE_LS_FILETYPES
Rob Landley2ec922e2006-04-13 23:22:16 +0000367 bool "Enable filetyping options (-p and -F)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000368 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000369 depends on LS
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000370 help
Eric Andersene5642112003-07-14 19:37:08 +0000371 Enable the ls options (-p and -F).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000372
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000373config FEATURE_LS_FOLLOWLINKS
Rob Landley2ec922e2006-04-13 23:22:16 +0000374 bool "Enable symlinks dereferencing (-L)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000375 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000376 depends on LS
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000377 help
Eric Andersene5642112003-07-14 19:37:08 +0000378 Enable the ls option (-L).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000379
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000380config FEATURE_LS_RECURSIVE
Rob Landley2ec922e2006-04-13 23:22:16 +0000381 bool "Enable recursion (-R)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000382 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000383 depends on LS
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000384 help
Eric Andersene5642112003-07-14 19:37:08 +0000385 Enable the ls option (-R).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000386
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000387config FEATURE_LS_SORTFILES
Rob Landley2ec922e2006-04-13 23:22:16 +0000388 bool "Sort the file names"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000389 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000390 depends on LS
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000391 help
Eric Andersene5642112003-07-14 19:37:08 +0000392 Allow ls to sort file names alphabetically.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000393
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000394config FEATURE_LS_TIMESTAMPS
Rob Landley2ec922e2006-04-13 23:22:16 +0000395 bool "Show file timestamps"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000396 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000397 depends on LS
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000398 help
Eric Andersene5642112003-07-14 19:37:08 +0000399 Allow ls to display timestamps for files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000400
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000401config FEATURE_LS_USERNAME
Rob Landley2ec922e2006-04-13 23:22:16 +0000402 bool "Show username/groupnames"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000403 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000404 depends on LS
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000405 help
Eric Andersene5642112003-07-14 19:37:08 +0000406 Allow ls to display username/groupname for files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000407
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000408config FEATURE_LS_COLOR
Rob Landley2ec922e2006-04-13 23:22:16 +0000409 bool "Allow use of color to identify file types"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000410 default y
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200411 depends on LS && LONG_OPTS
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000412 help
Paul Fox156dc412005-08-01 19:33:30 +0000413 This enables the --color option to ls.
414
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000415config FEATURE_LS_COLOR_IS_DEFAULT
Rob Landley2ec922e2006-04-13 23:22:16 +0000416 bool "Produce colored ls output by default"
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +0000417 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000418 depends on FEATURE_LS_COLOR
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +0000419 help
420 Saying yes here will turn coloring on by default,
421 even if no "--color" option is given to the ls command.
422 This is not recommended, since the colors are not
423 configurable, and the output may not be legible on
424 many output screens.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000425
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000426config MD5SUM
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000427 bool "md5sum"
428 default n
429 help
Eric Andersene5642112003-07-14 19:37:08 +0000430 md5sum is used to print or check MD5 checksums.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000431
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000432config MKDIR
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000433 bool "mkdir"
434 default n
435 help
Eric Andersene5642112003-07-14 19:37:08 +0000436 mkdir is used to create directories with the specified names.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000437
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000438config FEATURE_MKDIR_LONG_OPTIONS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000439 bool "Enable long options"
440 default n
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200441 depends on MKDIR && LONG_OPTS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000442 help
443 Support long options for the mkdir applet.
444
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000445config MKFIFO
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000446 bool "mkfifo"
447 default n
448 help
Eric Andersene5642112003-07-14 19:37:08 +0000449 mkfifo is used to create FIFOs (named pipes).
450 The `mknod' program can also create FIFOs.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000451
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000452config MKNOD
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000453 bool "mknod"
454 default n
455 help
Eric Andersene5642112003-07-14 19:37:08 +0000456 mknod is used to create FIFOs or block/character special
457 files with the specified names.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000458
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000459config MV
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000460 bool "mv"
461 default n
462 help
Eric Andersene5642112003-07-14 19:37:08 +0000463 mv is used to move or rename files or directories.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000464
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000465config FEATURE_MV_LONG_OPTIONS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000466 bool "Enable long options"
467 default n
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200468 depends on MV && LONG_OPTS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000469 help
470 Support long options for the mv applet.
471
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000472config NICE
Manuel Novoa III 2c511602005-02-13 20:14:05 +0000473 bool "nice"
474 default n
475 help
476 nice runs a program with modified scheduling priority.
477
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000478config NOHUP
Bernhard Reutner-Fischer9d7010c2005-09-21 18:25:05 +0000479 bool "nohup"
480 default n
481 help
482 run a command immune to hangups, with output to a non-tty.
483
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000484config OD
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000485 bool "od"
486 default n
487 help
Eric Andersene5642112003-07-14 19:37:08 +0000488 od is used to dump binary files in octal and other formats.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000489
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000490config PRINTENV
Mike Frysinger7f8797c2005-09-24 23:15:28 +0000491 bool "printenv"
492 default n
493 help
494 printenv is used to print all or part of environment.
495
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000496config PRINTF
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000497 bool "printf"
498 default n
499 help
Eric Andersene5642112003-07-14 19:37:08 +0000500 printf is used to format and print specified strings.
501 It's similar to `echo' except it has more options.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000502
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000503config PWD
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000504 bool "pwd"
505 default n
506 help
Eric Andersene5642112003-07-14 19:37:08 +0000507 pwd is used to print the current directory.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000508
Denis Vlasenkocc5e0902007-06-12 08:12:33 +0000509config READLINK
510 bool "readlink"
511 default n
512 help
513 This program reads a symbolic link and returns the name
514 of the file it points to
515
516config FEATURE_READLINK_FOLLOW
517 bool "Enable canonicalization by following all symlinks (-f)"
518 default n
519 depends on READLINK
520 help
521 Enable the readlink option (-f).
522
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000523config REALPATH
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000524 bool "realpath"
525 default n
526 help
527 Return the canonicalized absolute pathname.
Eric Andersen88c916b2003-10-22 09:58:56 +0000528 This isn't provided by GNU shellutils, but where else does it belong.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000529
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000530config RM
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000531 bool "rm"
532 default n
533 help
Eric Andersene5642112003-07-14 19:37:08 +0000534 rm is used to remove files or directories.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000535
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000536config RMDIR
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000537 bool "rmdir"
538 default n
539 help
Eric Andersene5642112003-07-14 19:37:08 +0000540 rmdir is used to remove empty directories.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000541
Denis Vlasenkoa2f47352008-02-24 22:45:04 +0000542config FEATURE_RMDIR_LONG_OPTIONS
543 bool "Enable long options"
544 default n
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200545 depends on RMDIR && LONG_OPTS
Denis Vlasenkoa2f47352008-02-24 22:45:04 +0000546 help
547 Support long options for the rmdir applet, including
548 --ignore-fail-on-non-empty for compatibility with GNU rmdir.
549
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000550config SEQ
Glenn L McGrath82364bb2004-01-27 09:22:20 +0000551 bool "seq"
552 default n
553 help
554 print a sequence of numbers
555
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000556config SHA1SUM
Glenn L McGrathae0f1e72003-02-17 08:23:22 +0000557 bool "sha1sum"
558 default n
559 help
560 Compute and check SHA1 message digest
561
Denis Vlasenko56dceb92008-11-10 13:32:50 +0000562config SHA256SUM
563 bool "sha256sum"
564 default n
565 help
566 Compute and check SHA256 message digest
567
568config SHA512SUM
569 bool "sha512sum"
570 default n
571 help
572 Compute and check SHA512 message digest
573
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000574config SLEEP
Denis Vlasenko97faf532008-07-15 22:01:49 +0000575 bool "sleep"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000576 default n
577 help
Denis Vlasenko97faf532008-07-15 22:01:49 +0000578 sleep is used to pause for a specified number of seconds.
579 It comes in 3 versions:
580 - small: takes one integer parameter
581 - fancy: takes multiple integer arguments with suffixes:
582 sleep 1d 2h 3m 15s
583 - fancy with fractional numbers:
584 sleep 2.3s 4.5h sleeps for 16202.3 seconds
585 Last one is "the most compatible" with coreutils sleep,
586 but it adds around 1k of code.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000587
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000588config FEATURE_FANCY_SLEEP
Denis Vlasenko97faf532008-07-15 22:01:49 +0000589 bool "Enable multiple arguments and s/m/h/d suffixes"
Manuel Novoa III cad53642003-03-19 09:13:01 +0000590 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000591 depends on SLEEP
Manuel Novoa III cad53642003-03-19 09:13:01 +0000592 help
Eric Andersene5642112003-07-14 19:37:08 +0000593 Allow sleep to pause for specified minutes, hours, and days.
Manuel Novoa III cad53642003-03-19 09:13:01 +0000594
Denis Vlasenko97faf532008-07-15 22:01:49 +0000595config FEATURE_FLOAT_SLEEP
596 bool "Enable fractional arguments"
597 default n
598 depends on FEATURE_FANCY_SLEEP
599 help
600 Allow for fractional numeric parameters.
601
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000602config SORT
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000603 bool "sort"
604 default n
605 help
Eric Andersene5642112003-07-14 19:37:08 +0000606 sort is used to sort lines of text in specified files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000607
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000608config FEATURE_SORT_BIG
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000609 bool "Full SuSv3 compliant sort (support -ktcsbdfiozgM)"
Rob Landleyc0dedd02005-01-24 07:00:02 +0000610 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000611 depends on SORT
Rob Landleyc0dedd02005-01-24 07:00:02 +0000612 help
Denis Vlasenko97faf532008-07-15 22:01:49 +0000613 Without this, sort only supports -r, -u, and an integer version
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000614 of -n. Selecting this adds sort keys, floating point support, and
615 more. This adds a little over 3k to a nonstatic build on x86.
Rob Landleyc0dedd02005-01-24 07:00:02 +0000616
617 The SuSv3 sort standard is available at:
618 http://www.opengroup.org/onlinepubs/007904975/utilities/sort.html
619
Bernhard Reutner-Fischer10f8f5f2007-03-25 21:50:18 +0000620config SPLIT
621 bool "split"
622 default n
623 help
624 split a file into pieces.
Bernhard Reutner-Fischer0a537a02007-03-28 16:48:40 +0000625
626config FEATURE_SPLIT_FANCY
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000627 bool "Fancy extensions"
Bernhard Reutner-Fischer0a537a02007-03-28 16:48:40 +0000628 default n
629 depends on SPLIT
630 help
631 Add support for features not required by SUSv3.
632 Supports additional suffixes 'b' for 512 bytes,
633 'g' for 1GiB for the -b option.
Bernhard Reutner-Fischer10f8f5f2007-03-25 21:50:18 +0000634
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000635config STAT
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000636 bool "stat"
637 default n
638 help
639 display file or filesystem status.
640
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000641config FEATURE_STAT_FORMAT
Rob Landley2ec922e2006-04-13 23:22:16 +0000642 bool "Enable custom formats (-c)"
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000643 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000644 depends on STAT
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000645 help
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000646 Without this, stat will not support the '-c format' option where
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000647 users can pass a custom format string for output. This adds about
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000648 7k to a nonstatic build on amd64.
649
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000650config STTY
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000651 bool "stty"
652 default n
653 help
Eric Andersene5642112003-07-14 19:37:08 +0000654 stty is used to change and print terminal line settings.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000655
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000656config SUM
Mike Frysinger4a211702005-04-21 23:24:46 +0000657 bool "sum"
658 default n
659 help
660 checksum and count the blocks in a file
661
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000662config SYNC
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000663 bool "sync"
664 default n
665 help
Eric Andersene5642112003-07-14 19:37:08 +0000666 sync is used to flush filesystem buffers.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000667
Denis Vlasenkobcd5fc12008-01-06 06:27:17 +0000668config TAC
669 bool "tac"
670 default n
671 help
672 tac is used to concatenate and print files in reverse.
673
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000674config TAIL
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000675 bool "tail"
676 default n
677 help
Eric Andersene5642112003-07-14 19:37:08 +0000678 tail is used to print the last specified number of lines
679 from files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000680
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000681config FEATURE_FANCY_TAIL
Eric Lammerts3b5a6642009-07-22 00:31:27 +0200682 bool "Enable extra tail options (-q, -s, -v, and -F)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000683 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000684 depends on TAIL
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000685 help
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000686 The options (-q, -s, and -v) are provided by GNU tail, but
687 are not specific in the SUSv3 standard.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000688
Bernhard Reutner-Fischer836f3632010-02-26 18:33:39 +0100689 -q Never output headers giving file names
690 -s SEC Wait SEC seconds between reads with -f
691 -v Always output headers giving file names
692
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000693config TEE
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000694 bool "tee"
695 default n
696 help
Eric Andersene5642112003-07-14 19:37:08 +0000697 tee is used to read from standard input and write
698 to standard output and files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000699
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000700config FEATURE_TEE_USE_BLOCK_IO
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000701 bool "Enable block I/O (larger/faster) instead of byte I/O"
Manuel Novoa III cad53642003-03-19 09:13:01 +0000702 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000703 depends on TEE
Manuel Novoa III cad53642003-03-19 09:13:01 +0000704 help
Eric Andersene5642112003-07-14 19:37:08 +0000705 Enable this option for a faster tee, at expense of size.
Manuel Novoa III cad53642003-03-19 09:13:01 +0000706
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000707config TEST
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +0000708 bool "test"
709 default n
710 help
711 test is used to check file types and compare values,
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000712 returning an appropriate exit code. The bash shell
Paul Fox6ab03782006-06-08 21:37:26 +0000713 has test built in, ash can build it in optionally.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000714
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000715config FEATURE_TEST_64
Rob Landley2ec922e2006-04-13 23:22:16 +0000716 bool "Extend test to 64 bit"
Glenn L McGrath73db8be2004-08-11 02:45:47 +0000717 default n
Denys Vlasenkod30b89c2009-06-26 01:55:45 +0200718 depends on TEST || ASH_BUILTIN_TEST || HUSH
Glenn L McGrath73db8be2004-08-11 02:45:47 +0000719 help
720 Enable 64-bit support in test.
721
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000722config TOUCH
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000723 bool "touch"
724 default n
725 help
Eric Andersene5642112003-07-14 19:37:08 +0000726 touch is used to create or change the access and/or
727 modification timestamp of specified files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000728
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000729config TR
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000730 bool "tr"
731 default n
732 help
Eric Andersene5642112003-07-14 19:37:08 +0000733 tr is used to squeeze, and/or delete characters from standard
734 input, writing to standard output.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000735
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000736config FEATURE_TR_CLASSES
Rob Landley2ec922e2006-04-13 23:22:16 +0000737 bool "Enable character classes (such as [:upper:])"
Rob Landley45ad0e82005-10-08 17:48:25 +0000738 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000739 depends on TR
Rob Landley45ad0e82005-10-08 17:48:25 +0000740 help
741 Enable character classes, enabling commands such as:
742 tr [:upper:] [:lower:] to convert input into lowercase.
743
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000744config FEATURE_TR_EQUIV
Rob Landley2ec922e2006-04-13 23:22:16 +0000745 bool "Enable equivalence classes"
Rob Landley45ad0e82005-10-08 17:48:25 +0000746 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000747 depends on TR
Rob Landley45ad0e82005-10-08 17:48:25 +0000748 help
749 Enable equivalence classes, which essentially add the enclosed
750 character to the current set. For instance, tr [=a=] xyz would
751 replace all instances of 'a' with 'xyz'. This option is mainly
752 useful for cases when no other way of expressing a character
753 is possible.
754
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000755config TRUE
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +0000756 bool "true"
757 default n
758 help
759 true returns an exit code of TRUE (0).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000760
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000761config TTY
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000762 bool "tty"
763 default n
764 help
Eric Andersene5642112003-07-14 19:37:08 +0000765 tty is used to print the name of the current terminal to
766 standard output.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000767
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000768config UNAME
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000769 bool "uname"
770 default n
771 help
Eric Andersene5642112003-07-14 19:37:08 +0000772 uname is used to print system information.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000773
Denis Vlasenko3952f202007-08-13 14:10:24 +0000774config UNEXPAND
775 bool "unexpand"
776 default n
777 help
778 By default, convert only leading sequences of blanks to tabs.
779
780config FEATURE_UNEXPAND_LONG_OPTIONS
781 bool "Enable long options"
782 default n
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200783 depends on UNEXPAND && LONG_OPTS
Denis Vlasenko3952f202007-08-13 14:10:24 +0000784 help
785 Support long options for the unexpand applet.
786
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000787config UNIQ
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000788 bool "uniq"
789 default n
790 help
Eric Andersene5642112003-07-14 19:37:08 +0000791 uniq is used to remove duplicate lines from a sorted file.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000792
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000793config USLEEP
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000794 bool "usleep"
795 default n
796 help
Eric Andersene5642112003-07-14 19:37:08 +0000797 usleep is used to pause for a specified number of microseconds.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000798
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000799config UUDECODE
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000800 bool "uudecode"
801 default n
802 help
Eric Andersene5642112003-07-14 19:37:08 +0000803 uudecode is used to decode a uuencoded file.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000804
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000805config UUENCODE
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000806 bool "uuencode"
807 default n
808 help
Eric Andersene5642112003-07-14 19:37:08 +0000809 uuencode is used to uuencode a file.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000810
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000811config WC
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000812 bool "wc"
813 default n
814 help
Eric Andersene5642112003-07-14 19:37:08 +0000815 wc is used to print the number of bytes, words, and lines,
816 in specified files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000817
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000818config FEATURE_WC_LARGE
Denis Vlasenko70210162006-09-29 23:41:59 +0000819 bool "Support very large files in wc"
820 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000821 depends on WC
Denis Vlasenko70210162006-09-29 23:41:59 +0000822 help
Bernhard Reutner-Fischerbb5f8ed2009-02-14 12:13:13 +0000823 Use "unsigned long long" in wc for counter variables.
Denis Vlasenko70210162006-09-29 23:41:59 +0000824
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000825config WHO
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000826 bool "who"
827 default n
Denys Vlasenko6dbbac52010-04-06 18:48:32 +0200828 depends on FEATURE_UTMP
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000829 help
Eric Andersene5642112003-07-14 19:37:08 +0000830 who is used to show who is logged on.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000831
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000832config WHOAMI
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000833 bool "whoami"
834 default n
835 help
Eric Andersene5642112003-07-14 19:37:08 +0000836 whoami is used to print the username of the current
837 user id (same as id -un).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000838
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000839config YES
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000840 bool "yes"
841 default n
842 help
Eric Andersene5642112003-07-14 19:37:08 +0000843 yes is used to repeatedly output a specific string, or
844 the default string `y'.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000845
846comment "Common options for cp and mv"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000847 depends on CP || MV
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000848
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000849config FEATURE_PRESERVE_HARDLINKS
Rob Landley2ec922e2006-04-13 23:22:16 +0000850 bool "Preserve hard links"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000851 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000852 depends on CP || MV
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000853 help
Eric Andersene5642112003-07-14 19:37:08 +0000854 Allow cp and mv to preserve hard links.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000855
Rob Landley30a6bba2006-02-06 02:49:45 +0000856comment "Common options for ls, more and telnet"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000857 depends on LS || MORE || TELNET
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000858
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000859config FEATURE_AUTOWIDTH
Rob Landley2ec922e2006-04-13 23:22:16 +0000860 bool "Calculate terminal & column widths"
Eric Andersen727f5292003-07-26 09:33:16 +0000861 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000862 depends on LS || MORE || TELNET
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000863 help
Rob Landley30a6bba2006-02-06 02:49:45 +0000864 This option allows utilities such as 'ls', 'more' and 'telnet'
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000865 to determine the width of the screen, which can allow them to
Rob Landley30a6bba2006-02-06 02:49:45 +0000866 display additional text or avoid wrapping text onto the next line.
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000867 If you leave this disabled, your utilities will be especially
Rob Landley30a6bba2006-02-06 02:49:45 +0000868 primitive and will be unable to determine the current screen width.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000869
870comment "Common options for df, du, ls"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000871 depends on DF || DU || LS
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000872
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000873config FEATURE_HUMAN_READABLE
Rob Landley2ec922e2006-04-13 23:22:16 +0000874 bool "Support for human readable output (example 13k, 23M, 235G)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000875 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000876 depends on DF || DU || LS
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000877 help
Eric Andersene5642112003-07-14 19:37:08 +0000878 Allow df, du, and ls to have human readable output.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000879
Denys Vlasenkoc041e232010-01-13 18:55:37 +0100880comment "Common options for md5sum, sha1sum, sha256sum, sha512sum"
881 depends on MD5SUM || SHA1SUM || SHA256SUM || SHA512SUM
Glenn L McGrathd2a897a2003-11-10 04:33:55 +0000882
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000883config FEATURE_MD5_SHA1_SUM_CHECK
Rob Landley2ec922e2006-04-13 23:22:16 +0000884 bool "Enable -c, -s and -w options"
Glenn L McGrathd2a897a2003-11-10 04:33:55 +0000885 default n
Denys Vlasenkoc041e232010-01-13 18:55:37 +0100886 depends on MD5SUM || SHA1SUM || SHA256SUM || SHA512SUM
Glenn L McGrathd2a897a2003-11-10 04:33:55 +0000887 help
Glenn L McGrath5c0d84a2003-12-08 20:11:55 +0000888 Enabling the -c options allows files to be checked
Glenn L McGrathd2a897a2003-11-10 04:33:55 +0000889 against pre-calculated hash values.
890
Glenn L McGrath5c0d84a2003-12-08 20:11:55 +0000891 -s and -w are useful options when verifying checksums.
892
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000893endmenu