Changeset 2725 in MondoRescue for branches/2.2.9/mindi-busybox/libbb/Config.in


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/libbb/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,
     
    56
    67menu "Busybox Library Tuning"
     8
     9
    710
    811config PASSWORD_MINLEN
     
    1417
    1518config MD5_SIZE_VS_SPEED
    16     int " MD5: Trade Bytes for Speed"
     19    int "MD5: Trade bytes for speed (0:fast, 3:slow)"
    1720    default 2
    1821    range 0 3
     
    2932config FEATURE_FAST_TOP
    3033    bool "Faster /proc scanning code (+100 bytes)"
    31     default n
     34    default y
    3235    help
    3336      This option makes top (and ps) ~20% faster (or 20% less CPU hungry),
     
    4245      instead of IP/mask pairs in route command.
    4346
     47config FEATURE_USE_TERMIOS
     48    bool "Use termios to manipulate the screen"
     49    default y
     50    depends on MORE || TOP || POWERTOP
     51    help
     52      This option allows utilities such as 'more' and 'top' to determine
     53      the size of the screen. If you leave this disabled, your utilities
     54      that display things on the screen will be especially primitive and
     55      will be unable to determine the current screen size, and will be
     56      unable to move the cursor.
     57
    4458config FEATURE_EDITING
    4559    bool "Command line editing"
    46     default n
     60    default y
    4761    help
    4862      Enable line editing (mainly for shell command line).
     
    5872      benefits from smaller stack usage.
    5973
    60 config FEATURE_EDITING_FANCY_KEYS
    61     bool "Additional editing keys"
    62     default n
    63     depends on FEATURE_EDITING
    64     help
    65       Enable additonal editing keys (Ctrl-E, Ctrl-U etc).
    66       Arrow keys, Home/End/Delete and Ctrl-W work even without this option.
    67 
    6874config FEATURE_EDITING_VI
    6975    bool "vi-style line editing commands"
     
    7177    depends on FEATURE_EDITING
    7278    help
    73       Enable vi-style line editing.  In shells, this mode can be
     79      Enable vi-style line editing. In shells, this mode can be
    7480      turned on and off with "set -o vi" and "set +o vi".
    7581
     
    7783    int "History size"
    7884    range 0 99999
    79     default 15
     85    default 255
    8086    depends on FEATURE_EDITING
    8187    help
     
    8490config FEATURE_EDITING_SAVEHISTORY
    8591    bool "History saving"
    86     default n
    87     depends on ASH && FEATURE_EDITING
     92    default y
     93    depends on FEATURE_EDITING
    8894    help
    89       Enable history saving in ash shell.
     95      Enable history saving in shells.
    9096
    9197config FEATURE_TAB_COMPLETION
    9298    bool "Tab completion"
    93     default n
     99    default y
    94100    depends on FEATURE_EDITING
    95101    help
     
    105111config FEATURE_EDITING_FANCY_PROMPT
    106112    bool "Fancy shell prompts"
    107     default n
     113    default y
    108114    depends on FEATURE_EDITING
    109115    help
     
    111117      \$ and escape codes.
    112118
     119config FEATURE_EDITING_ASK_TERMINAL
     120    bool "Query cursor position from terminal"
     121    default n
     122    depends on FEATURE_EDITING
     123    help
     124      Allow usage of "ESC [ 6 n" sequence. Terminal answers back with
     125      current cursor position. This information is used to make line
     126      editing more robust in some cases.
     127      If you are not sure whether your terminals respond to this code
     128      correctly, or want to save on code size (about 400 bytes),
     129      then do not turn this option on.
     130
     131config FEATURE_NON_POSIX_CP
     132    bool "Non-POSIX, but safer, copying to special nodes"
     133    default y
     134    help
     135      With this option, "cp file symlink" will delete symlink
     136      and create a regular file. This does not conform to POSIX,
     137      but prevents a symlink attack.
     138      Similarly, "cp file device" will not send file's data
     139      to the device.
     140
     141config FEATURE_VERBOSE_CP_MESSAGE
     142    bool "Give more precise messages when copy fails (cp, mv etc)"
     143    default n
     144    help
     145      Error messages with this feature enabled:
     146        $ cp file /does_not_exist/file
     147        cp: cannot create '/does_not_exist/file': Path does not exist
     148        $ cp file /vmlinuz/file
     149        cp: cannot stat '/vmlinuz/file': Path has non-directory component
     150      If this feature is not enabled, they will be, respectively:
     151        cp: cannot create '/does_not_exist/file': No such file or directory
     152        cp: cannot stat '/vmlinuz/file': Not a directory
     153      This will cost you ~60 bytes.
     154
     155config FEATURE_COPYBUF_KB
     156    int "Copy buffer size, in kilobytes"
     157    range 1 1024
     158    default 4
     159    help
     160      Size of buffer used by cp, mv, install etc.
     161      Buffers which are 4 kb or less will be allocated on stack.
     162      Bigger buffers will be allocated with mmap, with fallback to 4 kb
     163      stack buffer if mmap fails.
     164
    113165config MONOTONIC_SYSCALL
    114166    bool "Use clock_gettime(CLOCK_MONOTONIC) syscall"
    115     default y
     167    default n
     168    depends on PLATFORM_LINUX
    116169    help
    117170      Use clock_gettime(CLOCK_MONOTONIC) syscall for measuring
     
    128181      (e.g. VT_DISALLOCATE rather than 0x5608). If disabled this
    129182      saves about 1400 bytes.
     183
     184config FEATURE_HWIB
     185    bool "Support infiniband HW"
     186    default y
     187    help
     188      Support for printing infiniband addresses in
     189      network applets.
     190
    130191endmenu
Note: See TracChangeset for help on using the changeset viewer.