Changeset 3232 in MondoRescue for branches/3.2/mindi-busybox/libbb/Config.src


Ignore:
Timestamp:
Jan 1, 2014, 12:47:38 AM (10 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.21.1
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.2/mindi-busybox/libbb/Config.src

    r2725 r3232  
    1515      Minimum allowable password length.
    1616
    17 config MD5_SIZE_VS_SPEED
     17config MD5_SMALL
    1818    int "MD5: Trade bytes for speed (0:fast, 3:slow)"
    19     default 2
     19    default 1
    2020    range 0 3
    2121    help
     
    2929      3 (smallest)        5.1                4912
    3030
     31config SHA3_SMALL
     32    int "SHA3: Trade bytes for speed (0:fast, 1:slow)"
     33    default 1
     34    range 0 1
     35    help
     36      Trade binary size versus speed for the sha3sum algorithm.
     37      SHA3_SMALL=0 compared to SHA3_SMALL=1 (approximate):
     38      64-bit x86: +270 bytes of code, 45% faster
     39      32-bit x86: +450 bytes of code, 75% faster
     40
    3141config FEATURE_FAST_TOP
    3242    bool "Faster /proc scanning code (+100 bytes)"
     
    8191config FEATURE_EDITING_HISTORY
    8292    int "History size"
    83     range 0 99999
     93    # Don't allow way too big values here, code uses fixed "char *history[N]" struct member
     94    range 0 9999
    8495    default 255
    8596    depends on FEATURE_EDITING
    8697    help
    87       Specify command history size.
     98      Specify command history size (0 - disable).
    8899
    89100config FEATURE_EDITING_SAVEHISTORY
     
    93104    help
    94105      Enable history saving in shells.
     106
     107config FEATURE_EDITING_SAVE_ON_EXIT
     108    bool "Save history on shell exit, not after every command"
     109    default n
     110    depends on FEATURE_EDITING_SAVEHISTORY
     111    help
     112      Save history on shell exit, not after every command.
     113
     114config FEATURE_REVERSE_SEARCH
     115    bool "Reverse history search"
     116    default y
     117    depends on FEATURE_EDITING_SAVEHISTORY
     118    help
     119      Enable readline-like Ctrl-R combination for reverse history search.
     120      Increases code by about 0.5k.
    95121
    96122config FEATURE_TAB_COMPLETION
     
    136162      but prevents a symlink attack.
    137163      Similarly, "cp file device" will not send file's data
    138       to the device.
     164      to the device. (To do that, use "cat file >device")
    139165
    140166config FEATURE_VERBOSE_CP_MESSAGE
     
    157183    default 4
    158184    help
    159       Size of buffer used by cp, mv, install etc.
     185      Size of buffer used by cp, mv, install, wget etc.
    160186      Buffers which are 4 kb or less will be allocated on stack.
    161187      Bigger buffers will be allocated with mmap, with fallback to 4 kb
    162188      stack buffer if mmap fails.
    163189
     190config FEATURE_SKIP_ROOTFS
     191    bool "Skip rootfs in mount table"
     192    default y
     193    help
     194      Ignore rootfs entry in mount table.
     195
     196      In Linux, kernel has a special filesystem, rootfs, which is initially
     197      mounted on /. It contains initramfs data, if kernel is configured
     198      to have one. Usually, another file system is mounted over / early
     199      in boot process, and therefore most tools which manipulate
     200      mount table, such as df, will skip rootfs entry.
     201
     202      However, some systems do not mount anything on /.
     203      If you need to configure busybox for one of these systems,
     204      you may find it useful to turn this option off to make df show
     205      initramfs statistics.
     206
     207      Otherwise, choose Y.
     208
    164209config MONOTONIC_SYSCALL
    165210    bool "Use clock_gettime(CLOCK_MONOTONIC) syscall"
    166211    default n
    167     depends on PLATFORM_LINUX
     212    select PLATFORM_LINUX
    168213    help
    169214      Use clock_gettime(CLOCK_MONOTONIC) syscall for measuring
Note: See TracChangeset for help on using the changeset viewer.