Ignore:
Timestamp:
Dec 20, 2016, 4:07:32 PM (7 years ago)
Author:
Bruno Cornec
Message:

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

Location:
branches/3.3
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/3.3/mindi-busybox/coreutils/Config.src

    r3232 r3621  
    1212    default y
    1313    help
    14       cal is used to display a monthly calender.
     14      cal is used to display a monthly calendar.
    1515
    1616config CATV
     
    8787      cut is used to print selected parts of lines from
    8888      each file to stdout.
    89 
    90 config DD
    91     bool "dd"
    92     default y
    93     help
    94       dd copies a file (from standard input to standard output,
    95       by default) using specific input and output blocksizes,
    96       while optionally performing conversions on it.
    97 
    98 config FEATURE_DD_SIGNAL_HANDLING
    99     bool "Enable DD signal handling for status reporting"
    100     default y
    101     depends on DD
    102     help
    103       Sending a SIGUSR1 signal to a running `dd' process makes it
    104       print to standard error the number of records read and written
    105       so far, then to resume copying.
    106 
    107       $ dd if=/dev/zero of=/dev/null&
    108       $ pid=$! kill -USR1 $pid; sleep 1; kill $pid
    109       10899206+0 records in
    110       10899206+0 records out
    111 
    112 config FEATURE_DD_THIRD_STATUS_LINE
    113     bool "Enable the third status line upon signal"
    114     default y
    115     depends on DD && FEATURE_DD_SIGNAL_HANDLING
    116     help
    117       Displays a coreutils-like third status line with transferred bytes,
    118       elapsed time and speed.
    119 
    120 config FEATURE_DD_IBS_OBS
    121     bool "Enable ibs, obs and conv options"
    122     default y
    123     depends on DD
    124     help
    125       Enables support for writing a certain number of bytes in and out,
    126       at a time, and performing conversions on the data stream.
    12789
    12890config DF
     
    582544      'g' for 1GiB for the -b option.
    583545
    584 config STAT
    585     bool "stat"
    586     default y
    587     select PLATFORM_LINUX # statfs()
    588     help
    589       display file or filesystem status.
    590 
    591 config FEATURE_STAT_FORMAT
    592     bool "Enable custom formats (-c)"
    593     default y
    594     depends on STAT
    595     help
    596       Without this, stat will not support the '-c format' option where
    597       users can pass a custom format string for output. This adds about
    598       7k to a nonstatic build on amd64.
    599 
    600546config STTY
    601547    bool "stty"
     
    610556      checksum and count the blocks in a file
    611557
    612 config SYNC
    613     bool "sync"
    614     default y
    615     help
    616       sync is used to flush filesystem buffers.
    617 
    618558config TAC
    619559    bool "tac"
     
    634574    depends on TAIL
    635575    help
    636       The options (-q, -s, and -v) are provided by GNU tail, but
     576      The options (-q, -s, -v and -F) are provided by GNU tail, but
    637577      are not specific in the SUSv3 standard.
    638578
     
    640580        -s SEC  Wait SEC seconds between reads with -f
    641581        -v      Always output headers giving file names
     582        -F      Same as -f, but keep retrying
    642583
    643584config TEE
     
    674615      uname is used to print system information.
    675616
     617config UNAME_OSNAME
     618    string "Operating system name"
     619    default "GNU/Linux"
     620    depends on UNAME
     621    help
     622      Sets the operating system name reported by uname -o.  The
     623      default is "GNU/Linux".
     624
    676625config UNEXPAND
    677626    bool "unexpand"
     
    738687      yes is used to repeatedly output a specific string, or
    739688      the default string `y'.
     689
     690comment "Common options"
     691
     692config FEATURE_VERBOSE
     693    bool "Support verbose options (usually -v) for various applets"
     694    default y
     695    help
     696      Enable cp -v, rm -v and similar messages.
     697      Also enables long option (--verbose) if it exists.
     698      Without this option, -v is accepted but ignored.
    740699
    741700comment "Common options for cp and mv"
Note: See TracChangeset for help on using the changeset viewer.