blob: be5e9527bb97d7ed33c7aa87580074473fc101d9 [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,
Eric Andersenc7bda1c2004-03-15 08:29:22 +000013 leaving just the filename itself. Enable this option if you wish
Eric Andersen4762a482003-04-04 14:35:36 +000014 to enable the 'basename' utility.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000015
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
27 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
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000055config CHROOT
Glenn L McGrath3238ea12003-02-15 10:53:40 +000056 bool "chroot"
57 default n
58 help
Eric Andersene5642112003-07-14 19:37:08 +000059 chroot is used to change the root directory and run a command.
60 The default command is `/bin/sh'.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000061
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000062config CKSUM
Rob Landley856489b2006-04-18 20:57:28 +000063 bool "cksum"
64 default n
65 help
66 cksum is used to calculate the CRC32 checksum of a file.
67
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000068config CMP
Glenn L McGrath3238ea12003-02-15 10:53:40 +000069 bool "cmp"
70 default n
71 help
Eric Andersene5642112003-07-14 19:37:08 +000072 cmp is used to compare two files and returns the result
73 to standard output.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000074
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
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000088config CUT
Glenn L McGrath3238ea12003-02-15 10:53:40 +000089 bool "cut"
90 default n
91 help
Eric Andersene5642112003-07-14 19:37:08 +000092 cut is used to print selected parts of lines from
93 each file to stdout.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000094
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000095config DATE
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +000096 bool "date"
97 default n
98 help
99 date is used to set the system date or display the
100 current time in the given format.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000101
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000102config FEATURE_DATE_ISOFMT
Rob Landley2ec922e2006-04-13 23:22:16 +0000103 bool "Enable ISO date format output (-I)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000104 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000105 depends on DATE
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000106 help
Eric Andersen65e20a32003-07-05 07:52:35 +0000107 Enable option (-I) to output an ISO-8601 compliant
108 date/time string.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000109
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000110config DD
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000111 bool "dd"
112 default n
113 help
Eric Andersene5642112003-07-14 19:37:08 +0000114 dd copies a file (from standard input to standard output,
115 by default) using specific input and output blocksizes,
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000116 while optionally performing conversions on it.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000117
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000118config FEATURE_DD_SIGNAL_HANDLING
Rob Landleyc5598172006-05-02 22:44:04 +0000119 bool "Enable DD signal handling for status reporting"
120 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000121 depends on DD
Rob Landleyc5598172006-05-02 22:44:04 +0000122 help
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000123 sending a SIGUSR1 signal to a running `dd' process makes it
124 print to standard error the number of records read and written
Rob Landleyc5598172006-05-02 22:44:04 +0000125 so far, then to resume copying.
126
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000127 $ dd if=/dev/zero of=/dev/null& pid=$! $ kill -USR1 $pid; sleep 1; kill $pid
Rob Landleyc5598172006-05-02 22:44:04 +0000128 10899206+0 records in 10899206+0 records out
129
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000130config FEATURE_DD_IBS_OBS
Rob Landley2686d3b2006-05-16 16:52:12 +0000131 bool "Enable ibs, obs and conv options"
132 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000133 depends on DD
Rob Landley2686d3b2006-05-16 16:52:12 +0000134 help
135 Enables support for writing a certain number of bytes in and out,
136 at a time, and performing conversions on the data stream.
137
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000138config DF
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000139 bool "df"
140 default n
141 help
Eric Andersene5642112003-07-14 19:37:08 +0000142 df reports the amount of disk space used and available
143 on filesystems.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000144
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000145config DIFF
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +0000146 bool "diff"
147 default n
148 help
149 diff compares two files or directories and outputs the
150 differences between them in a form that can be given to
151 the patch command.
152
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000153config FEATURE_DIFF_BINARY
Rob Landley2ec922e2006-04-13 23:22:16 +0000154 bool "Enable checks for binary files"
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +0000155 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000156 depends on DIFF
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +0000157 help
158 This option enables support for checking for binary files
159 before a comparison is carried out.
160
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000161config FEATURE_DIFF_DIR
Rob Landley2ec922e2006-04-13 23:22:16 +0000162 bool "Enable directory support"
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +0000163 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000164 depends on DIFF
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +0000165 help
166 This option enables support for directory and subdirectory
167 comparison.
168
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000169config FEATURE_DIFF_MINIMAL
Rob Landley2ec922e2006-04-13 23:22:16 +0000170 bool "Enable -d option to find smaller sets of changes"
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +0000171 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000172 depends on DIFF
Bernhard Reutner-Fischer8f7d3892006-04-06 08:11:08 +0000173 help
174 Enabling this option allows the use of -d to make diff
175 try hard to find the smallest possible set of changes.
176
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000177config DIRNAME
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000178 bool "dirname"
179 default n
180 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000181 dirname is used to strip a non-directory suffix from
Eric Andersene5642112003-07-14 19:37:08 +0000182 a file name.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000183
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000184config DOS2UNIX
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000185 bool "dos2unix/unix2dos"
186 default n
187 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000188 dos2unix is used to convert a text file from DOS format to
Eric Andersene5642112003-07-14 19:37:08 +0000189 UNIX format, and vice versa.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000190
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000191config UNIX2DOS
Eric Andersen7c512432003-06-26 21:53:51 +0000192 bool
193 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000194 depends on DOS2UNIX
Bernhard Reutner-Fischer4f7953c2006-05-05 11:55:53 +0000195 help
196 unix2dos is used to convert a text file from UNIX format to
197 DOS format, and vice versa.
Eric Andersen7c512432003-06-26 21:53:51 +0000198
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000199config DU
Manuel Novoa III cad53642003-03-19 09:13:01 +0000200 bool "du (default blocksize of 512 bytes)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000201 default n
202 help
Eric Andersene5642112003-07-14 19:37:08 +0000203 du is used to report the amount of disk space used
204 for specified files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000205
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000206config FEATURE_DU_DEFAULT_BLOCKSIZE_1K
Rob Landley2ec922e2006-04-13 23:22:16 +0000207 bool "Use a default blocksize of 1024 bytes (1K)"
Manuel Novoa III cad53642003-03-19 09:13:01 +0000208 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000209 depends on DU
Manuel Novoa III cad53642003-03-19 09:13:01 +0000210 help
Eric Andersene5642112003-07-14 19:37:08 +0000211 Use a blocksize of (1K) instead of the default 512b.
Manuel Novoa III cad53642003-03-19 09:13:01 +0000212
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000213config ECHO
Mike Frysinger7f8797c2005-09-24 23:15:28 +0000214 bool "echo (basic SuSv3 version taking no options)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000215 default n
216 help
Eric Andersene5642112003-07-14 19:37:08 +0000217 echo is used to print a specified string to stdout.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000218
Paul Fox0b621582005-08-09 19:38:05 +0000219# this entry also appears in shell/Config.in, next to the echo builtin
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000220config FEATURE_FANCY_ECHO
Rob Landley2ec922e2006-04-13 23:22:16 +0000221 bool "Enable echo options (-n and -e)"
Manuel Novoa III cad53642003-03-19 09:13:01 +0000222 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000223 depends on ECHO
Manuel Novoa III cad53642003-03-19 09:13:01 +0000224 help
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000225 This adds options (-n and -e) to echo.
Manuel Novoa III cad53642003-03-19 09:13:01 +0000226
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000227config ENV
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000228 bool "env"
229 default n
230 help
Eric Andersene5642112003-07-14 19:37:08 +0000231 env is used to set an environment variable and run
Eric Andersen88c916b2003-10-22 09:58:56 +0000232 a command; without options it displays the current
Eric Andersene5642112003-07-14 19:37:08 +0000233 environment.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000234
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000235config FEATURE_ENV_LONG_OPTIONS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000236 bool "Enable long options"
237 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000238 depends on ENV && GETOPT_LONG
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000239 help
240 Support long options for the env applet.
241
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000242config EXPR
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000243 bool "expr"
244 default n
245 help
Eric Andersene5642112003-07-14 19:37:08 +0000246 expr is used to calculate numbers and print the result
247 to standard output.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000248
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000249config EXPR_MATH_SUPPORT_64
Rob Landley2ec922e2006-04-13 23:22:16 +0000250 bool "Extend Posix numbers support to 64 bit"
"Vladimir N. Oleynik"8aa9e572006-01-25 13:56:03 +0000251 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000252 depends on EXPR
"Vladimir N. Oleynik"8aa9e572006-01-25 13:56:03 +0000253 help
254 Enable 64-bit math support in the expr applet. This will make
255 the applet slightly larger, but will allow computation with very
256 large numbers.
257
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000258config FALSE
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +0000259 bool "false"
260 default n
261 help
262 false returns an exit code of FALSE (1).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000263
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000264config FOLD
Glenn L McGrathf01b8052003-04-27 06:02:14 +0000265 bool "fold"
266 default n
267 help
Eric Andersene5642112003-07-14 19:37:08 +0000268 Wrap text to fit a specific width.
Glenn L McGrathf01b8052003-04-27 06:02:14 +0000269
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000270config HEAD
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000271 bool "head"
272 default n
273 help
Eric Andersene5642112003-07-14 19:37:08 +0000274 head is used to print the first specified number of lines
275 from files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000276
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000277config FEATURE_FANCY_HEAD
Rob Landley2ec922e2006-04-13 23:22:16 +0000278 bool "Enable head options (-c, -q, and -v)"
Manuel Novoa III cad53642003-03-19 09:13:01 +0000279 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000280 depends on HEAD
Manuel Novoa III cad53642003-03-19 09:13:01 +0000281 help
Eric Andersene5642112003-07-14 19:37:08 +0000282 This enables the head options (-c, -q, and -v).
Manuel Novoa III cad53642003-03-19 09:13:01 +0000283
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000284config HOSTID
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000285 bool "hostid"
286 default n
287 help
Eric Andersene5642112003-07-14 19:37:08 +0000288 hostid prints the numeric identifier (in hexadecimal) for
289 the current host.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000290
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000291config ID
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000292 bool "id"
293 default n
294 help
Eric Andersene5642112003-07-14 19:37:08 +0000295 id displays the current user and group ID names.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000296
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000297config INSTALL
Glenn L McGratheebcc1d2003-09-24 03:22:57 +0000298 bool "install"
299 default n
300 help
301 Copy files and set attributes.
302
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000303config FEATURE_INSTALL_LONG_OPTIONS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000304 bool "Enable long options"
305 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000306 depends on INSTALL && GETOPT_LONG
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000307 help
308 Support long options for the install applet.
309
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000310config LENGTH
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000311 bool "length"
312 default n
313 help
Eric Andersene5642112003-07-14 19:37:08 +0000314 length is used to print out the length of a specified string.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000315
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000316config LN
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000317 bool "ln"
318 default n
319 help
Eric Andersene5642112003-07-14 19:37:08 +0000320 ln is used to create hard or soft links between files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000321
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000322config LOGNAME
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000323 bool "logname"
324 default n
325 help
Eric Andersene5642112003-07-14 19:37:08 +0000326 logname is used to print the current user's login name.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000327
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000328config LS
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000329 bool "ls"
330 default n
331 help
Eric Andersene5642112003-07-14 19:37:08 +0000332 ls is used to list the contents of directories.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000333
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000334config FEATURE_LS_FILETYPES
Rob Landley2ec922e2006-04-13 23:22:16 +0000335 bool "Enable filetyping options (-p and -F)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000336 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000337 depends on LS
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000338 help
Eric Andersene5642112003-07-14 19:37:08 +0000339 Enable the ls options (-p and -F).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000340
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000341config FEATURE_LS_FOLLOWLINKS
Rob Landley2ec922e2006-04-13 23:22:16 +0000342 bool "Enable symlinks dereferencing (-L)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000343 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000344 depends on LS
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000345 help
Eric Andersene5642112003-07-14 19:37:08 +0000346 Enable the ls option (-L).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000347
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000348config FEATURE_LS_RECURSIVE
Rob Landley2ec922e2006-04-13 23:22:16 +0000349 bool "Enable recursion (-R)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000350 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000351 depends on LS
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000352 help
Eric Andersene5642112003-07-14 19:37:08 +0000353 Enable the ls option (-R).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000354
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000355config FEATURE_LS_SORTFILES
Rob Landley2ec922e2006-04-13 23:22:16 +0000356 bool "Sort the file names"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000357 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000358 depends on LS
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000359 help
Eric Andersene5642112003-07-14 19:37:08 +0000360 Allow ls to sort file names alphabetically.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000361
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000362config FEATURE_LS_TIMESTAMPS
Rob Landley2ec922e2006-04-13 23:22:16 +0000363 bool "Show file timestamps"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000364 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000365 depends on LS
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000366 help
Eric Andersene5642112003-07-14 19:37:08 +0000367 Allow ls to display timestamps for files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000368
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000369config FEATURE_LS_USERNAME
Rob Landley2ec922e2006-04-13 23:22:16 +0000370 bool "Show username/groupnames"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000371 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000372 depends on LS
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000373 help
Eric Andersene5642112003-07-14 19:37:08 +0000374 Allow ls to display username/groupname for files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000375
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000376config FEATURE_LS_COLOR
Rob Landley2ec922e2006-04-13 23:22:16 +0000377 bool "Allow use of color to identify file types"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000378 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000379 depends on LS && GETOPT_LONG
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000380 help
Paul Fox156dc412005-08-01 19:33:30 +0000381 This enables the --color option to ls.
382
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000383config FEATURE_LS_COLOR_IS_DEFAULT
Rob Landley2ec922e2006-04-13 23:22:16 +0000384 bool "Produce colored ls output by default"
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +0000385 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000386 depends on FEATURE_LS_COLOR
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +0000387 help
388 Saying yes here will turn coloring on by default,
389 even if no "--color" option is given to the ls command.
390 This is not recommended, since the colors are not
391 configurable, and the output may not be legible on
392 many output screens.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000393
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000394config MD5SUM
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000395 bool "md5sum"
396 default n
397 help
Eric Andersene5642112003-07-14 19:37:08 +0000398 md5sum is used to print or check MD5 checksums.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000399
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000400config MKDIR
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000401 bool "mkdir"
402 default n
403 help
Eric Andersene5642112003-07-14 19:37:08 +0000404 mkdir is used to create directories with the specified names.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000405
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000406config FEATURE_MKDIR_LONG_OPTIONS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000407 bool "Enable long options"
408 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000409 depends on MKDIR && GETOPT_LONG
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000410 help
411 Support long options for the mkdir applet.
412
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000413config MKFIFO
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000414 bool "mkfifo"
415 default n
416 help
Eric Andersene5642112003-07-14 19:37:08 +0000417 mkfifo is used to create FIFOs (named pipes).
418 The `mknod' program can also create FIFOs.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000419
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000420config MKNOD
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000421 bool "mknod"
422 default n
423 help
Eric Andersene5642112003-07-14 19:37:08 +0000424 mknod is used to create FIFOs or block/character special
425 files with the specified names.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000426
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000427config MV
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000428 bool "mv"
429 default n
430 help
Eric Andersene5642112003-07-14 19:37:08 +0000431 mv is used to move or rename files or directories.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000432
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000433config FEATURE_MV_LONG_OPTIONS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000434 bool "Enable long options"
435 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000436 depends on MV && GETOPT_LONG
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000437 help
438 Support long options for the mv applet.
439
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000440config NICE
Manuel Novoa III 2c511602005-02-13 20:14:05 +0000441 bool "nice"
442 default n
443 help
444 nice runs a program with modified scheduling priority.
445
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000446config NOHUP
Bernhard Reutner-Fischer9d7010c2005-09-21 18:25:05 +0000447 bool "nohup"
448 default n
449 help
450 run a command immune to hangups, with output to a non-tty.
451
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000452config OD
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000453 bool "od"
454 default n
455 help
Eric Andersene5642112003-07-14 19:37:08 +0000456 od is used to dump binary files in octal and other formats.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000457
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000458config PRINTENV
Mike Frysinger7f8797c2005-09-24 23:15:28 +0000459 bool "printenv"
460 default n
461 help
462 printenv is used to print all or part of environment.
463
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000464config PRINTF
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000465 bool "printf"
466 default n
467 help
Eric Andersene5642112003-07-14 19:37:08 +0000468 printf is used to format and print specified strings.
469 It's similar to `echo' except it has more options.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000470
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000471config PWD
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000472 bool "pwd"
473 default n
474 help
Eric Andersene5642112003-07-14 19:37:08 +0000475 pwd is used to print the current directory.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000476
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000477config REALPATH
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000478 bool "realpath"
479 default n
480 help
481 Return the canonicalized absolute pathname.
Eric Andersen88c916b2003-10-22 09:58:56 +0000482 This isn't provided by GNU shellutils, but where else does it belong.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000483
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000484config RM
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000485 bool "rm"
486 default n
487 help
Eric Andersene5642112003-07-14 19:37:08 +0000488 rm is used to remove files or directories.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000489
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000490config RMDIR
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000491 bool "rmdir"
492 default n
493 help
Eric Andersene5642112003-07-14 19:37:08 +0000494 rmdir is used to remove empty directories.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000495
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000496config SEQ
Glenn L McGrath82364bb2004-01-27 09:22:20 +0000497 bool "seq"
498 default n
499 help
500 print a sequence of numbers
501
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000502config SHA1SUM
Glenn L McGrathae0f1e72003-02-17 08:23:22 +0000503 bool "sha1sum"
504 default n
505 help
506 Compute and check SHA1 message digest
507
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000508config SLEEP
Manuel Novoa III cad53642003-03-19 09:13:01 +0000509 bool "sleep (single integer arg with no suffix)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000510 default n
511 help
Eric Andersene5642112003-07-14 19:37:08 +0000512 sleep is used to pause for a specified number of seconds,
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000513
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000514config FEATURE_FANCY_SLEEP
Rob Landley2ec922e2006-04-13 23:22:16 +0000515 bool "Enable multiple integer args and optional time suffixes"
Manuel Novoa III cad53642003-03-19 09:13:01 +0000516 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000517 depends on SLEEP
Manuel Novoa III cad53642003-03-19 09:13:01 +0000518 help
Eric Andersene5642112003-07-14 19:37:08 +0000519 Allow sleep to pause for specified minutes, hours, and days.
Manuel Novoa III cad53642003-03-19 09:13:01 +0000520
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000521config SORT
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000522 bool "sort"
523 default n
524 help
Eric Andersene5642112003-07-14 19:37:08 +0000525 sort is used to sort lines of text in specified files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000526
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000527config FEATURE_SORT_BIG
Rob Landley2ec922e2006-04-13 23:22:16 +0000528 bool "full SuSv3 compliant sort (Support -ktcsbdfiozgM)"
Rob Landleyc0dedd02005-01-24 07:00:02 +0000529 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000530 depends on SORT
Rob Landleyc0dedd02005-01-24 07:00:02 +0000531 help
532 Without this, sort only supports -r, -u, and an integer version
533 of -n. Selecting this adds sort keys, floating point support, and
534 more. This adds a little over 3k to a nonstatic build on x86.
535
536 The SuSv3 sort standard is available at:
537 http://www.opengroup.org/onlinepubs/007904975/utilities/sort.html
538
Bernhard Reutner-Fischer10f8f5f2007-03-25 21:50:18 +0000539config SPLIT
540 bool "split"
541 default n
542 help
543 split a file into pieces.
Bernhard Reutner-Fischer0a537a02007-03-28 16:48:40 +0000544
545config FEATURE_SPLIT_FANCY
546 bool "fancy extensions"
547 default n
548 depends on SPLIT
549 help
550 Add support for features not required by SUSv3.
551 Supports additional suffixes 'b' for 512 bytes,
552 'g' for 1GiB for the -b option.
Bernhard Reutner-Fischer10f8f5f2007-03-25 21:50:18 +0000553
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000554config STAT
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000555 bool "stat"
556 default n
557 help
558 display file or filesystem status.
559
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000560config FEATURE_STAT_FORMAT
Rob Landley2ec922e2006-04-13 23:22:16 +0000561 bool "Enable custom formats (-c)"
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000562 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000563 depends on STAT
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000564 help
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000565 Without this, stat will not support the '-c format' option where
566 users can pass a custom format string for output. This adds about
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000567 7k to a nonstatic build on amd64.
568
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000569config STTY
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000570 bool "stty"
571 default n
572 help
Eric Andersene5642112003-07-14 19:37:08 +0000573 stty is used to change and print terminal line settings.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000574
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000575config SUM
Mike Frysinger4a211702005-04-21 23:24:46 +0000576 bool "sum"
577 default n
578 help
579 checksum and count the blocks in a file
580
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000581config SYNC
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000582 bool "sync"
583 default n
584 help
Eric Andersene5642112003-07-14 19:37:08 +0000585 sync is used to flush filesystem buffers.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000586
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000587config TAIL
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000588 bool "tail"
589 default n
590 help
Eric Andersene5642112003-07-14 19:37:08 +0000591 tail is used to print the last specified number of lines
592 from files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000593
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000594config FEATURE_FANCY_TAIL
Rob Landley2ec922e2006-04-13 23:22:16 +0000595 bool "Enable extra tail options (-q, -s, and -v)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000596 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000597 depends on TAIL
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000598 help
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000599 The options (-q, -s, and -v) are provided by GNU tail, but
600 are not specific in the SUSv3 standard.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000601
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000602config TEE
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000603 bool "tee"
604 default n
605 help
Eric Andersene5642112003-07-14 19:37:08 +0000606 tee is used to read from standard input and write
607 to standard output and files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000608
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000609config FEATURE_TEE_USE_BLOCK_IO
Rob Landley2ec922e2006-04-13 23:22:16 +0000610 bool "Enable block i/o (larger/faster) instead of byte i/o."
Manuel Novoa III cad53642003-03-19 09:13:01 +0000611 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000612 depends on TEE
Manuel Novoa III cad53642003-03-19 09:13:01 +0000613 help
Eric Andersene5642112003-07-14 19:37:08 +0000614 Enable this option for a faster tee, at expense of size.
Manuel Novoa III cad53642003-03-19 09:13:01 +0000615
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000616config TEST
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +0000617 bool "test"
618 default n
619 help
620 test is used to check file types and compare values,
Paul Fox6ab03782006-06-08 21:37:26 +0000621 returning an appropriate exit code. The bash shell
622 has test built in, ash can build it in optionally.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000623
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000624config FEATURE_TEST_64
Rob Landley2ec922e2006-04-13 23:22:16 +0000625 bool "Extend test to 64 bit"
Glenn L McGrath73db8be2004-08-11 02:45:47 +0000626 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000627 depends on TEST
Glenn L McGrath73db8be2004-08-11 02:45:47 +0000628 help
629 Enable 64-bit support in test.
630
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000631config TOUCH
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000632 bool "touch"
633 default n
634 help
Eric Andersene5642112003-07-14 19:37:08 +0000635 touch is used to create or change the access and/or
636 modification timestamp of specified files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000637
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000638config TR
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000639 bool "tr"
640 default n
641 help
Eric Andersene5642112003-07-14 19:37:08 +0000642 tr is used to squeeze, and/or delete characters from standard
643 input, writing to standard output.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000644
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000645config FEATURE_TR_CLASSES
Rob Landley2ec922e2006-04-13 23:22:16 +0000646 bool "Enable character classes (such as [:upper:])"
Rob Landley45ad0e82005-10-08 17:48:25 +0000647 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000648 depends on TR
Rob Landley45ad0e82005-10-08 17:48:25 +0000649 help
650 Enable character classes, enabling commands such as:
651 tr [:upper:] [:lower:] to convert input into lowercase.
652
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000653config FEATURE_TR_EQUIV
Rob Landley2ec922e2006-04-13 23:22:16 +0000654 bool "Enable equivalence classes"
Rob Landley45ad0e82005-10-08 17:48:25 +0000655 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000656 depends on TR
Rob Landley45ad0e82005-10-08 17:48:25 +0000657 help
658 Enable equivalence classes, which essentially add the enclosed
659 character to the current set. For instance, tr [=a=] xyz would
660 replace all instances of 'a' with 'xyz'. This option is mainly
661 useful for cases when no other way of expressing a character
662 is possible.
663
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000664config TRUE
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +0000665 bool "true"
666 default n
667 help
668 true returns an exit code of TRUE (0).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000669
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000670config TTY
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000671 bool "tty"
672 default n
673 help
Eric Andersene5642112003-07-14 19:37:08 +0000674 tty is used to print the name of the current terminal to
675 standard output.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000676
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000677config UNAME
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000678 bool "uname"
679 default n
680 help
Eric Andersene5642112003-07-14 19:37:08 +0000681 uname is used to print system information.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000682
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000683config UNIQ
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000684 bool "uniq"
685 default n
686 help
Eric Andersene5642112003-07-14 19:37:08 +0000687 uniq is used to remove duplicate lines from a sorted file.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000688
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000689config USLEEP
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000690 bool "usleep"
691 default n
692 help
Eric Andersene5642112003-07-14 19:37:08 +0000693 usleep is used to pause for a specified number of microseconds.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000694
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000695config UUDECODE
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000696 bool "uudecode"
697 default n
698 help
Eric Andersene5642112003-07-14 19:37:08 +0000699 uudecode is used to decode a uuencoded file.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000700
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000701config UUENCODE
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000702 bool "uuencode"
703 default n
704 help
Eric Andersene5642112003-07-14 19:37:08 +0000705 uuencode is used to uuencode a file.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000706
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000707config WATCH
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000708 bool "watch"
709 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000710 select DATE
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000711 help
Eric Andersene5642112003-07-14 19:37:08 +0000712 watch is used to execute a program periodically, showing
713 output to the screen.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000714
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000715config WC
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000716 bool "wc"
717 default n
718 help
Eric Andersene5642112003-07-14 19:37:08 +0000719 wc is used to print the number of bytes, words, and lines,
720 in specified files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000721
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000722config FEATURE_WC_LARGE
Denis Vlasenko70210162006-09-29 23:41:59 +0000723 bool "Support very large files in wc"
724 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000725 depends on WC
Denis Vlasenko70210162006-09-29 23:41:59 +0000726 help
727 Use "unsigned long long" in wc for count variables
728
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000729config WHO
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000730 bool "who"
731 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000732 select FEATURE_UTMP
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000733 help
Eric Andersene5642112003-07-14 19:37:08 +0000734 who is used to show who is logged on.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000735
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000736config WHOAMI
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000737 bool "whoami"
738 default n
739 help
Eric Andersene5642112003-07-14 19:37:08 +0000740 whoami is used to print the username of the current
741 user id (same as id -un).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000742
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000743config YES
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000744 bool "yes"
745 default n
746 help
Eric Andersene5642112003-07-14 19:37:08 +0000747 yes is used to repeatedly output a specific string, or
748 the default string `y'.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000749
750comment "Common options for cp and mv"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000751 depends on CP || MV
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000752
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000753config FEATURE_PRESERVE_HARDLINKS
Rob Landley2ec922e2006-04-13 23:22:16 +0000754 bool "Preserve hard links"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000755 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000756 depends on CP || MV
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000757 help
Eric Andersene5642112003-07-14 19:37:08 +0000758 Allow cp and mv to preserve hard links.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000759
Rob Landley30a6bba2006-02-06 02:49:45 +0000760comment "Common options for ls, more and telnet"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000761 depends on LS || MORE || TELNET
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000762
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000763config FEATURE_AUTOWIDTH
Rob Landley2ec922e2006-04-13 23:22:16 +0000764 bool "Calculate terminal & column widths"
Eric Andersen727f5292003-07-26 09:33:16 +0000765 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000766 depends on LS || MORE || TELNET
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000767 help
Rob Landley30a6bba2006-02-06 02:49:45 +0000768 This option allows utilities such as 'ls', 'more' and 'telnet'
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000769 to determine the width of the screen, which can allow them to
Rob Landley30a6bba2006-02-06 02:49:45 +0000770 display additional text or avoid wrapping text onto the next line.
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000771 If you leave this disabled, your utilities will be especially
Rob Landley30a6bba2006-02-06 02:49:45 +0000772 primitive and will be unable to determine the current screen width.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000773
774comment "Common options for df, du, ls"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000775 depends on DF || DU || LS
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000776
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000777config FEATURE_HUMAN_READABLE
Rob Landley2ec922e2006-04-13 23:22:16 +0000778 bool "Support for human readable output (example 13k, 23M, 235G)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000779 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000780 depends on DF || DU || LS
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000781 help
Eric Andersene5642112003-07-14 19:37:08 +0000782 Allow df, du, and ls to have human readable output.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000783
Glenn L McGrathd2a897a2003-11-10 04:33:55 +0000784comment "Common options for md5sum, sha1sum"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000785 depends on MD5SUM || SHA1SUM
Glenn L McGrathd2a897a2003-11-10 04:33:55 +0000786
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000787config FEATURE_MD5_SHA1_SUM_CHECK
Rob Landley2ec922e2006-04-13 23:22:16 +0000788 bool "Enable -c, -s and -w options"
Glenn L McGrathd2a897a2003-11-10 04:33:55 +0000789 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000790 depends on MD5SUM || SHA1SUM
Glenn L McGrathd2a897a2003-11-10 04:33:55 +0000791 help
Glenn L McGrath5c0d84a2003-12-08 20:11:55 +0000792 Enabling the -c options allows files to be checked
Glenn L McGrathd2a897a2003-11-10 04:33:55 +0000793 against pre-calculated hash values.
794
Glenn L McGrath5c0d84a2003-12-08 20:11:55 +0000795 -s and -w are useful options when verifying checksums.
796
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000797endmenu