source: MondoRescue/branches/2.2.9/mindi-busybox/console-tools/Config.in@ 2725

Last change on this file since 2725 was 2725, checked in by Bruno Cornec, 13 years ago
  • 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 size: 3.7 KB
RevLine 
[2725]1# DO NOT EDIT. This file is generated from Config.src
[821]2#
3# For a description of the syntax of this configuration file,
4# see scripts/kbuild/config-language.txt.
5#
6
7menu "Console Utilities"
8
[2725]9
10
[1765]11config CHVT
[821]12 bool "chvt"
[2725]13 default y
14 depends on PLATFORM_LINUX
[821]15 help
16 This program is used to change to another terminal.
17 Example: chvt 4 (change to terminal /dev/tty4)
18
[2725]19config FGCONSOLE
20 bool "fgconsole"
21 default y
22 depends on PLATFORM_LINUX
23 help
24 This program prints active (foreground) console number.
25
[1765]26config CLEAR
[821]27 bool "clear"
[2725]28 default y
[821]29 help
30 This program clears the terminal screen.
31
[1765]32config DEALLOCVT
[821]33 bool "deallocvt"
[2725]34 default y
35 depends on PLATFORM_LINUX
[821]36 help
37 This program deallocates unused virtual consoles.
38
[1765]39config DUMPKMAP
[821]40 bool "dumpkmap"
[2725]41 default y
42 depends on PLATFORM_LINUX
[821]43 help
44 This program dumps the kernel's keyboard translation table to
45 stdout, in binary format. You can then use loadkmap to load it.
46
[2725]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
[1765]54config LOADFONT
[821]55 bool "loadfont"
[2725]56 default y
57 depends on PLATFORM_LINUX
[821]58 help
59 This program loads a console font from standard input.
60
[1765]61config LOADKMAP
[821]62 bool "loadkmap"
[2725]63 default y
64 depends on PLATFORM_LINUX
[821]65 help
66 This program loads a keyboard translation table from
67 standard input.
68
[1765]69config OPENVT
[821]70 bool "openvt"
[2725]71 default y
72 depends on PLATFORM_LINUX
[821]73 help
74 This program is used to start a command on an unused
75 virtual terminal.
76
[1765]77config RESET
[821]78 bool "reset"
[2725]79 default y
[821]80 help
81 This program is used to reset the terminal screen, if it
82 gets messed up.
83
[1765]84config RESIZE
85 bool "resize"
[2725]86 default y
[1765]87 help
88 This program is used to (re)set the width and height of your current
89 terminal.
90
91config FEATURE_RESIZE_PRINT
[2725]92 bool "Print environment variables"
93 default y
[1765]94 depends on RESIZE
95 help
96 Prints the newly set size (number of columns and rows) of
97 the terminal.
98 E.g.:
99 COLUMNS=80;LINES=44;export COLUMNS LINES;
100
101config SETCONSOLE
[821]102 bool "setconsole"
[2725]103 default y
104 depends on PLATFORM_LINUX
[821]105 help
106 This program redirects the system console to another device,
107 like the current tty while logged in via telnet.
108
[1765]109config FEATURE_SETCONSOLE_LONG_OPTIONS
[821]110 bool "Enable long options"
[2725]111 default y
112 depends on SETCONSOLE && LONG_OPTS
[821]113 help
114 Support long options for the setconsole applet.
115
[2725]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
[1765]138config SETKEYCODES
[821]139 bool "setkeycodes"
[2725]140 default y
141 depends on PLATFORM_LINUX
[821]142 help
143 This program loads entries into the kernel's scancode-to-keycode
144 map, allowing unusual keyboards to generate usable keycodes.
145
[1765]146config SETLOGCONS
[821]147 bool "setlogcons"
[2725]148 default y
149 depends on PLATFORM_LINUX
[821]150 help
151 This program redirects the output console of kernel messages.
152
[2725]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
[821]177endmenu
Note: See TracBrowser for help on using the repository browser.