aboutsummaryrefslogtreecommitdiff
path: root/busybox/console-tools/Config.in
diff options
context:
space:
mode:
Diffstat (limited to 'busybox/console-tools/Config.in')
-rw-r--r--busybox/console-tools/Config.in68
1 files changed, 68 insertions, 0 deletions
diff --git a/busybox/console-tools/Config.in b/busybox/console-tools/Config.in
new file mode 100644
index 000000000..e261794ab
--- /dev/null
+++ b/busybox/console-tools/Config.in
@@ -0,0 +1,68 @@
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
8config CONFIG_CHVT
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
15config CONFIG_CLEAR
16 bool "clear"
17 default n
18 help
19 This program clears the terminal screen.
20
21config CONFIG_DEALLOCVT
22 bool "deallocvt"
23 default n
24 help
25 This program deallocates unused virtual consoles.
26
27config CONFIG_DUMPKMAP
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
34config CONFIG_LOADFONT
35 bool "loadfont"
36 default n
37 help
38 This program loads a console font from standard input.
39
40config CONFIG_LOADKMAP
41 bool "loadkmap"
42 default n
43 help
44 This program loads a keyboard translation table from
45 standard input.
46
47config CONFIG_OPENVT
48 bool "openvt"
49 default n
50 help
51 This program is used to start a command on an unused
52 virtual terminal.
53
54config CONFIG_RESET
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
61config CONFIG_SETKEYCODES
62 bool "setkeycodes"
63 default n
64 help
65 This program loads entries into the kernel's scancode-to-keycode
66 map, allowing unusual keyboards to generate usable keycodes.
67
68endmenu