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/editors/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,
     
    67menu "Editors"
    78
     9config PATCH
     10    bool "patch"
     11    default y
     12    help
     13      Apply a unified diff formatted patch.
     14
    815config AWK
    916    bool "awk"
    10     default n
    11     help
    12       Awk is used as a pattern scanning and processing language.  This is
     17    default y
     18    help
     19      Awk is used as a pattern scanning and processing language. This is
    1320      the BusyBox implementation of that programming language.
    1421
    15 config FEATURE_AWK_MATH
     22config FEATURE_AWK_LIBM
    1623    bool "Enable math functions (requires libm)"
    1724    default y
     
    2330config CMP
    2431    bool "cmp"
    25     default n
     32    default y
    2633    help
    2734      cmp is used to compare two files and returns the result
     
    3037config DIFF
    3138    bool "diff"
    32     default n
     39    default y
    3340    help
    3441      diff compares two files or directories and outputs the
     
    3643      the patch command.
    3744
    38 config FEATURE_DIFF_BINARY
    39     bool "Enable checks for binary files"
    40     default y
    41     depends on DIFF
    42     help
    43       This option enables support for checking for binary files
    44       before a comparison is carried out.
     45config FEATURE_DIFF_LONG_OPTIONS
     46    bool "Enable long options"
     47    default y
     48    depends on DIFF && LONG_OPTS
     49    help
     50      Enable use of long options.
    4551
    4652config FEATURE_DIFF_DIR
     
    5258      comparison.
    5359
    54 config FEATURE_DIFF_MINIMAL
    55     bool "Enable -d option to find smaller sets of changes"
    56     default n
    57     depends on DIFF
    58     help
    59       Enabling this option allows the use of -d to make diff
    60       try hard to find the smallest possible set of changes.
    61 
    6260config ED
    6361    bool "ed"
    64     default n
     62    default y
    6563    help
    6664      The original 1970's Unix text editor, from the days of teletypes.
    67       Small, simple, evil.  Part of SUSv3. If you're not already using
     65      Small, simple, evil. Part of SUSv3. If you're not already using
    6866      this, you don't need it.
    69 
    70 config PATCH
    71     bool "patch"
    72     default n
    73     help
    74       Apply a unified diff formatted patch.
    7567
    7668config SED
    7769    bool "sed"
    78     default n
     70    default y
    7971    help
    8072      sed is used to perform text transformations on a file
     
    8375config VI
    8476    bool "vi"
     77    default y
     78    help
     79      'vi' is a text editor. More specifically, it is the One True
     80      text editor <grin>. It does, however, have a rather steep
     81      learning curve. If you are not already comfortable with 'vi'
     82      you may wish to use something else.
     83
     84config FEATURE_VI_MAX_LEN
     85    int "Maximum screen width in vi"
     86    range 256 16384
     87    default 4096
     88    depends on VI
     89    help
     90      Contrary to what you may think, this is not eating much.
     91      Make it smaller than 4k only if you are very limited on memory.
     92
     93config FEATURE_VI_8BIT
     94    bool "Allow vi to display 8-bit chars (otherwise shows dots)"
    8595    default n
    86     help
    87       'vi' is a text editor.  More specifically, it is the One True
    88       text editor <grin>.  It does, however, have a rather steep
    89       learning curve.  If you are not already comfortable with 'vi'
    90       you may wish to use something else.
    91 
    92 config FEATURE_VI_MAX_LEN
    93     int "Maximum line length in vi"
    94     range 256 16384
    95     default 1024
    96     depends on VI
    97     help
    98       vi uses on-stack buffers for intermediate line buffers.
    99       You may want to decrease this parameter if your target machine
    100       benefits from smaller stack usage.
     96    depends on VI
     97    help
     98      If your terminal can display characters with high bit set,
     99      you may want to enable this. Note: vi is not Unicode-capable.
     100      If your terminal combines several 8-bit bytes into one character
     101      (as in Unicode mode), this will not work properly.
    101102
    102103config FEATURE_VI_COLON
     
    105106    depends on VI
    106107    help
    107       Enable a limited set of colon commands for vi.  This does not
     108      Enable a limited set of colon commands for vi. This does not
    108109      provide an "ex" mode.
    109110
     
    129130    depends on VI
    130131    help
    131       Selecting this option will make busybox vi signal aware.  This will
     132      Selecting this option will make busybox vi signal aware. This will
    132133      make busybox vi support SIGWINCH to deal with Window Changes, catch
    133134      Ctrl-Z and Ctrl-C and alarms.
     
    169170      Make busybox vi behave nicely with terminals that get resized.
    170171
     172config FEATURE_VI_ASK_TERMINAL
     173    bool "Use 'tell me cursor position' ESC sequence to measure window"
     174    default y
     175    depends on VI
     176    help
     177      If terminal size can't be retrieved and $LINES/$COLUMNS are not set,
     178      this option makes vi perform a last-ditch effort to find it:
     179      vi positions cursor to 999,999 and asks terminal to report real
     180      cursor position using "ESC [ 6 n" escape sequence, then reads stdin.
     181
     182      This is not clean but helps a lot on serial lines and such.
     183
    171184config FEATURE_VI_OPTIMIZE_CURSOR
    172185    bool "Optimize cursor movement"
Note: See TracChangeset for help on using the changeset viewer.