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/console-tools/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 "Console Utilities"
    78
     9
     10
    811config CHVT
    912    bool "chvt"
    10     default n
     13    default y
     14    depends on PLATFORM_LINUX
    1115    help
    1216      This program is used to change to another terminal.
    1317      Example: chvt 4 (change to terminal /dev/tty4)
    1418
     19config FGCONSOLE
     20    bool "fgconsole"
     21    default y
     22    depends on PLATFORM_LINUX
     23    help
     24      This program prints active (foreground) console number.
     25
    1526config CLEAR
    1627    bool "clear"
    17     default n
     28    default y
    1829    help
    1930      This program clears the terminal screen.
     
    2132config DEALLOCVT
    2233    bool "deallocvt"
    23     default n
     34    default y
     35    depends on PLATFORM_LINUX
    2436    help
    2537      This program deallocates unused virtual consoles.
     
    2739config DUMPKMAP
    2840    bool "dumpkmap"
    29     default n
     41    default y
     42    depends on PLATFORM_LINUX
    3043    help
    3144      This program dumps the kernel's keyboard translation table to
    3245      stdout, in binary format. You can then use loadkmap to load it.
    3346
     47config KBD_MODE
     48    bool "kbd_mode"
     49    default y
     50    depends on PLATFORM_LINUX
     51    help
     52      This program reports and sets keyboard mode.
     53
    3454config LOADFONT
    3555    bool "loadfont"
    36     default n
     56    default y
     57    depends on PLATFORM_LINUX
    3758    help
    3859      This program loads a console font from standard input.
     
    4061config LOADKMAP
    4162    bool "loadkmap"
    42     default n
     63    default y
     64    depends on PLATFORM_LINUX
    4365    help
    4466      This program loads a keyboard translation table from
     
    4769config OPENVT
    4870    bool "openvt"
    49     default n
     71    default y
     72    depends on PLATFORM_LINUX
    5073    help
    5174      This program is used to start a command on an unused
     
    5477config RESET
    5578    bool "reset"
    56     default n
     79    default y
    5780    help
    5881      This program is used to reset the terminal screen, if it
     
    6184config RESIZE
    6285    bool "resize"
    63     default n
     86    default y
    6487    help
    6588      This program is used to (re)set the width and height of your current
     
    6790
    6891config FEATURE_RESIZE_PRINT
    69     bool "print environment variables"
    70     default n
     92    bool "Print environment variables"
     93    default y
    7194    depends on RESIZE
    7295    help
     
    78101config SETCONSOLE
    79102    bool "setconsole"
    80     default n
     103    default y
     104    depends on PLATFORM_LINUX
    81105    help
    82106      This program redirects the system console to another device,
     
    85109config FEATURE_SETCONSOLE_LONG_OPTIONS
    86110    bool "Enable long options"
    87     default n
    88     depends on SETCONSOLE && GETOPT_LONG
     111    default y
     112    depends on SETCONSOLE && LONG_OPTS
    89113    help
    90114      Support long options for the setconsole applet.
    91115
     116config SETFONT
     117    bool "setfont"
     118    default y
     119    depends on PLATFORM_LINUX
     120    help
     121      Allows to load console screen map. Useful for i18n.
     122
     123config FEATURE_SETFONT_TEXTUAL_MAP
     124    bool "Support reading textual screen maps"
     125    default y
     126    depends on SETFONT
     127    help
     128      Support reading textual screen maps.
     129
     130config DEFAULT_SETFONT_DIR
     131    string "Default directory for console-tools files"
     132    default ""
     133    depends on SETFONT
     134    help
     135      Directory to use if setfont's params are simple filenames
     136      (not /path/to/file or ./file). Default is "" (no default directory).
     137
    92138config SETKEYCODES
    93139    bool "setkeycodes"
    94     default n
     140    default y
     141    depends on PLATFORM_LINUX
    95142    help
    96143      This program loads entries into the kernel's scancode-to-keycode
     
    99146config SETLOGCONS
    100147    bool "setlogcons"
    101     default n
     148    default y
     149    depends on PLATFORM_LINUX
    102150    help
    103151      This program redirects the output console of kernel messages.
    104152
     153config SHOWKEY
     154    bool "showkey"
     155    default y
     156    depends on PLATFORM_LINUX
     157    help
     158      Shows keys pressed.
     159
     160comment "Common options for loadfont and setfont"
     161    depends on LOADFONT || SETFONT
     162
     163config FEATURE_LOADFONT_PSF2
     164    bool "Support for PSF2 console fonts"
     165    default y
     166    depends on LOADFONT || SETFONT
     167    help
     168      Support PSF2 console fonts.
     169
     170config FEATURE_LOADFONT_RAW
     171    bool "Support for old (raw) console fonts"
     172    default y
     173    depends on LOADFONT || SETFONT
     174    help
     175      Support old (raw) console fonts.
     176
    105177endmenu
Note: See TracChangeset for help on using the changeset viewer.