blob: 000f3a8afefa7e5ac783ac97ce27169c644908fe [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
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000539config STAT
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000540 bool "stat"
541 default n
542 help
543 display file or filesystem status.
544
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000545config FEATURE_STAT_FORMAT
Rob Landley2ec922e2006-04-13 23:22:16 +0000546 bool "Enable custom formats (-c)"
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000547 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000548 depends on STAT
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000549 help
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000550 Without this, stat will not support the '-c format' option where
551 users can pass a custom format string for output. This adds about
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000552 7k to a nonstatic build on amd64.
553
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000554config STTY
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000555 bool "stty"
556 default n
557 help
Eric Andersene5642112003-07-14 19:37:08 +0000558 stty is used to change and print terminal line settings.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000559
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000560config SUM
Mike Frysinger4a211702005-04-21 23:24:46 +0000561 bool "sum"
562 default n
563 help
564 checksum and count the blocks in a file
565
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000566config SYNC
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000567 bool "sync"
568 default n
569 help
Eric Andersene5642112003-07-14 19:37:08 +0000570 sync is used to flush filesystem buffers.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000571
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000572config TAIL
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000573 bool "tail"
574 default n
575 help
Eric Andersene5642112003-07-14 19:37:08 +0000576 tail is used to print the last specified number of lines
577 from files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000578
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000579config FEATURE_FANCY_TAIL
Rob Landley2ec922e2006-04-13 23:22:16 +0000580 bool "Enable extra tail options (-q, -s, and -v)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000581 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000582 depends on TAIL
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000583 help
Glenn L McGrath4ef5a842003-10-31 00:35:59 +0000584 The options (-q, -s, and -v) are provided by GNU tail, but
585 are not specific in the SUSv3 standard.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000586
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000587config TEE
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000588 bool "tee"
589 default n
590 help
Eric Andersene5642112003-07-14 19:37:08 +0000591 tee is used to read from standard input and write
592 to standard output and files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000593
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000594config FEATURE_TEE_USE_BLOCK_IO
Rob Landley2ec922e2006-04-13 23:22:16 +0000595 bool "Enable block i/o (larger/faster) instead of byte i/o."
Manuel Novoa III cad53642003-03-19 09:13:01 +0000596 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000597 depends on TEE
Manuel Novoa III cad53642003-03-19 09:13:01 +0000598 help
Eric Andersene5642112003-07-14 19:37:08 +0000599 Enable this option for a faster tee, at expense of size.
Manuel Novoa III cad53642003-03-19 09:13:01 +0000600
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000601config TEST
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +0000602 bool "test"
603 default n
604 help
605 test is used to check file types and compare values,
Paul Fox6ab03782006-06-08 21:37:26 +0000606 returning an appropriate exit code. The bash shell
607 has test built in, ash can build it in optionally.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000608
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000609config FEATURE_TEST_64
Rob Landley2ec922e2006-04-13 23:22:16 +0000610 bool "Extend test to 64 bit"
Glenn L McGrath73db8be2004-08-11 02:45:47 +0000611 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000612 depends on TEST
Glenn L McGrath73db8be2004-08-11 02:45:47 +0000613 help
614 Enable 64-bit support in test.
615
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000616config TOUCH
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000617 bool "touch"
618 default n
619 help
Eric Andersene5642112003-07-14 19:37:08 +0000620 touch is used to create or change the access and/or
621 modification timestamp of specified files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000622
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000623config TR
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000624 bool "tr"
625 default n
626 help
Eric Andersene5642112003-07-14 19:37:08 +0000627 tr is used to squeeze, and/or delete characters from standard
628 input, writing to standard output.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000629
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000630config FEATURE_TR_CLASSES
Rob Landley2ec922e2006-04-13 23:22:16 +0000631 bool "Enable character classes (such as [:upper:])"
Rob Landley45ad0e82005-10-08 17:48:25 +0000632 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000633 depends on TR
Rob Landley45ad0e82005-10-08 17:48:25 +0000634 help
635 Enable character classes, enabling commands such as:
636 tr [:upper:] [:lower:] to convert input into lowercase.
637
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000638config FEATURE_TR_EQUIV
Rob Landley2ec922e2006-04-13 23:22:16 +0000639 bool "Enable equivalence classes"
Rob Landley45ad0e82005-10-08 17:48:25 +0000640 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000641 depends on TR
Rob Landley45ad0e82005-10-08 17:48:25 +0000642 help
643 Enable equivalence classes, which essentially add the enclosed
644 character to the current set. For instance, tr [=a=] xyz would
645 replace all instances of 'a' with 'xyz'. This option is mainly
646 useful for cases when no other way of expressing a character
647 is possible.
648
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000649config TRUE
Bernhard Reutner-Fischer96002bb2006-01-19 14:42:23 +0000650 bool "true"
651 default n
652 help
653 true returns an exit code of TRUE (0).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000654
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000655config TTY
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000656 bool "tty"
657 default n
658 help
Eric Andersene5642112003-07-14 19:37:08 +0000659 tty is used to print the name of the current terminal to
660 standard output.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000661
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000662config UNAME
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000663 bool "uname"
664 default n
665 help
Eric Andersene5642112003-07-14 19:37:08 +0000666 uname is used to print system information.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000667
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000668config UNIQ
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000669 bool "uniq"
670 default n
671 help
Eric Andersene5642112003-07-14 19:37:08 +0000672 uniq is used to remove duplicate lines from a sorted file.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000673
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000674config USLEEP
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000675 bool "usleep"
676 default n
677 help
Eric Andersene5642112003-07-14 19:37:08 +0000678 usleep is used to pause for a specified number of microseconds.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000679
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000680config UUDECODE
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000681 bool "uudecode"
682 default n
683 help
Eric Andersene5642112003-07-14 19:37:08 +0000684 uudecode is used to decode a uuencoded file.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000685
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000686config UUENCODE
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000687 bool "uuencode"
688 default n
689 help
Eric Andersene5642112003-07-14 19:37:08 +0000690 uuencode is used to uuencode a file.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000691
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000692config WATCH
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000693 bool "watch"
694 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000695 select DATE
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000696 help
Eric Andersene5642112003-07-14 19:37:08 +0000697 watch is used to execute a program periodically, showing
698 output to the screen.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000699
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000700config WC
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000701 bool "wc"
702 default n
703 help
Eric Andersene5642112003-07-14 19:37:08 +0000704 wc is used to print the number of bytes, words, and lines,
705 in specified files.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000706
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000707config FEATURE_WC_LARGE
Denis Vlasenko70210162006-09-29 23:41:59 +0000708 bool "Support very large files in wc"
709 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000710 depends on WC
Denis Vlasenko70210162006-09-29 23:41:59 +0000711 help
712 Use "unsigned long long" in wc for count variables
713
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000714config WHO
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000715 bool "who"
716 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000717 select FEATURE_UTMP
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000718 help
Eric Andersene5642112003-07-14 19:37:08 +0000719 who is used to show who is logged on.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000720
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000721config WHOAMI
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000722 bool "whoami"
723 default n
724 help
Eric Andersene5642112003-07-14 19:37:08 +0000725 whoami is used to print the username of the current
726 user id (same as id -un).
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000727
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000728config YES
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000729 bool "yes"
730 default n
731 help
Eric Andersene5642112003-07-14 19:37:08 +0000732 yes is used to repeatedly output a specific string, or
733 the default string `y'.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000734
735comment "Common options for cp and mv"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000736 depends on CP || MV
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000737
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000738config FEATURE_PRESERVE_HARDLINKS
Rob Landley2ec922e2006-04-13 23:22:16 +0000739 bool "Preserve hard links"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000740 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000741 depends on CP || MV
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000742 help
Eric Andersene5642112003-07-14 19:37:08 +0000743 Allow cp and mv to preserve hard links.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000744
Rob Landley30a6bba2006-02-06 02:49:45 +0000745comment "Common options for ls, more and telnet"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000746 depends on LS || MORE || TELNET
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000747
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000748config FEATURE_AUTOWIDTH
Rob Landley2ec922e2006-04-13 23:22:16 +0000749 bool "Calculate terminal & column widths"
Eric Andersen727f5292003-07-26 09:33:16 +0000750 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000751 depends on LS || MORE || TELNET
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000752 help
Rob Landley30a6bba2006-02-06 02:49:45 +0000753 This option allows utilities such as 'ls', 'more' and 'telnet'
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000754 to determine the width of the screen, which can allow them to
Rob Landley30a6bba2006-02-06 02:49:45 +0000755 display additional text or avoid wrapping text onto the next line.
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000756 If you leave this disabled, your utilities will be especially
Rob Landley30a6bba2006-02-06 02:49:45 +0000757 primitive and will be unable to determine the current screen width.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000758
759comment "Common options for df, du, ls"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000760 depends on DF || DU || LS
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000761
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000762config FEATURE_HUMAN_READABLE
Rob Landley2ec922e2006-04-13 23:22:16 +0000763 bool "Support for human readable output (example 13k, 23M, 235G)"
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000764 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000765 depends on DF || DU || LS
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000766 help
Eric Andersene5642112003-07-14 19:37:08 +0000767 Allow df, du, and ls to have human readable output.
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000768
Glenn L McGrathd2a897a2003-11-10 04:33:55 +0000769comment "Common options for md5sum, sha1sum"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000770 depends on MD5SUM || SHA1SUM
Glenn L McGrathd2a897a2003-11-10 04:33:55 +0000771
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000772config FEATURE_MD5_SHA1_SUM_CHECK
Rob Landley2ec922e2006-04-13 23:22:16 +0000773 bool "Enable -c, -s and -w options"
Glenn L McGrathd2a897a2003-11-10 04:33:55 +0000774 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000775 depends on MD5SUM || SHA1SUM
Glenn L McGrathd2a897a2003-11-10 04:33:55 +0000776 help
Glenn L McGrath5c0d84a2003-12-08 20:11:55 +0000777 Enabling the -c options allows files to be checked
Glenn L McGrathd2a897a2003-11-10 04:33:55 +0000778 against pre-calculated hash values.
779
Glenn L McGrath5c0d84a2003-12-08 20:11:55 +0000780 -s and -w are useful options when verifying checksums.
781
Glenn L McGrath3238ea12003-02-15 10:53:40 +0000782endmenu