OpenWrt – Blame information for rev 3

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 # DO NOT EDIT. This file is generated from Config.src
2 #
3 # For a description of the syntax of this configuration file,
3 office 4 # see scripts/kbuild/config-language.txt.
1 office 5 #
6  
7 menu "Coreutils"
8  
9 config BUSYBOX_CONFIG_BASENAME
3 office 10 bool "basename"
1 office 11 default BUSYBOX_DEFAULT_BASENAME
12 help
3 office 13 basename is used to strip the directory and suffix from filenames,
14 leaving just the filename itself. Enable this option if you wish
15 to enable the 'basename' utility.
1 office 16 config BUSYBOX_CONFIG_CAT
3 office 17 bool "cat"
1 office 18 default BUSYBOX_DEFAULT_CAT
19 help
3 office 20 cat is used to concatenate files and print them to the standard
21 output. Enable this option if you wish to enable the 'cat' utility.
1 office 22  
23 config BUSYBOX_CONFIG_FEATURE_CATV
24 bool "cat -v[etA]"
25 default BUSYBOX_DEFAULT_FEATURE_CATV
26 depends on BUSYBOX_CONFIG_CAT
27 help
3 office 28 Display nonprinting characters as escape sequences
1 office 29 config BUSYBOX_CONFIG_CHGRP
3 office 30 bool "chgrp"
1 office 31 default BUSYBOX_DEFAULT_CHGRP
32 help
3 office 33 chgrp is used to change the group ownership of files.
1 office 34 config BUSYBOX_CONFIG_CHMOD
3 office 35 bool "chmod"
1 office 36 default BUSYBOX_DEFAULT_CHMOD
37 help
3 office 38 chmod is used to change the access permission of files.
1 office 39 config BUSYBOX_CONFIG_CHOWN
3 office 40 bool "chown"
1 office 41 default BUSYBOX_DEFAULT_CHOWN
42 help
3 office 43 chown is used to change the user and/or group ownership
44 of files.
1 office 45  
46 config BUSYBOX_CONFIG_FEATURE_CHOWN_LONG_OPTIONS
47 bool "Enable long options"
48 default BUSYBOX_DEFAULT_FEATURE_CHOWN_LONG_OPTIONS
49 depends on BUSYBOX_CONFIG_CHOWN && BUSYBOX_CONFIG_LONG_OPTS
50 config BUSYBOX_CONFIG_CHROOT
3 office 51 bool "chroot"
1 office 52 default BUSYBOX_DEFAULT_CHROOT
53 help
3 office 54 chroot is used to change the root directory and run a command.
55 The default command is `/bin/sh'.
1 office 56 config BUSYBOX_CONFIG_CKSUM
3 office 57 bool "cksum"
1 office 58 default BUSYBOX_DEFAULT_CKSUM
59 help
3 office 60 cksum is used to calculate the CRC32 checksum of a file.
1 office 61 config BUSYBOX_CONFIG_COMM
3 office 62 bool "comm"
1 office 63 default BUSYBOX_DEFAULT_COMM
64 help
3 office 65 comm is used to compare two files line by line and return
66 a three-column output.
1 office 67 config BUSYBOX_CONFIG_CP
3 office 68 bool "cp"
1 office 69 default BUSYBOX_DEFAULT_CP
70 help
3 office 71 cp is used to copy files and directories.
1 office 72  
73 config BUSYBOX_CONFIG_FEATURE_CP_LONG_OPTIONS
74 bool "Enable long options"
75 default BUSYBOX_DEFAULT_FEATURE_CP_LONG_OPTIONS
76 depends on BUSYBOX_CONFIG_CP && BUSYBOX_CONFIG_LONG_OPTS
77 help
3 office 78 Enable long options.
79 Also add support for --parents option.
1 office 80 config BUSYBOX_CONFIG_CUT
3 office 81 bool "cut"
1 office 82 default BUSYBOX_DEFAULT_CUT
83 help
3 office 84 cut is used to print selected parts of lines from
85 each file to stdout.
1 office 86 config BUSYBOX_CONFIG_DATE
3 office 87 bool "date"
1 office 88 default BUSYBOX_DEFAULT_DATE
89 help
3 office 90 date is used to set the system date or display the
91 current time in the given format.
1 office 92  
93 config BUSYBOX_CONFIG_FEATURE_DATE_ISOFMT
94 bool "Enable ISO date format output (-I)"
95 default BUSYBOX_DEFAULT_FEATURE_DATE_ISOFMT
96 depends on BUSYBOX_CONFIG_DATE
97 help
3 office 98 Enable option (-I) to output an ISO-8601 compliant
99 date/time string.
1 office 100  
101 # defaults to "no": stat's nanosecond field is a bit non-portable
102 config BUSYBOX_CONFIG_FEATURE_DATE_NANO
103 bool "Support %[num]N nanosecond format specifier"
3 office 104 default BUSYBOX_DEFAULT_FEATURE_DATE_NANO
105 depends on BUSYBOX_CONFIG_DATE # syscall(__NR_clock_gettime)
1 office 106 select BUSYBOX_CONFIG_PLATFORM_LINUX
107 help
3 office 108 Support %[num]N format specifier. Adds ~250 bytes of code.
1 office 109  
110 config BUSYBOX_CONFIG_FEATURE_DATE_COMPAT
111 bool "Support weird 'date MMDDhhmm[[YY]YY][.ss]' format"
112 default BUSYBOX_DEFAULT_FEATURE_DATE_COMPAT
113 depends on BUSYBOX_CONFIG_DATE
114 help
3 office 115 System time can be set by 'date -s DATE' and simply 'date DATE',
116 but formats of DATE string are different. 'date DATE' accepts
117 a rather weird MMDDhhmm[[YY]YY][.ss] format with completely
118 unnatural placement of year between minutes and seconds.
119 date -s (and other commands like touch -d) use more sensible
120 formats (for one, ISO format YYYY-MM-DD hh:mm:ss.ssssss).
1 office 121  
3 office 122 With this option off, 'date DATE' is 'date -s DATE' support
123 the same format. With it on, 'date DATE' additionally supports
124 MMDDhhmm[[YY]YY][.ss] format.
1 office 125 config BUSYBOX_CONFIG_DD
3 office 126 bool "dd"
1 office 127 default BUSYBOX_DEFAULT_DD
128 help
3 office 129 dd copies a file (from standard input to standard output,
130 by default) using specific input and output blocksizes,
131 while optionally performing conversions on it.
1 office 132  
133 config BUSYBOX_CONFIG_FEATURE_DD_SIGNAL_HANDLING
134 bool "Enable signal handling for status reporting"
135 default BUSYBOX_DEFAULT_FEATURE_DD_SIGNAL_HANDLING
136 depends on BUSYBOX_CONFIG_DD
137 help
3 office 138 Sending a SIGUSR1 signal to a running `dd' process makes it
139 print to standard error the number of records read and written
140 so far, then to resume copying.
1 office 141  
3 office 142 $ dd if=/dev/zero of=/dev/null &
143 $ pid=$!; kill -USR1 $pid; sleep 1; kill $pid
144 10899206+0 records in
145 10899206+0 records out
1 office 146  
147 config BUSYBOX_CONFIG_FEATURE_DD_THIRD_STATUS_LINE
148 bool "Enable the third status line upon signal"
149 default BUSYBOX_DEFAULT_FEATURE_DD_THIRD_STATUS_LINE
150 depends on BUSYBOX_CONFIG_DD && BUSYBOX_CONFIG_FEATURE_DD_SIGNAL_HANDLING
151 help
3 office 152 Displays a coreutils-like third status line with transferred bytes,
153 elapsed time and speed.
1 office 154  
155 config BUSYBOX_CONFIG_FEATURE_DD_IBS_OBS
3 office 156 bool "Enable ibs, obs and conv options"
1 office 157 default BUSYBOX_DEFAULT_FEATURE_DD_IBS_OBS
158 depends on BUSYBOX_CONFIG_DD
159 help
3 office 160 Enable support for writing a certain number of bytes in and out,
161 at a time, and performing conversions on the data stream.
1 office 162  
163 config BUSYBOX_CONFIG_FEATURE_DD_STATUS
164 bool "Enable status display options"
165 default BUSYBOX_DEFAULT_FEATURE_DD_STATUS
166 depends on BUSYBOX_CONFIG_DD
167 help
3 office 168 Enable support for status=noxfer/none option.
1 office 169 config BUSYBOX_CONFIG_DF
3 office 170 bool "df"
1 office 171 default BUSYBOX_DEFAULT_DF
172 help
3 office 173 df reports the amount of disk space used and available
174 on filesystems.
1 office 175  
176 config BUSYBOX_CONFIG_FEATURE_DF_FANCY
177 bool "Enable -a, -i, -B"
178 default BUSYBOX_DEFAULT_FEATURE_DF_FANCY
179 depends on BUSYBOX_CONFIG_DF
180 help
3 office 181 -a Show all filesystems
182 -i Inodes
183 -B <SIZE> Blocksize
1 office 184 config BUSYBOX_CONFIG_DIRNAME
3 office 185 bool "dirname"
1 office 186 default BUSYBOX_DEFAULT_DIRNAME
187 help
3 office 188 dirname is used to strip a non-directory suffix from
189 a file name.
1 office 190 config BUSYBOX_CONFIG_DOS2UNIX
3 office 191 bool "dos2unix"
1 office 192 default BUSYBOX_DEFAULT_DOS2UNIX
193 help
3 office 194 dos2unix is used to convert a text file from DOS format to
195 UNIX format, and vice versa.
1 office 196  
197 config BUSYBOX_CONFIG_UNIX2DOS
3 office 198 bool "unix2dos"
1 office 199 default BUSYBOX_DEFAULT_UNIX2DOS
200 help
3 office 201 unix2dos is used to convert a text file from UNIX format to
202 DOS format, and vice versa.
1 office 203 config BUSYBOX_CONFIG_DU
3 office 204 bool "du (default blocksize of 512 bytes)"
1 office 205 default BUSYBOX_DEFAULT_DU
206 help
3 office 207 du is used to report the amount of disk space used
208 for specified files.
1 office 209  
210 config BUSYBOX_CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K
3 office 211 bool "Use a default blocksize of 1024 bytes (1K)"
1 office 212 default BUSYBOX_DEFAULT_FEATURE_DU_DEFAULT_BLOCKSIZE_1K
213 depends on BUSYBOX_CONFIG_DU
3 office 214 help
215 Use a blocksize of (1K) instead of the default 512b.
1 office 216 config BUSYBOX_CONFIG_ECHO
3 office 217 bool "echo (basic SuSv3 version taking no options)"
1 office 218 default BUSYBOX_DEFAULT_ECHO
219 help
3 office 220 echo is used to print a specified string to stdout.
1 office 221  
222 # this entry also appears in shell/Config.in, next to the echo builtin
223 config BUSYBOX_CONFIG_FEATURE_FANCY_ECHO
224 bool "Enable -n and -e options"
225 default BUSYBOX_DEFAULT_FEATURE_FANCY_ECHO
226 depends on BUSYBOX_CONFIG_ECHO || BUSYBOX_CONFIG_ASH_ECHO || BUSYBOX_CONFIG_HUSH_ECHO
227 config BUSYBOX_CONFIG_ENV
3 office 228 bool "env"
1 office 229 default BUSYBOX_DEFAULT_ENV
230 help
3 office 231 env is used to set an environment variable and run
232 a command; without options it displays the current
233 environment.
234  
235 config BUSYBOX_CONFIG_FEATURE_ENV_LONG_OPTIONS
236 bool "Enable long options"
237 default BUSYBOX_DEFAULT_FEATURE_ENV_LONG_OPTIONS
238 depends on BUSYBOX_CONFIG_ENV && BUSYBOX_CONFIG_LONG_OPTS
1 office 239 config BUSYBOX_CONFIG_EXPAND
3 office 240 bool "expand"
1 office 241 default BUSYBOX_DEFAULT_EXPAND
242 help
3 office 243 By default, convert all tabs to spaces.
1 office 244  
3 office 245 config BUSYBOX_CONFIG_FEATURE_EXPAND_LONG_OPTIONS
246 bool "Enable long options"
247 default BUSYBOX_DEFAULT_FEATURE_EXPAND_LONG_OPTIONS
248 depends on BUSYBOX_CONFIG_EXPAND && BUSYBOX_CONFIG_LONG_OPTS
249  
1 office 250 config BUSYBOX_CONFIG_UNEXPAND
3 office 251 bool "unexpand"
1 office 252 default BUSYBOX_DEFAULT_UNEXPAND
253 help
3 office 254 By default, convert only leading sequences of blanks to tabs.
255  
256 config BUSYBOX_CONFIG_FEATURE_UNEXPAND_LONG_OPTIONS
257 bool "Enable long options"
258 default BUSYBOX_DEFAULT_FEATURE_UNEXPAND_LONG_OPTIONS
259 depends on BUSYBOX_CONFIG_UNEXPAND && BUSYBOX_CONFIG_LONG_OPTS
1 office 260 config BUSYBOX_CONFIG_EXPR
3 office 261 bool "expr"
1 office 262 default BUSYBOX_DEFAULT_EXPR
263 help
3 office 264 expr is used to calculate numbers and print the result
265 to standard output.
1 office 266  
267 config BUSYBOX_CONFIG_EXPR_MATH_SUPPORT_64
268 bool "Extend Posix numbers support to 64 bit"
269 default BUSYBOX_DEFAULT_EXPR_MATH_SUPPORT_64
270 depends on BUSYBOX_CONFIG_EXPR
271 help
3 office 272 Enable 64-bit math support in the expr applet. This will make
273 the applet slightly larger, but will allow computation with very
274 large numbers.
1 office 275 config BUSYBOX_CONFIG_FACTOR
3 office 276 bool "factor"
1 office 277 default BUSYBOX_DEFAULT_FACTOR
278 help
3 office 279 factor factorizes integers
1 office 280 config BUSYBOX_CONFIG_FALSE
3 office 281 bool "false"
1 office 282 default BUSYBOX_DEFAULT_FALSE
283 help
3 office 284 false returns an exit code of FALSE (1).
1 office 285 config BUSYBOX_CONFIG_FOLD
3 office 286 bool "fold"
1 office 287 default BUSYBOX_DEFAULT_FOLD
288 help
3 office 289 Wrap text to fit a specific width.
1 office 290 config BUSYBOX_CONFIG_FSYNC
3 office 291 bool "fsync"
1 office 292 default BUSYBOX_DEFAULT_FSYNC
293 help
3 office 294 fsync is used to flush file-related cached blocks to disk.
1 office 295 config BUSYBOX_CONFIG_HEAD
3 office 296 bool "head"
1 office 297 default BUSYBOX_DEFAULT_HEAD
298 help
3 office 299 head is used to print the first specified number of lines
300 from files.
1 office 301  
302 config BUSYBOX_CONFIG_FEATURE_FANCY_HEAD
303 bool "Enable -c, -q, and -v"
304 default BUSYBOX_DEFAULT_FEATURE_FANCY_HEAD
305 depends on BUSYBOX_CONFIG_HEAD
306 config BUSYBOX_CONFIG_HOSTID
3 office 307 bool "hostid"
1 office 308 default BUSYBOX_DEFAULT_HOSTID
309 help
3 office 310 hostid prints the numeric identifier (in hexadecimal) for
311 the current host.
1 office 312 config BUSYBOX_CONFIG_ID
3 office 313 bool "id"
1 office 314 default BUSYBOX_DEFAULT_ID
315 help
3 office 316 id displays the current user and group ID names.
1 office 317  
318 config BUSYBOX_CONFIG_GROUPS
3 office 319 bool "groups"
1 office 320 default BUSYBOX_DEFAULT_GROUPS
321 help
3 office 322 Print the group names associated with current user id.
1 office 323 config BUSYBOX_CONFIG_INSTALL
3 office 324 bool "install"
1 office 325 default BUSYBOX_DEFAULT_INSTALL
326 help
3 office 327 Copy files and set attributes.
1 office 328  
329 config BUSYBOX_CONFIG_FEATURE_INSTALL_LONG_OPTIONS
330 bool "Enable long options"
331 default BUSYBOX_DEFAULT_FEATURE_INSTALL_LONG_OPTIONS
332 depends on BUSYBOX_CONFIG_INSTALL && BUSYBOX_CONFIG_LONG_OPTS
333 config BUSYBOX_CONFIG_LINK
3 office 334 bool "link"
1 office 335 default BUSYBOX_DEFAULT_LINK
336 help
3 office 337 link creates hard links between files.
1 office 338 config BUSYBOX_CONFIG_LN
3 office 339 bool "ln"
1 office 340 default BUSYBOX_DEFAULT_LN
341 help
3 office 342 ln is used to create hard or soft links between files.
1 office 343 config BUSYBOX_CONFIG_LOGNAME
3 office 344 bool "logname"
1 office 345 default BUSYBOX_DEFAULT_LOGNAME
346 help
3 office 347 logname is used to print the current user's login name.
1 office 348 config BUSYBOX_CONFIG_LS
3 office 349 bool "ls"
1 office 350 default BUSYBOX_DEFAULT_LS
351 help
3 office 352 ls is used to list the contents of directories.
1 office 353  
354 config BUSYBOX_CONFIG_FEATURE_LS_FILETYPES
355 bool "Enable filetyping options (-p and -F)"
356 default BUSYBOX_DEFAULT_FEATURE_LS_FILETYPES
357 depends on BUSYBOX_CONFIG_LS
358  
359 config BUSYBOX_CONFIG_FEATURE_LS_FOLLOWLINKS
360 bool "Enable symlinks dereferencing (-L)"
361 default BUSYBOX_DEFAULT_FEATURE_LS_FOLLOWLINKS
362 depends on BUSYBOX_CONFIG_LS
363  
364 config BUSYBOX_CONFIG_FEATURE_LS_RECURSIVE
365 bool "Enable recursion (-R)"
366 default BUSYBOX_DEFAULT_FEATURE_LS_RECURSIVE
367 depends on BUSYBOX_CONFIG_LS
368  
369 config BUSYBOX_CONFIG_FEATURE_LS_WIDTH
370 bool "Enable -w WIDTH and window size autodetection"
371 default BUSYBOX_DEFAULT_FEATURE_LS_WIDTH
372 depends on BUSYBOX_CONFIG_LS
373  
374 config BUSYBOX_CONFIG_FEATURE_LS_SORTFILES
375 bool "Sort the file names"
376 default BUSYBOX_DEFAULT_FEATURE_LS_SORTFILES
377 depends on BUSYBOX_CONFIG_LS
378 help
3 office 379 Allow ls to sort file names alphabetically.
1 office 380  
381 config BUSYBOX_CONFIG_FEATURE_LS_TIMESTAMPS
382 bool "Show file timestamps"
383 default BUSYBOX_DEFAULT_FEATURE_LS_TIMESTAMPS
384 depends on BUSYBOX_CONFIG_LS
385 help
3 office 386 Allow ls to display timestamps for files.
1 office 387  
388 config BUSYBOX_CONFIG_FEATURE_LS_USERNAME
389 bool "Show username/groupnames"
390 default BUSYBOX_DEFAULT_FEATURE_LS_USERNAME
391 depends on BUSYBOX_CONFIG_LS
392 help
3 office 393 Allow ls to display username/groupname for files.
1 office 394  
395 config BUSYBOX_CONFIG_FEATURE_LS_COLOR
396 bool "Allow use of color to identify file types"
397 default BUSYBOX_DEFAULT_FEATURE_LS_COLOR
398 depends on BUSYBOX_CONFIG_LS && BUSYBOX_CONFIG_LONG_OPTS
399 help
3 office 400 This enables the --color option to ls.
1 office 401  
402 config BUSYBOX_CONFIG_FEATURE_LS_COLOR_IS_DEFAULT
403 bool "Produce colored ls output by default"
404 default BUSYBOX_DEFAULT_FEATURE_LS_COLOR_IS_DEFAULT
405 depends on BUSYBOX_CONFIG_FEATURE_LS_COLOR
406 help
3 office 407 Saying yes here will turn coloring on by default,
408 even if no "--color" option is given to the ls command.
409 This is not recommended, since the colors are not
410 configurable, and the output may not be legible on
411 many output screens.
1 office 412 config BUSYBOX_CONFIG_MD5SUM
3 office 413 bool "md5sum"
1 office 414 default BUSYBOX_DEFAULT_MD5SUM
415 help
3 office 416 md5sum is used to print or check MD5 checksums.
1 office 417  
418 config BUSYBOX_CONFIG_SHA1SUM
3 office 419 bool "sha1sum"
1 office 420 default BUSYBOX_DEFAULT_SHA1SUM
421 help
3 office 422 Compute and check SHA1 message digest
1 office 423  
424 config BUSYBOX_CONFIG_SHA256SUM
3 office 425 bool "sha256sum"
1 office 426 default BUSYBOX_DEFAULT_SHA256SUM
427 help
3 office 428 Compute and check SHA256 message digest
1 office 429  
430 config BUSYBOX_CONFIG_SHA512SUM
3 office 431 bool "sha512sum"
1 office 432 default BUSYBOX_DEFAULT_SHA512SUM
433 help
3 office 434 Compute and check SHA512 message digest
1 office 435  
436 config BUSYBOX_CONFIG_SHA3SUM
3 office 437 bool "sha3sum"
1 office 438 default BUSYBOX_DEFAULT_SHA3SUM
439 help
3 office 440 Compute and check SHA3 message digest
1 office 441  
442 comment "Common options for md5sum, sha1sum, sha256sum, sha512sum, sha3sum"
443 depends on BUSYBOX_CONFIG_MD5SUM || BUSYBOX_CONFIG_SHA1SUM || BUSYBOX_CONFIG_SHA256SUM || BUSYBOX_CONFIG_SHA512SUM || BUSYBOX_CONFIG_SHA3SUM
444  
445 config BUSYBOX_CONFIG_FEATURE_MD5_SHA1_SUM_CHECK
446 bool "Enable -c, -s and -w options"
447 default BUSYBOX_DEFAULT_FEATURE_MD5_SHA1_SUM_CHECK
448 depends on BUSYBOX_CONFIG_MD5SUM || BUSYBOX_CONFIG_SHA1SUM || BUSYBOX_CONFIG_SHA256SUM || BUSYBOX_CONFIG_SHA512SUM || BUSYBOX_CONFIG_SHA3SUM
449 help
3 office 450 Enabling the -c options allows files to be checked
451 against pre-calculated hash values.
452 -s and -w are useful options when verifying checksums.
1 office 453 config BUSYBOX_CONFIG_MKDIR
3 office 454 bool "mkdir"
1 office 455 default BUSYBOX_DEFAULT_MKDIR
456 help
3 office 457 mkdir is used to create directories with the specified names.
458  
459 config BUSYBOX_CONFIG_FEATURE_MKDIR_LONG_OPTIONS
460 bool "Enable long options"
461 default BUSYBOX_DEFAULT_FEATURE_MKDIR_LONG_OPTIONS
462 depends on BUSYBOX_CONFIG_MKDIR && BUSYBOX_CONFIG_LONG_OPTS
1 office 463 config BUSYBOX_CONFIG_MKFIFO
3 office 464 bool "mkfifo"
1 office 465 default BUSYBOX_DEFAULT_MKFIFO
466 help
3 office 467 mkfifo is used to create FIFOs (named pipes).
468 The 'mknod' program can also create FIFOs.
1 office 469 config BUSYBOX_CONFIG_MKNOD
3 office 470 bool "mknod"
1 office 471 default BUSYBOX_DEFAULT_MKNOD
472 help
3 office 473 mknod is used to create FIFOs or block/character special
474 files with the specified names.
1 office 475 config BUSYBOX_CONFIG_MKTEMP
3 office 476 bool "mktemp"
1 office 477 default BUSYBOX_DEFAULT_MKTEMP
478 help
3 office 479 mktemp is used to create unique temporary files
1 office 480 config BUSYBOX_CONFIG_MV
3 office 481 bool "mv"
1 office 482 default BUSYBOX_DEFAULT_MV
483 help
3 office 484 mv is used to move or rename files or directories.
485  
486 config BUSYBOX_CONFIG_FEATURE_MV_LONG_OPTIONS
487 bool "Enable long options"
488 default BUSYBOX_DEFAULT_FEATURE_MV_LONG_OPTIONS
489 depends on BUSYBOX_CONFIG_MV && BUSYBOX_CONFIG_LONG_OPTS
1 office 490 config BUSYBOX_CONFIG_NICE
3 office 491 bool "nice"
1 office 492 default BUSYBOX_DEFAULT_NICE
493 help
3 office 494 nice runs a program with modified scheduling priority.
1 office 495 config BUSYBOX_CONFIG_NL
3 office 496 bool "nl"
1 office 497 default BUSYBOX_DEFAULT_NL
498 help
3 office 499 nl is used to number lines of files.
1 office 500 config BUSYBOX_CONFIG_NOHUP
3 office 501 bool "nohup"
1 office 502 default BUSYBOX_DEFAULT_NOHUP
503 help
3 office 504 run a command immune to hangups, with output to a non-tty.
1 office 505 config BUSYBOX_CONFIG_NPROC
3 office 506 bool "nproc"
1 office 507 default BUSYBOX_DEFAULT_NPROC
508 help
3 office 509 Print number of CPUs
1 office 510 config BUSYBOX_CONFIG_OD
3 office 511 bool "od"
1 office 512 default BUSYBOX_DEFAULT_OD
513 help
3 office 514 od is used to dump binary files in octal and other formats.
1 office 515 config BUSYBOX_CONFIG_PASTE
3 office 516 bool "paste"
1 office 517 default BUSYBOX_DEFAULT_PASTE
518 help
3 office 519 paste is used to paste lines of different files together
520 and write the result to stdout
1 office 521 config BUSYBOX_CONFIG_PRINTENV
3 office 522 bool "printenv"
1 office 523 default BUSYBOX_DEFAULT_PRINTENV
524 help
3 office 525 printenv is used to print all or part of environment.
1 office 526 config BUSYBOX_CONFIG_PRINTF
3 office 527 bool "printf"
1 office 528 default BUSYBOX_DEFAULT_PRINTF
529 help
3 office 530 printf is used to format and print specified strings.
531 It's similar to `echo' except it has more options.
1 office 532 config BUSYBOX_CONFIG_PWD
3 office 533 bool "pwd"
1 office 534 default BUSYBOX_DEFAULT_PWD
535 help
3 office 536 pwd is used to print the current directory.
1 office 537 config BUSYBOX_CONFIG_READLINK
3 office 538 bool "readlink"
1 office 539 default BUSYBOX_DEFAULT_READLINK
540 help
3 office 541 This program reads a symbolic link and returns the name
542 of the file it points to
1 office 543  
544 config BUSYBOX_CONFIG_FEATURE_READLINK_FOLLOW
545 bool "Enable canonicalization by following all symlinks (-f)"
546 default BUSYBOX_DEFAULT_FEATURE_READLINK_FOLLOW
547 depends on BUSYBOX_CONFIG_READLINK
548 help
3 office 549 Enable the readlink option (-f).
1 office 550 config BUSYBOX_CONFIG_REALPATH
3 office 551 bool "realpath"
1 office 552 default BUSYBOX_DEFAULT_REALPATH
553 help
3 office 554 Return the canonicalized absolute pathname.
555 This isn't provided by GNU shellutils, but where else does it belong.
1 office 556 config BUSYBOX_CONFIG_RM
3 office 557 bool "rm"
1 office 558 default BUSYBOX_DEFAULT_RM
559 help
3 office 560 rm is used to remove files or directories.
1 office 561 config BUSYBOX_CONFIG_RMDIR
3 office 562 bool "rmdir"
1 office 563 default BUSYBOX_DEFAULT_RMDIR
564 help
3 office 565 rmdir is used to remove empty directories.
566  
567 config BUSYBOX_CONFIG_FEATURE_RMDIR_LONG_OPTIONS
568 bool "Enable long options"
569 default BUSYBOX_DEFAULT_FEATURE_RMDIR_LONG_OPTIONS
570 depends on BUSYBOX_CONFIG_RMDIR && BUSYBOX_CONFIG_LONG_OPTS
571 help
572 Support long options for the rmdir applet, including
573 --ignore-fail-on-non-empty for compatibility with GNU rmdir.
1 office 574 config BUSYBOX_CONFIG_SEQ
3 office 575 bool "seq"
1 office 576 default BUSYBOX_DEFAULT_SEQ
577 help
3 office 578 print a sequence of numbers
1 office 579 config BUSYBOX_CONFIG_SHRED
3 office 580 bool "shred"
1 office 581 default BUSYBOX_DEFAULT_SHRED
582 help
3 office 583 Overwrite a file to hide its contents, and optionally delete it
1 office 584 config BUSYBOX_CONFIG_SHUF
3 office 585 bool "shuf"
1 office 586 default BUSYBOX_DEFAULT_SHUF
587 help
3 office 588 Generate random permutations
1 office 589 config BUSYBOX_CONFIG_SLEEP
3 office 590 bool "sleep"
1 office 591 default BUSYBOX_DEFAULT_SLEEP
592 help
3 office 593 sleep is used to pause for a specified number of seconds.
594 It comes in 3 versions:
595 - small: takes one integer parameter
596 - fancy: takes multiple integer arguments with suffixes:
597 sleep 1d 2h 3m 15s
598 - fancy with fractional numbers:
599 sleep 2.3s 4.5h sleeps for 16202.3 seconds
600 Last one is "the most compatible" with coreutils sleep,
601 but it adds around 1k of code.
1 office 602  
603 config BUSYBOX_CONFIG_FEATURE_FANCY_SLEEP
604 bool "Enable multiple arguments and s/m/h/d suffixes"
605 default BUSYBOX_DEFAULT_FEATURE_FANCY_SLEEP
606 depends on BUSYBOX_CONFIG_SLEEP
607 help
3 office 608 Allow sleep to pause for specified minutes, hours, and days.
609  
610 config BUSYBOX_CONFIG_FEATURE_FLOAT_SLEEP
611 bool "Enable fractional arguments"
612 default BUSYBOX_DEFAULT_FEATURE_FLOAT_SLEEP
613 depends on BUSYBOX_CONFIG_FEATURE_FANCY_SLEEP
614 help
615 Allow for fractional numeric parameters.
1 office 616 config BUSYBOX_CONFIG_SORT
3 office 617 bool "sort"
1 office 618 default BUSYBOX_DEFAULT_SORT
619 help
3 office 620 sort is used to sort lines of text in specified files.
1 office 621  
622 config BUSYBOX_CONFIG_FEATURE_SORT_BIG
3 office 623 bool "Full SuSv3 compliant sort (support -ktcsbdfiozgM)"
1 office 624 default BUSYBOX_DEFAULT_FEATURE_SORT_BIG
625 depends on BUSYBOX_CONFIG_SORT
626 help
3 office 627 Without this, sort only supports -r, -u, and an integer version
628 of -n. Selecting this adds sort keys, floating point support, and
629 more. This adds a little over 3k to a nonstatic build on x86.
1 office 630  
3 office 631 The SuSv3 sort standard is available at:
632 http://www.opengroup.org/onlinepubs/007904975/utilities/sort.html
1 office 633 config BUSYBOX_CONFIG_SPLIT
3 office 634 bool "split"
1 office 635 default BUSYBOX_DEFAULT_SPLIT
636 help
3 office 637 Split a file into pieces.
1 office 638  
639 config BUSYBOX_CONFIG_FEATURE_SPLIT_FANCY
640 bool "Fancy extensions"
641 default BUSYBOX_DEFAULT_FEATURE_SPLIT_FANCY
642 depends on BUSYBOX_CONFIG_SPLIT
643 help
3 office 644 Add support for features not required by SUSv3.
645 Supports additional suffixes 'b' for 512 bytes,
646 'g' for 1GiB for the -b option.
1 office 647 config BUSYBOX_CONFIG_STAT
3 office 648 bool "stat"
1 office 649 default BUSYBOX_DEFAULT_STAT
650 help
3 office 651 display file or filesystem status.
1 office 652  
653 config BUSYBOX_CONFIG_FEATURE_STAT_FORMAT
654 bool "Enable custom formats (-c)"
655 default BUSYBOX_DEFAULT_FEATURE_STAT_FORMAT
656 depends on BUSYBOX_CONFIG_STAT
657 help
3 office 658 Without this, stat will not support the '-c format' option where
659 users can pass a custom format string for output. This adds about
660 7k to a nonstatic build on amd64.
1 office 661  
662 config BUSYBOX_CONFIG_FEATURE_STAT_FILESYSTEM
663 bool "Enable display of filesystem status (-f)"
664 default BUSYBOX_DEFAULT_FEATURE_STAT_FILESYSTEM
665 depends on BUSYBOX_CONFIG_STAT
666 select BUSYBOX_CONFIG_PLATFORM_LINUX # statfs()
667 help
3 office 668 Without this, stat will not support the '-f' option to display
669 information about filesystem status.
1 office 670 config BUSYBOX_CONFIG_STTY
3 office 671 bool "stty"
1 office 672 default BUSYBOX_DEFAULT_STTY
673 help
3 office 674 stty is used to change and print terminal line settings.
1 office 675 config BUSYBOX_CONFIG_SUM
3 office 676 bool "sum"
1 office 677 default BUSYBOX_DEFAULT_SUM
678 help
3 office 679 checksum and count the blocks in a file
1 office 680 config BUSYBOX_CONFIG_SYNC
3 office 681 bool "sync"
1 office 682 default BUSYBOX_DEFAULT_SYNC
683 help
3 office 684 sync is used to flush filesystem buffers.
1 office 685 config BUSYBOX_CONFIG_FEATURE_SYNC_FANCY
686 bool "Enable -d and -f flags (requires syncfs(2) in libc)"
687 default BUSYBOX_DEFAULT_FEATURE_SYNC_FANCY
688 depends on BUSYBOX_CONFIG_SYNC
689 help
3 office 690 sync -d FILE... executes fdatasync() on each FILE.
691 sync -f FILE... executes syncfs() on each FILE.
1 office 692 config BUSYBOX_CONFIG_TAC
3 office 693 bool "tac"
1 office 694 default BUSYBOX_DEFAULT_TAC
695 help
3 office 696 tac is used to concatenate and print files in reverse.
1 office 697 config BUSYBOX_CONFIG_TAIL
3 office 698 bool "tail"
1 office 699 default BUSYBOX_DEFAULT_TAIL
700 help
3 office 701 tail is used to print the last specified number of lines
702 from files.
1 office 703  
704 config BUSYBOX_CONFIG_FEATURE_FANCY_TAIL
705 bool "Enable -q, -s, -v, and -F options"
706 default BUSYBOX_DEFAULT_FEATURE_FANCY_TAIL
707 depends on BUSYBOX_CONFIG_TAIL
708 help
3 office 709 These options are provided by GNU tail, but
710 are not specific in the SUSv3 standard:
711 -q Never output headers giving file names
712 -s SEC Wait SEC seconds between reads with -f
713 -v Always output headers giving file names
714 -F Same as -f, but keep retrying
1 office 715 config BUSYBOX_CONFIG_TEE
3 office 716 bool "tee"
1 office 717 default BUSYBOX_DEFAULT_TEE
718 help
3 office 719 tee is used to read from standard input and write
720 to standard output and files.
1 office 721  
722 config BUSYBOX_CONFIG_FEATURE_TEE_USE_BLOCK_IO
723 bool "Enable block I/O (larger/faster) instead of byte I/O"
724 default BUSYBOX_DEFAULT_FEATURE_TEE_USE_BLOCK_IO
725 depends on BUSYBOX_CONFIG_TEE
726 help
3 office 727 Enable this option for a faster tee, at expense of size.
1 office 728 config BUSYBOX_CONFIG_TEST
3 office 729 bool "test"
1 office 730 default BUSYBOX_DEFAULT_TEST
731 help
3 office 732 test is used to check file types and compare values,
733 returning an appropriate exit code. The bash shell
734 has test built in, ash can build it in optionally.
1 office 735  
736 config BUSYBOX_CONFIG_TEST1
737 bool "test as ["
738 default BUSYBOX_DEFAULT_TEST1
739 help
3 office 740 Provide test command in the "[ EXPR ]" form
1 office 741  
742 config BUSYBOX_CONFIG_TEST2
743 bool "test as [["
744 default BUSYBOX_DEFAULT_TEST2
745 help
3 office 746 Provide test command in the "[[ EXPR ]]" form
1 office 747  
748 config BUSYBOX_CONFIG_FEATURE_TEST_64
749 bool "Extend test to 64 bit"
750 default BUSYBOX_DEFAULT_FEATURE_TEST_64
751 depends on BUSYBOX_CONFIG_TEST || BUSYBOX_CONFIG_TEST1 || BUSYBOX_CONFIG_TEST2 || BUSYBOX_CONFIG_ASH_TEST || BUSYBOX_CONFIG_HUSH_TEST
752 help
3 office 753 Enable 64-bit support in test.
1 office 754 config BUSYBOX_CONFIG_TIMEOUT
3 office 755 bool "timeout"
1 office 756 default BUSYBOX_DEFAULT_TIMEOUT
757 help
3 office 758 Runs a program and watches it. If it does not terminate in
759 specified number of seconds, it is sent a signal.
1 office 760 config BUSYBOX_CONFIG_TOUCH
3 office 761 bool "touch"
1 office 762 default BUSYBOX_DEFAULT_TOUCH
763 help
3 office 764 touch is used to create or change the access and/or
765 modification timestamp of specified files.
1 office 766  
767 config BUSYBOX_CONFIG_FEATURE_TOUCH_NODEREF
768 bool "Add support for -h"
769 default BUSYBOX_DEFAULT_FEATURE_TOUCH_NODEREF
770 depends on BUSYBOX_CONFIG_TOUCH
771 help
3 office 772 Enable touch to have the -h option.
773 This requires libc support for lutimes() function.
1 office 774  
775 config BUSYBOX_CONFIG_FEATURE_TOUCH_SUSV3
776 bool "Add support for SUSV3 features (-d -t -r)"
777 default BUSYBOX_DEFAULT_FEATURE_TOUCH_SUSV3
778 depends on BUSYBOX_CONFIG_TOUCH
779 help
3 office 780 Enable touch to use a reference file or a given date/time argument.
1 office 781 config BUSYBOX_CONFIG_TR
3 office 782 bool "tr"
1 office 783 default BUSYBOX_DEFAULT_TR
784 help
3 office 785 tr is used to squeeze, and/or delete characters from standard
786 input, writing to standard output.
1 office 787  
788 config BUSYBOX_CONFIG_FEATURE_TR_CLASSES
789 bool "Enable character classes (such as [:upper:])"
790 default BUSYBOX_DEFAULT_FEATURE_TR_CLASSES
791 depends on BUSYBOX_CONFIG_TR
792 help
3 office 793 Enable character classes, enabling commands such as:
794 tr [:upper:] [:lower:] to convert input into lowercase.
1 office 795  
796 config BUSYBOX_CONFIG_FEATURE_TR_EQUIV
797 bool "Enable equivalence classes"
798 default BUSYBOX_DEFAULT_FEATURE_TR_EQUIV
799 depends on BUSYBOX_CONFIG_TR
800 help
3 office 801 Enable equivalence classes, which essentially add the enclosed
802 character to the current set. For instance, tr [=a=] xyz would
803 replace all instances of 'a' with 'xyz'. This option is mainly
804 useful for cases when no other way of expressing a character
805 is possible.
1 office 806 config BUSYBOX_CONFIG_TRUE
3 office 807 bool "true"
1 office 808 default BUSYBOX_DEFAULT_TRUE
809 help
3 office 810 true returns an exit code of TRUE (0).
1 office 811 config BUSYBOX_CONFIG_TRUNCATE
3 office 812 bool "truncate"
1 office 813 default BUSYBOX_DEFAULT_TRUNCATE
814 help
3 office 815 truncate truncates files to a given size. If a file does
816 not exist, it is created unless told otherwise.
1 office 817 config BUSYBOX_CONFIG_TTY
3 office 818 bool "tty"
1 office 819 default BUSYBOX_DEFAULT_TTY
820 help
3 office 821 tty is used to print the name of the current terminal to
822 standard output.
1 office 823 config BUSYBOX_CONFIG_UNAME
3 office 824 bool "uname"
1 office 825 default BUSYBOX_DEFAULT_UNAME
826 help
3 office 827 uname is used to print system information.
1 office 828  
829 config BUSYBOX_CONFIG_UNAME_OSNAME
830 string "Operating system name"
831 default BUSYBOX_DEFAULT_UNAME_OSNAME
832 depends on BUSYBOX_CONFIG_UNAME
833 help
3 office 834 Sets the operating system name reported by uname -o. The
835 default BUSYBOX_DEFAULT_UNAME_OSNAME "GNU/Linux".
1 office 836 config BUSYBOX_CONFIG_UNIQ
3 office 837 bool "uniq"
1 office 838 default BUSYBOX_DEFAULT_UNIQ
839 help
3 office 840 uniq is used to remove duplicate lines from a sorted file.
1 office 841 config BUSYBOX_CONFIG_UNLINK
3 office 842 bool "unlink"
1 office 843 default BUSYBOX_DEFAULT_UNLINK
844 help
3 office 845 unlink deletes a file by calling unlink()
1 office 846 config BUSYBOX_CONFIG_USLEEP
3 office 847 bool "usleep"
1 office 848 default BUSYBOX_DEFAULT_USLEEP
849 help
3 office 850 usleep is used to pause for a specified number of microseconds.
1 office 851 config BUSYBOX_CONFIG_UUDECODE
3 office 852 bool "uudecode"
1 office 853 default BUSYBOX_DEFAULT_UUDECODE
854 help
3 office 855 uudecode is used to decode a uuencoded file.
1 office 856 config BUSYBOX_CONFIG_BASE64
3 office 857 bool "base64"
1 office 858 default BUSYBOX_DEFAULT_BASE64
859 help
3 office 860 Base64 encode and decode
1 office 861 config BUSYBOX_CONFIG_UUENCODE
3 office 862 bool "uuencode"
1 office 863 default BUSYBOX_DEFAULT_UUENCODE
864 help
3 office 865 uuencode is used to uuencode a file.
1 office 866 config BUSYBOX_CONFIG_WC
3 office 867 bool "wc"
1 office 868 default BUSYBOX_DEFAULT_WC
869 help
3 office 870 wc is used to print the number of bytes, words, and lines,
871 in specified files.
1 office 872  
873 config BUSYBOX_CONFIG_FEATURE_WC_LARGE
874 bool "Support very large counts"
875 default BUSYBOX_DEFAULT_FEATURE_WC_LARGE
876 depends on BUSYBOX_CONFIG_WC
877 help
3 office 878 Use "unsigned long long" for counter variables.
1 office 879 config BUSYBOX_CONFIG_WHO
3 office 880 bool "who"
881 default BUSYBOX_DEFAULT_WHO
882 depends on BUSYBOX_CONFIG_FEATURE_UTMP
883 help
884 who is used to show who is logged on.
1 office 885  
886 config BUSYBOX_CONFIG_W
3 office 887 bool "w"
888 default BUSYBOX_DEFAULT_W
889 depends on BUSYBOX_CONFIG_FEATURE_UTMP
890 help
891 w is used to show who is logged on.
1 office 892  
893 config BUSYBOX_CONFIG_USERS
3 office 894 bool "users"
895 default BUSYBOX_DEFAULT_USERS
896 depends on BUSYBOX_CONFIG_FEATURE_UTMP
897 help
898 Print users currently logged on.
1 office 899 config BUSYBOX_CONFIG_WHOAMI
3 office 900 bool "whoami"
1 office 901 default BUSYBOX_DEFAULT_WHOAMI
902 help
3 office 903 whoami is used to print the username of the current
904 user id (same as id -un).
1 office 905 config BUSYBOX_CONFIG_YES
3 office 906 bool "yes"
1 office 907 default BUSYBOX_DEFAULT_YES
908 help
3 office 909 yes is used to repeatedly output a specific string, or
910 the default string `y'.
1 office 911  
912 comment "Common options"
913  
914 config BUSYBOX_CONFIG_FEATURE_VERBOSE
915 bool "Support verbose options (usually -v) for various applets"
916 default BUSYBOX_DEFAULT_FEATURE_VERBOSE
917 help
3 office 918 Enable cp -v, rm -v and similar messages.
919 Also enables long option (--verbose) if it exists.
920 Without this option, -v is accepted but ignored.
1 office 921  
922 comment "Common options for cp and mv"
923 depends on BUSYBOX_CONFIG_CP || BUSYBOX_CONFIG_MV
924  
925 config BUSYBOX_CONFIG_FEATURE_PRESERVE_HARDLINKS
926 bool "Preserve hard links"
927 default BUSYBOX_DEFAULT_FEATURE_PRESERVE_HARDLINKS
928 depends on BUSYBOX_CONFIG_CP || BUSYBOX_CONFIG_MV
929 help
3 office 930 Allow cp and mv to preserve hard links.
1 office 931  
932 comment "Common options for df, du, ls"
933 depends on BUSYBOX_CONFIG_DF || BUSYBOX_CONFIG_DU || BUSYBOX_CONFIG_LS
934  
935 config BUSYBOX_CONFIG_FEATURE_HUMAN_READABLE
936 bool "Support human readable output (example 13k, 23M, 235G)"
937 default BUSYBOX_DEFAULT_FEATURE_HUMAN_READABLE
938 depends on BUSYBOX_CONFIG_DF || BUSYBOX_CONFIG_DU || BUSYBOX_CONFIG_LS
939 help
3 office 940 Allow df, du, and ls to have human readable output.
1 office 941  
942 endmenu