source: MondoRescue/branches/2.2.5/mindi-busybox/console-tools/Config.in@ 2492

Last change on this file since 2492 was 1765, checked in by Bruno Cornec, 17 years ago

Update to busybox 1.7.2

File size: 2.1 KB
RevLine 
[821]1#
2# For a description of the syntax of this configuration file,
3# see scripts/kbuild/config-language.txt.
4#
5
6menu "Console Utilities"
7
[1765]8config CHVT
[821]9 bool "chvt"
10 default n
11 help
12 This program is used to change to another terminal.
13 Example: chvt 4 (change to terminal /dev/tty4)
14
[1765]15config CLEAR
[821]16 bool "clear"
17 default n
18 help
19 This program clears the terminal screen.
20
[1765]21config DEALLOCVT
[821]22 bool "deallocvt"
23 default n
24 help
25 This program deallocates unused virtual consoles.
26
[1765]27config DUMPKMAP
[821]28 bool "dumpkmap"
29 default n
30 help
31 This program dumps the kernel's keyboard translation table to
32 stdout, in binary format. You can then use loadkmap to load it.
33
[1765]34config LOADFONT
[821]35 bool "loadfont"
36 default n
37 help
38 This program loads a console font from standard input.
39
[1765]40config LOADKMAP
[821]41 bool "loadkmap"
42 default n
43 help
44 This program loads a keyboard translation table from
45 standard input.
46
[1765]47config OPENVT
[821]48 bool "openvt"
49 default n
50 help
51 This program is used to start a command on an unused
52 virtual terminal.
53
[1765]54config RESET
[821]55 bool "reset"
56 default n
57 help
58 This program is used to reset the terminal screen, if it
59 gets messed up.
60
[1765]61config RESIZE
62 bool "resize"
63 default n
64 help
65 This program is used to (re)set the width and height of your current
66 terminal.
67
68config FEATURE_RESIZE_PRINT
69 bool "print environment variables"
70 default n
71 depends on RESIZE
72 help
73 Prints the newly set size (number of columns and rows) of
74 the terminal.
75 E.g.:
76 COLUMNS=80;LINES=44;export COLUMNS LINES;
77
78config SETCONSOLE
[821]79 bool "setconsole"
80 default n
81 help
82 This program redirects the system console to another device,
83 like the current tty while logged in via telnet.
84
[1765]85config FEATURE_SETCONSOLE_LONG_OPTIONS
[821]86 bool "Enable long options"
87 default n
[1765]88 depends on SETCONSOLE && GETOPT_LONG
[821]89 help
90 Support long options for the setconsole applet.
91
[1765]92config SETKEYCODES
[821]93 bool "setkeycodes"
94 default n
95 help
96 This program loads entries into the kernel's scancode-to-keycode
97 map, allowing unusual keyboards to generate usable keycodes.
98
[1765]99config SETLOGCONS
[821]100 bool "setlogcons"
101 default n
102 help
103 This program redirects the output console of kernel messages.
104
105endmenu
Note: See TracBrowser for help on using the repository browser.