source: MondoRescue/branches/stable/mindi-busybox/coreutils/Config.in@ 1770

Last change on this file since 1770 was 1770, checked in by Bruno Cornec, 16 years ago
  • Better output for mindi-busybox revision
  • Remove dummy file created on NFS - report from Arnaud Tiger <arnaud.tiger_at_hp.com>
  • strace useful for debug
  • fix new versions for pb (2.0.0 for mindi and 1.7.2 for mindi-busybox)
  • fix build process for mindi-busybox + options used in that version (dd for label-partitions-as-necessary)
  • fix typo in label-partitions-as-necessary which doesn't seem to work
  • Update to busybox 1.7.2
  • perl is now required at restore time to support uuid swap partitions (and will be used for many other thigs

in the future for sure)

  • next mindi version will be 2.0.0 due to all the changes made in it (udev may break working distros)
  • small optimization in mindi on keyboard handling (one single find instead of multiple)
  • better interaction for USB device when launching mindi manually
  • attempt to automatically guess block disk size for ramdisk
  • fix typos in bkphw
  • Fix the remaining problem with UUID support for swap partitions
  • Updates mondoarchive man page for USB support
  • Adds preliminary Hardware support to mindi (Proliant SSSTK)
  • Tries to add udev support also for rhel4
  • Fix UUID support which was still broken.
  • Be conservative in test for the start-nfs script
  • Update config file for mindi-busybox for 1.7.2 migration
  • Try to run around a busybox bug (1.2.2 pb on inexistant links)
  • Add build content for mindi-busybox in pb
  • Remove distributions content for mindi-busybox
  • Fix a warning on inexistant raidtab
  • Solve problem on tmpfs in restore init (Problem of inexistant symlink and busybox)
  • Create MONDO_CACHE and use it everywhere + creation at start
  • Really never try to eject a USB device
  • Fix a issue with &> usage (replaced with 1> and 2>)
  • Adds magic file to depllist in order to have file working + ldd which helps for debugging issues
  • tty modes correct to avoid sh error messages
  • Use ext3 normally and not ext2 instead
  • USB device should be corrected after reading (take 1st part)
  • Adds a mount_USB_here function derived from mount_CDROM_here
  • usb detection place before /dev detection in device name at restore time
  • Fix when restoring from USB: media is asked in interactive mode
  • Adds USB support for mondorestore
  • mount_cdrom => mount_media
  • elilo.efi is now searched throughout /boot/efi and not in a fixed place as there is no standard
  • untar-and-softlink => untar (+ interface change)
  • suppress useless softlinks creation/removal in boot process
  • avoids udevd messages on groups
  • Increase # of disks to 99 as in mindi at restore time (should be a conf file parameter)
  • skip existing big file creation
  • seems to work correctly for USB mindi boot
  • Adds group and tty link to udev conf
  • Always load usb-torage (even 2.6) to initiate USB bus discovery
  • Better printing of messages
  • Attempt to fix a bug in supporting OpenSusE 10.3 kernel for initramfs (mindi may now use multiple regex for kernel initrd detection)
  • Links were not correctly done as non relative for modules in mindi
  • exclusion of modules denied now works
  • Also create modules in their ordinary place, so that classical modprobe works + copy modules.dep
  • Fix bugs for DENY_MODS handling
  • Add device /dev/console for udev
  • ide-generic should now really be excluded
  • Fix a bug in major number for tty
  • If udev then adds modprobe/insmod to rootfs
  • tty0 is also cretaed with udev
  • ide-generic put rather in DENY_MODS
  • udevd remove from deplist s handled in mindi directly
  • better default for mindi when using --usb
  • Handles dynamically linked busybox (in case we want to use it soon ;-)
  • Adds fixed devices to create for udev
  • ide-generic should not be part of the initrd when using libata v2
  • support a dynamically linked udev (case on Ubuntu 7.10 and Mandriva 2008.0 so should be quite generic) This will give incitation to move to dyn. linked binaries in the initrd which will help for other tasks (ia6 4)
  • Improvement in udev support (do not use cl options not available in busybox)
  • Udev in mindi
    • auto creation of the right links at boot time with udev-links.conf(from Mandriva 2008.0)
    • rework startup of udev as current makes kernel crash (from Mandriva 2008.0)
    • add support for 64 bits udev
  • Try to render MyInsmod silent at boot time
  • Adds udev support (mandatory for newest distributions to avoid remapping of devices in a different way as on the original system)
  • We also need vaft format support for USB boot
  • Adds libusual support (Ubuntu 7.10 needs it for USB)
  • Improve Ubuntu/Debian keyboard detection and support
  • pbinit adapted to new pb (0.8.10). Filtering of docs done in it
  • Suppress some mondo warnings and errors on USB again
  • Tries to fix lack of files in deb mindi package
  • Verify should now work for USB devices
  • More log/mesages improvement for USB support
  • - Supress g_erase_tmpdir_and_scratchdir
  • Improve some log messages for USB support
  • Try to improve install in mindi to avoid issues with isolinux.cfg not installed vene if in the pkg :-(
  • Improve mindi-busybox build
  • In conformity with pb 0.8.9
  • Add support for Ubuntu 7.10 in build process
  • Add USB Key button to Menu UI (CD streamer removed)
  • Attempt to fix error messages on tmp/scratch files at the end by removing those dir at the latest possible.
  • Fix a bug linked to the size of the -E param which could be used (Arnaud Tiger/René Ribaud).
  • Integrate ~/.pbrc content into mondorescue.pb (required project-builder >= 0.8.7)
  • Put mondorescue in conformity with new pb filtering rules
  • Add USB support at restore time (no test done yet). New start-usb script PB varibale added where useful
  • Unmounting USB device before removal of temporary scratchdir
  • Stil refining USB copy back to mondo (one command was not executed)
  • No need to have the image subdor in the csratchdir when USB.
  • umount the USB partition before attempting to use it
  • Remove useless copy from mindi to mondo at end of USB handling

(risky merge, we are raising the limits of 2 diverging branches. The status of stable is not completely sure as such. Will need lots of tests, but it's not yet done :-()
(merge -r1692:1769 $SVN_M/branches/2.2.5)

File size: 16.3 KB
RevLine 
[821]1#
2# For a description of the syntax of this configuration file,
3# see scripts/kbuild/config-language.txt.
4#
5
6menu "Coreutils"
7
[1770]8config BASENAME
[821]9 bool "basename"
10 default n
11 help
12 basename is used to strip the directory and suffix from filenames,
13 leaving just the filename itself. Enable this option if you wish
14 to enable the 'basename' utility.
15
[1770]16config CAL
[821]17 bool "cal"
18 default n
19 help
20 cal is used to display a monthly calender.
21
[1770]22config CAT
[821]23 bool "cat"
24 default n
25 help
26 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.
28
[1770]29config CATV
[821]30 bool "catv"
31 default n
32 help
33 Display nonprinting characters as escape sequences (like some
34 implementations' cat -v option).
35
[1770]36config CHGRP
[821]37 bool "chgrp"
38 default n
39 help
40 chgrp is used to change the group ownership of files.
41
[1770]42config CHMOD
[821]43 bool "chmod"
44 default n
45 help
46 chmod is used to change the access permission of files.
47
[1770]48config CHOWN
[821]49 bool "chown"
50 default n
51 help
52 chown is used to change the user and/or group ownership
53 of files.
54
[1770]55config CHROOT
[821]56 bool "chroot"
57 default n
58 help
59 chroot is used to change the root directory and run a command.
60 The default command is `/bin/sh'.
61
[1770]62config CKSUM
[821]63 bool "cksum"
64 default n
65 help
66 cksum is used to calculate the CRC32 checksum of a file.
67
[1770]68config COMM
[821]69 bool "comm"
70 default n
71 help
72 comm is used to compare two files line by line and return
73 a three-column output.
74
[1770]75config CP
[821]76 bool "cp"
77 default n
78 help
79 cp is used to copy files and directories.
80
[1770]81config CUT
[821]82 bool "cut"
83 default n
84 help
85 cut is used to print selected parts of lines from
86 each file to stdout.
87
[1770]88config DATE
[821]89 bool "date"
90 default n
91 help
92 date is used to set the system date or display the
93 current time in the given format.
94
[1770]95config FEATURE_DATE_ISOFMT
[821]96 bool "Enable ISO date format output (-I)"
97 default y
[1770]98 depends on DATE
[821]99 help
100 Enable option (-I) to output an ISO-8601 compliant
101 date/time string.
102
[1770]103config DD
[821]104 bool "dd"
105 default n
106 help
107 dd copies a file (from standard input to standard output,
108 by default) using specific input and output blocksizes,
109 while optionally performing conversions on it.
110
[1770]111config FEATURE_DD_SIGNAL_HANDLING
[821]112 bool "Enable DD signal handling for status reporting"
113 default y
[1770]114 depends on DD
[821]115 help
[1770]116 sending a SIGUSR1 signal to a running `dd' process makes it
117 print to standard error the number of records read and written
[821]118 so far, then to resume copying.
119
[1770]120 $ dd if=/dev/zero of=/dev/null& pid=$! $ kill -USR1 $pid; sleep 1; kill $pid
[821]121 10899206+0 records in 10899206+0 records out
122
[1770]123config FEATURE_DD_IBS_OBS
[821]124 bool "Enable ibs, obs and conv options"
125 default n
[1770]126 depends on DD
[821]127 help
128 Enables support for writing a certain number of bytes in and out,
129 at a time, and performing conversions on the data stream.
130
[1770]131config DF
[821]132 bool "df"
133 default n
134 help
135 df reports the amount of disk space used and available
136 on filesystems.
137
[1770]138config DIRNAME
[821]139 bool "dirname"
140 default n
141 help
142 dirname is used to strip a non-directory suffix from
143 a file name.
144
[1770]145config DOS2UNIX
[821]146 bool "dos2unix/unix2dos"
147 default n
148 help
149 dos2unix is used to convert a text file from DOS format to
150 UNIX format, and vice versa.
151
[1770]152config UNIX2DOS
[821]153 bool
154 default y
[1770]155 depends on DOS2UNIX
[821]156 help
157 unix2dos is used to convert a text file from UNIX format to
158 DOS format, and vice versa.
159
[1770]160config DU
[821]161 bool "du (default blocksize of 512 bytes)"
162 default n
163 help
164 du is used to report the amount of disk space used
165 for specified files.
166
[1770]167config FEATURE_DU_DEFAULT_BLOCKSIZE_1K
[821]168 bool "Use a default blocksize of 1024 bytes (1K)"
169 default y
[1770]170 depends on DU
[821]171 help
172 Use a blocksize of (1K) instead of the default 512b.
173
[1770]174config ECHO
[821]175 bool "echo (basic SuSv3 version taking no options)"
176 default n
177 help
178 echo is used to print a specified string to stdout.
179
180# this entry also appears in shell/Config.in, next to the echo builtin
[1770]181config FEATURE_FANCY_ECHO
[821]182 bool "Enable echo options (-n and -e)"
183 default y
[1770]184 depends on ECHO
[821]185 help
186 This adds options (-n and -e) to echo.
187
[1770]188config ENV
[821]189 bool "env"
190 default n
191 help
192 env is used to set an environment variable and run
193 a command; without options it displays the current
194 environment.
195
[1770]196config FEATURE_ENV_LONG_OPTIONS
[821]197 bool "Enable long options"
198 default n
[1770]199 depends on ENV && GETOPT_LONG
[821]200 help
201 Support long options for the env applet.
202
[1770]203config EXPAND
204 bool "expand"
205 default n
206 help
207 By default, convert all tabs to spaces.
208
209config FEATURE_EXPAND_LONG_OPTIONS
210 bool "Enable long options"
211 default n
212 depends on EXPAND && GETOPT_LONG
213 help
214 Support long options for the expand applet.
215
216config EXPR
[821]217 bool "expr"
218 default n
219 help
220 expr is used to calculate numbers and print the result
221 to standard output.
222
[1770]223config EXPR_MATH_SUPPORT_64
[821]224 bool "Extend Posix numbers support to 64 bit"
225 default n
[1770]226 depends on EXPR
[821]227 help
228 Enable 64-bit math support in the expr applet. This will make
229 the applet slightly larger, but will allow computation with very
230 large numbers.
231
[1770]232config FALSE
[821]233 bool "false"
234 default n
235 help
236 false returns an exit code of FALSE (1).
237
[1770]238config FOLD
[821]239 bool "fold"
240 default n
241 help
242 Wrap text to fit a specific width.
243
[1770]244config HEAD
[821]245 bool "head"
246 default n
247 help
248 head is used to print the first specified number of lines
249 from files.
250
[1770]251config FEATURE_FANCY_HEAD
[821]252 bool "Enable head options (-c, -q, and -v)"
253 default n
[1770]254 depends on HEAD
[821]255 help
256 This enables the head options (-c, -q, and -v).
257
[1770]258config HOSTID
[821]259 bool "hostid"
260 default n
261 help
262 hostid prints the numeric identifier (in hexadecimal) for
263 the current host.
264
[1770]265config ID
[821]266 bool "id"
267 default n
268 help
269 id displays the current user and group ID names.
270
[1770]271config INSTALL
[821]272 bool "install"
273 default n
274 help
275 Copy files and set attributes.
276
[1770]277config FEATURE_INSTALL_LONG_OPTIONS
[821]278 bool "Enable long options"
279 default n
[1770]280 depends on INSTALL && GETOPT_LONG
[821]281 help
282 Support long options for the install applet.
283
[1770]284config LENGTH
[821]285 bool "length"
286 default n
287 help
288 length is used to print out the length of a specified string.
289
[1770]290config LN
[821]291 bool "ln"
292 default n
293 help
294 ln is used to create hard or soft links between files.
295
[1770]296config LOGNAME
[821]297 bool "logname"
298 default n
299 help
300 logname is used to print the current user's login name.
301
[1770]302config LS
[821]303 bool "ls"
304 default n
305 help
306 ls is used to list the contents of directories.
307
[1770]308config FEATURE_LS_FILETYPES
[821]309 bool "Enable filetyping options (-p and -F)"
310 default y
[1770]311 depends on LS
[821]312 help
313 Enable the ls options (-p and -F).
314
[1770]315config FEATURE_LS_FOLLOWLINKS
[821]316 bool "Enable symlinks dereferencing (-L)"
317 default y
[1770]318 depends on LS
[821]319 help
320 Enable the ls option (-L).
321
[1770]322config FEATURE_LS_RECURSIVE
[821]323 bool "Enable recursion (-R)"
324 default y
[1770]325 depends on LS
[821]326 help
327 Enable the ls option (-R).
328
[1770]329config FEATURE_LS_SORTFILES
[821]330 bool "Sort the file names"
331 default y
[1770]332 depends on LS
[821]333 help
334 Allow ls to sort file names alphabetically.
335
[1770]336config FEATURE_LS_TIMESTAMPS
[821]337 bool "Show file timestamps"
338 default y
[1770]339 depends on LS
[821]340 help
341 Allow ls to display timestamps for files.
342
[1770]343config FEATURE_LS_USERNAME
[821]344 bool "Show username/groupnames"
345 default y
[1770]346 depends on LS
[821]347 help
348 Allow ls to display username/groupname for files.
349
[1770]350config FEATURE_LS_COLOR
[821]351 bool "Allow use of color to identify file types"
352 default y
[1770]353 depends on LS && GETOPT_LONG
[821]354 help
355 This enables the --color option to ls.
356
[1770]357config FEATURE_LS_COLOR_IS_DEFAULT
[821]358 bool "Produce colored ls output by default"
359 default n
[1770]360 depends on FEATURE_LS_COLOR
[821]361 help
362 Saying yes here will turn coloring on by default,
363 even if no "--color" option is given to the ls command.
364 This is not recommended, since the colors are not
365 configurable, and the output may not be legible on
366 many output screens.
367
[1770]368config MD5SUM
[821]369 bool "md5sum"
370 default n
371 help
372 md5sum is used to print or check MD5 checksums.
373
[1770]374config MKDIR
[821]375 bool "mkdir"
376 default n
377 help
378 mkdir is used to create directories with the specified names.
379
[1770]380config FEATURE_MKDIR_LONG_OPTIONS
[821]381 bool "Enable long options"
382 default n
[1770]383 depends on MKDIR && GETOPT_LONG
[821]384 help
385 Support long options for the mkdir applet.
386
[1770]387config MKFIFO
[821]388 bool "mkfifo"
389 default n
390 help
391 mkfifo is used to create FIFOs (named pipes).
392 The `mknod' program can also create FIFOs.
393
[1770]394config MKNOD
[821]395 bool "mknod"
396 default n
397 help
398 mknod is used to create FIFOs or block/character special
399 files with the specified names.
400
[1770]401config MV
[821]402 bool "mv"
403 default n
404 help
405 mv is used to move or rename files or directories.
406
[1770]407config FEATURE_MV_LONG_OPTIONS
[821]408 bool "Enable long options"
409 default n
[1770]410 depends on MV && GETOPT_LONG
[821]411 help
412 Support long options for the mv applet.
413
[1770]414config NICE
[821]415 bool "nice"
416 default n
417 help
418 nice runs a program with modified scheduling priority.
419
[1770]420config NOHUP
[821]421 bool "nohup"
422 default n
423 help
424 run a command immune to hangups, with output to a non-tty.
425
[1770]426config OD
[821]427 bool "od"
428 default n
429 help
430 od is used to dump binary files in octal and other formats.
431
[1770]432config PRINTENV
[821]433 bool "printenv"
434 default n
435 help
436 printenv is used to print all or part of environment.
437
[1770]438config PRINTF
[821]439 bool "printf"
440 default n
441 help
442 printf is used to format and print specified strings.
443 It's similar to `echo' except it has more options.
444
[1770]445config PWD
[821]446 bool "pwd"
447 default n
448 help
449 pwd is used to print the current directory.
450
[1770]451config READLINK
452 bool "readlink"
453 default n
454 help
455 This program reads a symbolic link and returns the name
456 of the file it points to
457
458config FEATURE_READLINK_FOLLOW
459 bool "Enable canonicalization by following all symlinks (-f)"
460 default n
461 depends on READLINK
462 help
463 Enable the readlink option (-f).
464
465config REALPATH
[821]466 bool "realpath"
467 default n
468 help
469 Return the canonicalized absolute pathname.
470 This isn't provided by GNU shellutils, but where else does it belong.
471
[1770]472config RM
[821]473 bool "rm"
474 default n
475 help
476 rm is used to remove files or directories.
477
[1770]478config RMDIR
[821]479 bool "rmdir"
480 default n
481 help
482 rmdir is used to remove empty directories.
483
[1770]484config SEQ
[821]485 bool "seq"
486 default n
487 help
488 print a sequence of numbers
489
[1770]490config SHA1SUM
[821]491 bool "sha1sum"
492 default n
493 help
494 Compute and check SHA1 message digest
495
[1770]496config SLEEP
[821]497 bool "sleep (single integer arg with no suffix)"
498 default n
499 help
500 sleep is used to pause for a specified number of seconds,
501
[1770]502config FEATURE_FANCY_SLEEP
[821]503 bool "Enable multiple integer args and optional time suffixes"
504 default n
[1770]505 depends on SLEEP
[821]506 help
507 Allow sleep to pause for specified minutes, hours, and days.
508
[1770]509config SORT
[821]510 bool "sort"
511 default n
512 help
513 sort is used to sort lines of text in specified files.
514
[1770]515config FEATURE_SORT_BIG
[821]516 bool "full SuSv3 compliant sort (Support -ktcsbdfiozgM)"
517 default y
[1770]518 depends on SORT
[821]519 help
520 Without this, sort only supports -r, -u, and an integer version
521 of -n. Selecting this adds sort keys, floating point support, and
522 more. This adds a little over 3k to a nonstatic build on x86.
523
524 The SuSv3 sort standard is available at:
525 http://www.opengroup.org/onlinepubs/007904975/utilities/sort.html
526
[1770]527config SPLIT
528 bool "split"
529 default n
530 help
531 split a file into pieces.
532
533config FEATURE_SPLIT_FANCY
534 bool "fancy extensions"
535 default n
536 depends on SPLIT
537 help
538 Add support for features not required by SUSv3.
539 Supports additional suffixes 'b' for 512 bytes,
540 'g' for 1GiB for the -b option.
541
542config STAT
[821]543 bool "stat"
544 default n
545 help
546 display file or filesystem status.
547
[1770]548config FEATURE_STAT_FORMAT
[821]549 bool "Enable custom formats (-c)"
550 default n
[1770]551 depends on STAT
[821]552 help
553 Without this, stat will not support the '-c format' option where
554 users can pass a custom format string for output. This adds about
555 7k to a nonstatic build on amd64.
556
[1770]557config STTY
[821]558 bool "stty"
559 default n
560 help
561 stty is used to change and print terminal line settings.
562
[1770]563config SUM
[821]564 bool "sum"
565 default n
566 help
567 checksum and count the blocks in a file
568
[1770]569config SYNC
[821]570 bool "sync"
571 default n
572 help
573 sync is used to flush filesystem buffers.
574
[1770]575config TAIL
[821]576 bool "tail"
577 default n
578 help
579 tail is used to print the last specified number of lines
580 from files.
581
[1770]582config FEATURE_FANCY_TAIL
[821]583 bool "Enable extra tail options (-q, -s, and -v)"
584 default y
[1770]585 depends on TAIL
[821]586 help
587 The options (-q, -s, and -v) are provided by GNU tail, but
588 are not specific in the SUSv3 standard.
589
[1770]590config TEE
[821]591 bool "tee"
592 default n
593 help
594 tee is used to read from standard input and write
595 to standard output and files.
596
[1770]597config FEATURE_TEE_USE_BLOCK_IO
[821]598 bool "Enable block i/o (larger/faster) instead of byte i/o."
599 default n
[1770]600 depends on TEE
[821]601 help
602 Enable this option for a faster tee, at expense of size.
603
[1770]604config TEST
[821]605 bool "test"
606 default n
607 help
608 test is used to check file types and compare values,
609 returning an appropriate exit code. The bash shell
610 has test built in, ash can build it in optionally.
611
[1770]612config FEATURE_TEST_64
[821]613 bool "Extend test to 64 bit"
614 default n
[1770]615 depends on TEST
[821]616 help
617 Enable 64-bit support in test.
618
[1770]619config TOUCH
[821]620 bool "touch"
621 default n
622 help
623 touch is used to create or change the access and/or
624 modification timestamp of specified files.
625
[1770]626config TR
[821]627 bool "tr"
628 default n
629 help
630 tr is used to squeeze, and/or delete characters from standard
631 input, writing to standard output.
632
[1770]633config FEATURE_TR_CLASSES
[821]634 bool "Enable character classes (such as [:upper:])"
635 default n
[1770]636 depends on TR
[821]637 help
638 Enable character classes, enabling commands such as:
639 tr [:upper:] [:lower:] to convert input into lowercase.
640
[1770]641config FEATURE_TR_EQUIV
[821]642 bool "Enable equivalence classes"
643 default n
[1770]644 depends on TR
[821]645 help
646 Enable equivalence classes, which essentially add the enclosed
647 character to the current set. For instance, tr [=a=] xyz would
648 replace all instances of 'a' with 'xyz'. This option is mainly
649 useful for cases when no other way of expressing a character
650 is possible.
651
[1770]652config TRUE
[821]653 bool "true"
654 default n
655 help
656 true returns an exit code of TRUE (0).
657
[1770]658config TTY
[821]659 bool "tty"
660 default n
661 help
662 tty is used to print the name of the current terminal to
663 standard output.
664
[1770]665config UNAME
[821]666 bool "uname"
667 default n
668 help
669 uname is used to print system information.
670
[1770]671config UNEXPAND
672 bool "unexpand"
673 default n
674 help
675 By default, convert only leading sequences of blanks to tabs.
676
677config FEATURE_UNEXPAND_LONG_OPTIONS
678 bool "Enable long options"
679 default n
680 depends on UNEXPAND && GETOPT_LONG
681 help
682 Support long options for the unexpand applet.
683
684config UNIQ
[821]685 bool "uniq"
686 default n
687 help
688 uniq is used to remove duplicate lines from a sorted file.
689
[1770]690config USLEEP
[821]691 bool "usleep"
692 default n
693 help
694 usleep is used to pause for a specified number of microseconds.
695
[1770]696config UUDECODE
[821]697 bool "uudecode"
698 default n
699 help
700 uudecode is used to decode a uuencoded file.
701
[1770]702config UUENCODE
[821]703 bool "uuencode"
704 default n
705 help
706 uuencode is used to uuencode a file.
707
[1770]708config WC
[821]709 bool "wc"
710 default n
711 help
712 wc is used to print the number of bytes, words, and lines,
713 in specified files.
714
[1770]715config FEATURE_WC_LARGE
716 bool "Support very large files in wc"
717 default n
718 depends on WC
719 help
720 Use "unsigned long long" in wc for count variables
721
722config WHO
[821]723 bool "who"
724 default n
[1770]725 select FEATURE_UTMP
[821]726 help
727 who is used to show who is logged on.
728
[1770]729config WHOAMI
[821]730 bool "whoami"
731 default n
732 help
733 whoami is used to print the username of the current
734 user id (same as id -un).
735
[1770]736config YES
[821]737 bool "yes"
738 default n
739 help
740 yes is used to repeatedly output a specific string, or
741 the default string `y'.
742
743comment "Common options for cp and mv"
[1770]744 depends on CP || MV
[821]745
[1770]746config FEATURE_PRESERVE_HARDLINKS
[821]747 bool "Preserve hard links"
748 default n
[1770]749 depends on CP || MV
[821]750 help
751 Allow cp and mv to preserve hard links.
752
753comment "Common options for ls, more and telnet"
[1770]754 depends on LS || MORE || TELNET
[821]755
[1770]756config FEATURE_AUTOWIDTH
[821]757 bool "Calculate terminal & column widths"
758 default y
[1770]759 depends on LS || MORE || TELNET
[821]760 help
761 This option allows utilities such as 'ls', 'more' and 'telnet'
[1770]762 to determine the width of the screen, which can allow them to
[821]763 display additional text or avoid wrapping text onto the next line.
[1770]764 If you leave this disabled, your utilities will be especially
[821]765 primitive and will be unable to determine the current screen width.
766
767comment "Common options for df, du, ls"
[1770]768 depends on DF || DU || LS
[821]769
[1770]770config FEATURE_HUMAN_READABLE
[821]771 bool "Support for human readable output (example 13k, 23M, 235G)"
772 default n
[1770]773 depends on DF || DU || LS
[821]774 help
775 Allow df, du, and ls to have human readable output.
776
777comment "Common options for md5sum, sha1sum"
[1770]778 depends on MD5SUM || SHA1SUM
[821]779
[1770]780config FEATURE_MD5_SHA1_SUM_CHECK
[821]781 bool "Enable -c, -s and -w options"
782 default n
[1770]783 depends on MD5SUM || SHA1SUM
[821]784 help
785 Enabling the -c options allows files to be checked
786 against pre-calculated hash values.
787
788 -s and -w are useful options when verifying checksums.
789
790endmenu
Note: See TracBrowser for help on using the repository browser.