source: MondoRescue/branches/3.0/mindi-busybox/console-tools/Config.in@ 3085

Last change on this file since 3085 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
Line 
1# DO NOT EDIT. This file is generated from Config.src
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
9
10
11config CHVT
12 bool "chvt"
13 default y
14 depends on PLATFORM_LINUX
15 help
16 This program is used to change to another terminal.
17 Example: chvt 4 (change to terminal /dev/tty4)
18
19config FGCONSOLE
20 bool "fgconsole"
21 default y
22 depends on PLATFORM_LINUX
23 help
24 This program prints active (foreground) console number.
25
26config CLEAR
27 bool "clear"
28 default y
29 help
30 This program clears the terminal screen.
31
32config DEALLOCVT
33 bool "deallocvt"
34 default y
35 depends on PLATFORM_LINUX
36 help
37 This program deallocates unused virtual consoles.
38
39config DUMPKMAP
40 bool "dumpkmap"
41 default y
42 depends on PLATFORM_LINUX
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
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
54config LOADFONT
55 bool "loadfont"
56 default y
57 depends on PLATFORM_LINUX
58 help
59 This program loads a console font from standard input.
60
61config LOADKMAP
62 bool "loadkmap"
63 default y
64 depends on PLATFORM_LINUX
65 help
66 This program loads a keyboard translation table from
67 standard input.
68
69config OPENVT
70 bool "openvt"
71 default y
72 depends on PLATFORM_LINUX
73 help
74 This program is used to start a command on an unused
75 virtual terminal.
76
77config RESET
78 bool "reset"
79 default y
80 help
81 This program is used to reset the terminal screen, if it
82 gets messed up.
83
84config RESIZE
85 bool "resize"
86 default y
87 help
88 This program is used to (re)set the width and height of your current
89 terminal.
90
91config FEATURE_RESIZE_PRINT
92 bool "Print environment variables"
93 default y
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
102 bool "setconsole"
103 default y
104 depends on PLATFORM_LINUX
105 help
106 This program redirects the system console to another device,
107 like the current tty while logged in via telnet.
108
109config FEATURE_SETCONSOLE_LONG_OPTIONS
110 bool "Enable long options"
111 default y
112 depends on SETCONSOLE && LONG_OPTS
113 help
114 Support long options for the setconsole applet.
115
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
138config SETKEYCODES
139 bool "setkeycodes"
140 default y
141 depends on PLATFORM_LINUX
142 help
143 This program loads entries into the kernel's scancode-to-keycode
144 map, allowing unusual keyboards to generate usable keycodes.
145
146config SETLOGCONS
147 bool "setlogcons"
148 default y
149 depends on PLATFORM_LINUX
150 help
151 This program redirects the output console of kernel messages.
152
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
177endmenu
Note: See TracBrowser for help on using the repository browser.