Ignore:
Timestamp:
Feb 25, 2011, 9:26:54 PM (13 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.9/mindi-busybox/coreutils/Config.in

    r1765 r2725  
     1# DO NOT EDIT. This file is generated from Config.src
    12#
    23# For a description of the syntax of this configuration file,
     
    89config BASENAME
    910    bool "basename"
     11    default y
     12    help
     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.
     16config CAT
     17    bool "cat"
     18    default y
     19    help
     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.
     22config DATE
     23    bool "date"
     24    default y
     25    help
     26      date is used to set the system date or display the
     27      current time in the given format.
     28
     29config FEATURE_DATE_ISOFMT
     30    bool "Enable ISO date format output (-I)"
     31    default y
     32    depends on DATE
     33    help
     34      Enable option (-I) to output an ISO-8601 compliant
     35      date/time string.
     36
     37# defaults to "no": stat's nanosecond field is a bit non-portable
     38config FEATURE_DATE_NANO
     39    bool "Support %[num]N nanosecond format specifier"
    1040    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.
     41    depends on DATE && PLATFORM_LINUX # syscall(__NR_clock_gettime)
     42    help
     43      Support %[num]N format specifier. Adds ~250 bytes of code.
     44
     45config FEATURE_DATE_COMPAT
     46    bool "Support weird 'date MMDDhhmm[[YY]YY][.ss]' format"
     47    default y
     48    depends on DATE
     49    help
     50      System time can be set by 'date -s DATE' and simply 'date DATE',
     51      but formats of DATE string are different. 'date DATE' accepts
     52      a rather weird MMDDhhmm[[YY]YY][.ss] format with completely
     53      unnatural placement of year between minutes and seconds.
     54      date -s (and other commands like touch -d) use more sensible
     55      formats (for one, ISO format YYYY-MM-DD hh:mm:ss.ssssss).
     56
     57      With this option off, 'date DATE' is 'date -s DATE' support
     58      the same format. With it on, 'date DATE' additionally supports
     59      MMDDhhmm[[YY]YY][.ss] format.
     60config TEST
     61    bool "test"
     62    default y
     63    help
     64      test is used to check file types and compare values,
     65      returning an appropriate exit code. The bash shell
     66      has test built in, ash can build it in optionally.
     67
     68config FEATURE_TEST_64
     69    bool "Extend test to 64 bit"
     70    default y
     71    depends on TEST || ASH_BUILTIN_TEST || HUSH
     72    help
     73      Enable 64-bit support in test.
     74config TR
     75    bool "tr"
     76    default y
     77    help
     78      tr is used to squeeze, and/or delete characters from standard
     79      input, writing to standard output.
     80
     81config FEATURE_TR_CLASSES
     82    bool "Enable character classes (such as [:upper:])"
     83    default y
     84    depends on TR
     85    help
     86      Enable character classes, enabling commands such as:
     87      tr [:upper:] [:lower:] to convert input into lowercase.
     88
     89config FEATURE_TR_EQUIV
     90    bool "Enable equivalence classes"
     91    default y
     92    depends on TR
     93    help
     94      Enable equivalence classes, which essentially add the enclosed
     95      character to the current set. For instance, tr [=a=] xyz would
     96      replace all instances of 'a' with 'xyz'. This option is mainly
     97      useful for cases when no other way of expressing a character
     98      is possible.
     99config BASE64
     100    bool "base64"
     101    default y
     102    help
     103      Base64 encode and decode
    15104
    16105config CAL
    17106    bool "cal"
    18     default n
     107    default y
    19108    help
    20109      cal is used to display a monthly calender.
    21 
    22 config CAT
    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.
    28110
    29111config CATV
    30112    bool "catv"
    31     default n
     113    default y
    32114    help
    33115      Display nonprinting characters as escape sequences (like some
     
    36118config CHGRP
    37119    bool "chgrp"
    38     default n
     120    default y
    39121    help
    40122      chgrp is used to change the group ownership of files.
     
    42124config CHMOD
    43125    bool "chmod"
    44     default n
     126    default y
    45127    help
    46128      chmod is used to change the access permission of files.
     
    48130config CHOWN
    49131    bool "chown"
    50     default n
     132    default y
    51133    help
    52134      chown is used to change the user and/or group ownership
    53135      of files.
    54136
     137config FEATURE_CHOWN_LONG_OPTIONS
     138    bool "Enable long options"
     139    default y
     140    depends on CHOWN && LONG_OPTS
     141    help
     142      Enable use of long options
     143
    55144config CHROOT
    56145    bool "chroot"
    57     default n
     146    default y
    58147    help
    59148      chroot is used to change the root directory and run a command.
     
    62151config CKSUM
    63152    bool "cksum"
    64     default n
     153    default y
    65154    help
    66155      cksum is used to calculate the CRC32 checksum of a file.
     
    68157config COMM
    69158    bool "comm"
    70     default n
     159    default y
    71160    help
    72161      comm is used to compare two files line by line and return
     
    75164config CP
    76165    bool "cp"
    77     default n
     166    default y
    78167    help
    79168      cp is used to copy files and directories.
     169
     170config FEATURE_CP_LONG_OPTIONS
     171    bool "Enable long options for cp"
     172    default y
     173    depends on CP && LONG_OPTS
     174    help
     175      Enable long options for cp.
     176      Also add support for --parents option.
    80177
    81178config CUT
    82179    bool "cut"
    83     default n
     180    default y
    84181    help
    85182      cut is used to print selected parts of lines from
    86183      each file to stdout.
    87184
    88 config DATE
    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 
    95 config FEATURE_DATE_ISOFMT
    96     bool "Enable ISO date format output (-I)"
    97     default y
    98     depends on DATE
    99     help
    100       Enable option (-I) to output an ISO-8601 compliant
    101       date/time string.
    102 
    103185config DD
    104186    bool "dd"
    105     default n
     187    default y
    106188    help
    107189      dd copies a file (from standard input to standard output,
     
    114196    depends on DD
    115197    help
    116       sending a SIGUSR1 signal to a running `dd' process makes it
     198      Sending a SIGUSR1 signal to a running `dd' process makes it
    117199      print to standard error the number of records read and written
    118200      so far, then to resume copying.
    119201
    120       $ dd if=/dev/zero of=/dev/null& pid=$! $ kill -USR1 $pid; sleep 1; kill $pid
    121       10899206+0 records in 10899206+0 records out
     202      $ dd if=/dev/zero of=/dev/null&
     203      $ pid=$! kill -USR1 $pid; sleep 1; kill $pid
     204      10899206+0 records in
     205      10899206+0 records out
     206
     207config FEATURE_DD_THIRD_STATUS_LINE
     208    bool "Enable the third status line upon signal"
     209    default y
     210    depends on DD && FEATURE_DD_SIGNAL_HANDLING
     211    help
     212      Displays a coreutils-like third status line with transferred bytes,
     213      elapsed time and speed.
    122214
    123215config FEATURE_DD_IBS_OBS
    124216    bool "Enable ibs, obs and conv options"
    125     default n
     217    default y
    126218    depends on DD
    127219    help
     
    131223config DF
    132224    bool "df"
    133     default n
     225    default y
    134226    help
    135227      df reports the amount of disk space used and available
    136228      on filesystems.
    137229
     230config FEATURE_DF_FANCY
     231    bool "Enable -a, -i, -B"
     232    default y
     233    depends on DF
     234    help
     235      This option enables -a, -i and -B.
     236
     237        -a Show all filesystems
     238        -i Inodes
     239        -B <SIZE> Blocksize
     240
    138241config DIRNAME
    139242    bool "dirname"
    140     default n
     243    default y
    141244    help
    142245      dirname is used to strip a non-directory suffix from
     
    145248config DOS2UNIX
    146249    bool "dos2unix/unix2dos"
    147     default n
     250    default y
    148251    help
    149252      dos2unix is used to convert a text file from DOS format to
     
    160263config DU
    161264    bool "du (default blocksize of 512 bytes)"
    162     default n
     265    default y
    163266    help
    164267      du is used to report the amount of disk space used
     
    174277config ECHO
    175278    bool "echo (basic SuSv3 version taking no options)"
    176     default n
     279    default y
    177280    help
    178281      echo is used to print a specified string to stdout.
     
    182285    bool "Enable echo options (-n and -e)"
    183286    default y
    184     depends on ECHO
     287    depends on ECHO || ASH_BUILTIN_ECHO || HUSH
    185288    help
    186289      This adds options (-n and -e) to echo.
     
    188291config ENV
    189292    bool "env"
    190     default n
     293    default y
    191294    help
    192295      env is used to set an environment variable and run
     
    196299config FEATURE_ENV_LONG_OPTIONS
    197300    bool "Enable long options"
    198     default n
    199     depends on ENV && GETOPT_LONG
     301    default y
     302    depends on ENV && LONG_OPTS
    200303    help
    201304      Support long options for the env applet.
     
    203306config EXPAND
    204307    bool "expand"
    205     default n
     308    default y
    206309    help
    207310      By default, convert all tabs to spaces.
     
    209312config FEATURE_EXPAND_LONG_OPTIONS
    210313    bool "Enable long options"
    211     default n
    212     depends on EXPAND && GETOPT_LONG
     314    default y
     315    depends on EXPAND && LONG_OPTS
    213316    help
    214317      Support long options for the expand applet.
     
    216319config EXPR
    217320    bool "expr"
    218     default n
     321    default y
    219322    help
    220323      expr is used to calculate numbers and print the result
     
    223326config EXPR_MATH_SUPPORT_64
    224327    bool "Extend Posix numbers support to 64 bit"
    225     default n
     328    default y
    226329    depends on EXPR
    227330    help
    228       Enable 64-bit math support in the expr applet.  This will make
     331      Enable 64-bit math support in the expr applet. This will make
    229332      the applet slightly larger, but will allow computation with very
    230333      large numbers.
     
    232335config FALSE
    233336    bool "false"
    234     default n
     337    default y
    235338    help
    236339      false returns an exit code of FALSE (1).
     
    238341config FOLD
    239342    bool "fold"
    240     default n
     343    default y
    241344    help
    242345      Wrap text to fit a specific width.
     346
     347config FSYNC
     348    bool "fsync"
     349    default y
     350    help
     351      fsync is used to flush file-related cached blocks to disk.
    243352
    244353config HEAD
    245354    bool "head"
    246     default n
     355    default y
    247356    help
    248357      head is used to print the first specified number of lines
     
    251360config FEATURE_FANCY_HEAD
    252361    bool "Enable head options (-c, -q, and -v)"
    253     default n
     362    default y
    254363    depends on HEAD
    255364    help
     
    258367config HOSTID
    259368    bool "hostid"
    260     default n
     369    default y
    261370    help
    262371      hostid prints the numeric identifier (in hexadecimal) for
     
    265374config ID
    266375    bool "id"
    267     default n
     376    default y
    268377    help
    269378      id displays the current user and group ID names.
     
    271380config INSTALL
    272381    bool "install"
    273     default n
     382    default y
    274383    help
    275384      Copy files and set attributes.
     
    277386config FEATURE_INSTALL_LONG_OPTIONS
    278387    bool "Enable long options"
    279     default n
    280     depends on INSTALL && GETOPT_LONG
     388    default y
     389    depends on INSTALL && LONG_OPTS
    281390    help
    282391      Support long options for the install applet.
     
    284393config LENGTH
    285394    bool "length"
    286     default n
     395    default y
    287396    help
    288397      length is used to print out the length of a specified string.
     
    290399config LN
    291400    bool "ln"
    292     default n
     401    default y
    293402    help
    294403      ln is used to create hard or soft links between files.
     
    296405config LOGNAME
    297406    bool "logname"
    298     default n
     407    default y
    299408    help
    300409      logname is used to print the current user's login name.
     
    302411config LS
    303412    bool "ls"
    304     default n
     413    default y
    305414    help
    306415      ls is used to list the contents of directories.
     
    351460    bool "Allow use of color to identify file types"
    352461    default y
    353     depends on LS && GETOPT_LONG
     462    depends on LS && LONG_OPTS
    354463    help
    355464      This enables the --color option to ls.
     
    357466config FEATURE_LS_COLOR_IS_DEFAULT
    358467    bool "Produce colored ls output by default"
    359     default n
     468    default y
    360469    depends on FEATURE_LS_COLOR
    361470    help
     
    368477config MD5SUM
    369478    bool "md5sum"
    370     default n
     479    default y
    371480    help
    372481      md5sum is used to print or check MD5 checksums.
     
    374483config MKDIR
    375484    bool "mkdir"
    376     default n
     485    default y
    377486    help
    378487      mkdir is used to create directories with the specified names.
     
    380489config FEATURE_MKDIR_LONG_OPTIONS
    381490    bool "Enable long options"
    382     default n
    383     depends on MKDIR && GETOPT_LONG
     491    default y
     492    depends on MKDIR && LONG_OPTS
    384493    help
    385494      Support long options for the mkdir applet.
     
    387496config MKFIFO
    388497    bool "mkfifo"
    389     default n
     498    default y
    390499    help
    391500      mkfifo is used to create FIFOs (named pipes).
     
    394503config MKNOD
    395504    bool "mknod"
    396     default n
     505    default y
    397506    help
    398507      mknod is used to create FIFOs or block/character special
     
    401510config MV
    402511    bool "mv"
    403     default n
     512    default y
    404513    help
    405514      mv is used to move or rename files or directories.
     
    407516config FEATURE_MV_LONG_OPTIONS
    408517    bool "Enable long options"
    409     default n
    410     depends on MV && GETOPT_LONG
     518    default y
     519    depends on MV && LONG_OPTS
    411520    help
    412521      Support long options for the mv applet.
     
    414523config NICE
    415524    bool "nice"
    416     default n
     525    default y
    417526    help
    418527      nice runs a program with modified scheduling priority.
     
    420529config NOHUP
    421530    bool "nohup"
    422     default n
     531    default y
    423532    help
    424533      run a command immune to hangups, with output to a non-tty.
     
    426535config OD
    427536    bool "od"
    428     default n
     537    default y
    429538    help
    430539      od is used to dump binary files in octal and other formats.
     
    432541config PRINTENV
    433542    bool "printenv"
    434     default n
     543    default y
    435544    help
    436545      printenv is used to print all or part of environment.
     
    438547config PRINTF
    439548    bool "printf"
    440     default n
     549    default y
    441550    help
    442551      printf is used to format and print specified strings.
     
    445554config PWD
    446555    bool "pwd"
    447     default n
     556    default y
    448557    help
    449558      pwd is used to print the current directory.
     
    451560config READLINK
    452561    bool "readlink"
    453     default n
     562    default y
    454563    help
    455564      This program reads a symbolic link and returns the name
     
    458567config FEATURE_READLINK_FOLLOW
    459568    bool "Enable canonicalization by following all symlinks (-f)"
    460     default n
     569    default y
    461570    depends on READLINK
    462571    help
     
    465574config REALPATH
    466575    bool "realpath"
    467     default n
     576    default y
    468577    help
    469578      Return the canonicalized absolute pathname.
     
    472581config RM
    473582    bool "rm"
    474     default n
     583    default y
    475584    help
    476585      rm is used to remove files or directories.
     
    478587config RMDIR
    479588    bool "rmdir"
    480     default n
     589    default y
    481590    help
    482591      rmdir is used to remove empty directories.
     592
     593config FEATURE_RMDIR_LONG_OPTIONS
     594    bool "Enable long options"
     595    default y
     596    depends on RMDIR && LONG_OPTS
     597    help
     598      Support long options for the rmdir applet, including
     599      --ignore-fail-on-non-empty for compatibility with GNU rmdir.
    483600
    484601config SEQ
    485602    bool "seq"
    486     default n
     603    default y
    487604    help
    488605      print a sequence of numbers
     
    490607config SHA1SUM
    491608    bool "sha1sum"
    492     default n
     609    default y
    493610    help
    494611      Compute and check SHA1 message digest
    495612
     613config SHA256SUM
     614    bool "sha256sum"
     615    default y
     616    help
     617      Compute and check SHA256 message digest
     618
     619config SHA512SUM
     620    bool "sha512sum"
     621    default y
     622    help
     623      Compute and check SHA512 message digest
     624
    496625config SLEEP
    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,
     626    bool "sleep"
     627    default y
     628    help
     629      sleep is used to pause for a specified number of seconds.
     630      It comes in 3 versions:
     631      - small: takes one integer parameter
     632      - fancy: takes multiple integer arguments with suffixes:
     633        sleep 1d 2h 3m 15s
     634      - fancy with fractional numbers:
     635        sleep 2.3s 4.5h sleeps for 16202.3 seconds
     636      Last one is "the most compatible" with coreutils sleep,
     637      but it adds around 1k of code.
    501638
    502639config FEATURE_FANCY_SLEEP
    503     bool "Enable multiple integer args and optional time suffixes"
    504     default n
     640    bool "Enable multiple arguments and s/m/h/d suffixes"
     641    default y
    505642    depends on SLEEP
    506643    help
    507644      Allow sleep to pause for specified minutes, hours, and days.
     645
     646config FEATURE_FLOAT_SLEEP
     647    bool "Enable fractional arguments"
     648    default y
     649    depends on FEATURE_FANCY_SLEEP
     650    help
     651      Allow for fractional numeric parameters.
    508652
    509653config SORT
    510654    bool "sort"
    511     default n
     655    default y
    512656    help
    513657      sort is used to sort lines of text in specified files.
    514658
    515659config FEATURE_SORT_BIG
    516     bool "full SuSv3 compliant sort (Support -ktcsbdfiozgM)"
     660    bool "Full SuSv3 compliant sort (support -ktcsbdfiozgM)"
    517661    default y
    518662    depends on SORT
    519663    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.
     664      Without this, sort only supports -r, -u, and an integer version
     665      of -n. Selecting this adds sort keys, floating point support, and
     666      more. This adds a little over 3k to a nonstatic build on x86.
    523667
    524668      The SuSv3 sort standard is available at:
     
    527671config SPLIT
    528672    bool "split"
    529     default n
     673    default y
    530674    help
    531675      split a file into pieces.
    532676
    533677config FEATURE_SPLIT_FANCY
    534     bool "fancy extensions"
    535     default n
     678    bool "Fancy extensions"
     679    default y
    536680    depends on SPLIT
    537681    help
     
    542686config STAT
    543687    bool "stat"
    544     default n
     688    default y
     689    depends on PLATFORM_LINUX # statfs()
    545690    help
    546691      display file or filesystem status.
     
    548693config FEATURE_STAT_FORMAT
    549694    bool "Enable custom formats (-c)"
    550     default n
     695    default y
    551696    depends on STAT
    552697    help
    553698      Without this, stat will not support the '-c format' option where
    554       users can pass a custom format string for output.  This adds about
     699      users can pass a custom format string for output. This adds about
    555700      7k to a nonstatic build on amd64.
    556701
    557702config STTY
    558703    bool "stty"
    559     default n
     704    default y
    560705    help
    561706      stty is used to change and print terminal line settings.
     
    563708config SUM
    564709    bool "sum"
    565     default n
     710    default y
    566711    help
    567712      checksum and count the blocks in a file
     
    569714config SYNC
    570715    bool "sync"
    571     default n
     716    default y
    572717    help
    573718      sync is used to flush filesystem buffers.
     719
     720config TAC
     721    bool "tac"
     722    default y
     723    help
     724      tac is used to concatenate and print files in reverse.
    574725
    575726config TAIL
    576727    bool "tail"
    577     default n
     728    default y
    578729    help
    579730      tail is used to print the last specified number of lines
     
    581732
    582733config FEATURE_FANCY_TAIL
    583     bool "Enable extra tail options (-q, -s, and -v)"
     734    bool "Enable extra tail options (-q, -s, -v, and -F)"
    584735    default y
    585736    depends on TAIL
     
    588739      are not specific in the SUSv3 standard.
    589740
     741        -q      Never output headers giving file names
     742        -s SEC  Wait SEC seconds between reads with -f
     743        -v      Always output headers giving file names
     744
    590745config TEE
    591746    bool "tee"
    592     default n
     747    default y
    593748    help
    594749      tee is used to read from standard input and write
     
    596751
    597752config FEATURE_TEE_USE_BLOCK_IO
    598     bool "Enable block i/o (larger/faster) instead of byte i/o."
    599     default n
     753    bool "Enable block I/O (larger/faster) instead of byte I/O"
     754    default y
    600755    depends on TEE
    601756    help
    602757      Enable this option for a faster tee, at expense of size.
    603 
    604 config TEST
    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 
    612 config FEATURE_TEST_64
    613     bool "Extend test to 64 bit"
    614     default n
    615     depends on TEST
    616     help
    617       Enable 64-bit support in test.
    618758
    619759config TOUCH
    620760    bool "touch"
    621     default n
     761    default y
    622762    help
    623763      touch is used to create or change the access and/or
    624764      modification timestamp of specified files.
    625765
    626 config TR
    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 
    633 config FEATURE_TR_CLASSES
    634     bool "Enable character classes (such as [:upper:])"
    635     default n
    636     depends on TR
    637     help
    638       Enable character classes, enabling commands such as:
    639       tr [:upper:] [:lower:] to convert input into lowercase.
    640 
    641 config FEATURE_TR_EQUIV
    642     bool "Enable equivalence classes"
    643     default n
    644     depends on TR
    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 
    652766config TRUE
    653767    bool "true"
    654     default n
     768    default y
    655769    help
    656770      true returns an exit code of TRUE (0).
     
    658772config TTY
    659773    bool "tty"
    660     default n
     774    default y
    661775    help
    662776      tty is used to print the name of the current terminal to
     
    665779config UNAME
    666780    bool "uname"
    667     default n
     781    default y
    668782    help
    669783      uname is used to print system information.
     
    671785config UNEXPAND
    672786    bool "unexpand"
    673     default n
     787    default y
    674788    help
    675789      By default, convert only leading sequences of blanks to tabs.
     
    677791config FEATURE_UNEXPAND_LONG_OPTIONS
    678792    bool "Enable long options"
    679     default n
    680     depends on UNEXPAND && GETOPT_LONG
     793    default y
     794    depends on UNEXPAND && LONG_OPTS
    681795    help
    682796      Support long options for the unexpand applet.
     
    684798config UNIQ
    685799    bool "uniq"
    686     default n
     800    default y
    687801    help
    688802      uniq is used to remove duplicate lines from a sorted file.
     
    690804config USLEEP
    691805    bool "usleep"
    692     default n
     806    default y
    693807    help
    694808      usleep is used to pause for a specified number of microseconds.
     
    696810config UUDECODE
    697811    bool "uudecode"
    698     default n
     812    default y
    699813    help
    700814      uudecode is used to decode a uuencoded file.
     
    702816config UUENCODE
    703817    bool "uuencode"
    704     default n
     818    default y
    705819    help
    706820      uuencode is used to uuencode a file.
     
    708822config WC
    709823    bool "wc"
    710     default n
     824    default y
    711825    help
    712826      wc is used to print the number of bytes, words, and lines,
     
    715829config FEATURE_WC_LARGE
    716830    bool "Support very large files in wc"
    717     default n
     831    default y
    718832    depends on WC
    719833    help
    720       Use "unsigned long long" in wc for count variables
     834      Use "unsigned long long" in wc for counter variables.
    721835
    722836config WHO
    723837    bool "who"
    724     default n
    725     select FEATURE_UTMP
     838    default y
     839    depends on FEATURE_UTMP
    726840    help
    727841      who is used to show who is logged on.
     
    729843config WHOAMI
    730844    bool "whoami"
    731     default n
     845    default y
    732846    help
    733847      whoami is used to print the username of the current
     
    736850config YES
    737851    bool "yes"
    738     default n
     852    default y
    739853    help
    740854      yes is used to repeatedly output a specific string, or
     
    746860config FEATURE_PRESERVE_HARDLINKS
    747861    bool "Preserve hard links"
    748     default n
     862    default y
    749863    depends on CP || MV
    750864    help
     
    770884config FEATURE_HUMAN_READABLE
    771885    bool "Support for human readable output (example 13k, 23M, 235G)"
    772     default n
     886    default y
    773887    depends on DF || DU || LS
    774888    help
    775889      Allow df, du, and ls to have human readable output.
    776890
    777 comment "Common options for md5sum, sha1sum"
    778     depends on MD5SUM || SHA1SUM
     891comment "Common options for md5sum, sha1sum, sha256sum, sha512sum"
     892    depends on MD5SUM || SHA1SUM || SHA256SUM || SHA512SUM
    779893
    780894config FEATURE_MD5_SHA1_SUM_CHECK
    781895    bool "Enable -c, -s and -w options"
    782     default n
    783     depends on MD5SUM || SHA1SUM
     896    default y
     897    depends on MD5SUM || SHA1SUM || SHA256SUM || SHA512SUM
    784898    help
    785899      Enabling the -c options allows files to be checked
Note: See TracChangeset for help on using the changeset viewer.