finally move buildroot-ng to trunk
[openwrt/openwrt.git] / package / busybox / config / console-tools / Config.in
1 #
2 # For a description of the syntax of this configuration file,
3 # see scripts/kbuild/config-language.txt.
4 #
5
6 menu "Console Utilities"
7
8 config BUSYBOX_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
15 config BUSYBOX_CONFIG_CLEAR
16 bool "clear"
17 default y
18 help
19 This program clears the terminal screen.
20
21 config BUSYBOX_CONFIG_DEALLOCVT
22 bool "deallocvt"
23 default n
24 help
25 This program deallocates unused virtual consoles.
26
27 config BUSYBOX_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
34 config BUSYBOX_CONFIG_LOADFONT
35 bool "loadfont"
36 default n
37 help
38 This program loads a console font from standard input.
39
40 config BUSYBOX_CONFIG_LOADKMAP
41 bool "loadkmap"
42 default n
43 help
44 This program loads a keyboard translation table from
45 standard input.
46
47 config BUSYBOX_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
54 config BUSYBOX_CONFIG_RESET
55 bool "reset"
56 default y
57 help
58 This program is used to reset the terminal screen, if it
59 gets messed up.
60
61 config BUSYBOX_CONFIG_SETCONSOLE
62 bool "setconsole"
63 default n
64 help
65 This program redirects the system console to another device,
66 like the current tty while logged in via telnet.
67
68 config BUSYBOX_CONFIG_FEATURE_SETCONSOLE_LONG_OPTIONS
69 bool "Enable long options"
70 default n
71 depends on BUSYBOX_CONFIG_SET_CONSOLE && BUSYBOX_CONFIG_GETOPT_LONG
72 help
73 Support long options for the setconsole applet.
74
75 config BUSYBOX_CONFIG_SETKEYCODES
76 bool "setkeycodes"
77 default n
78 help
79 This program loads entries into the kernel's scancode-to-keycode
80 map, allowing unusual keyboards to generate usable keycodes.
81
82 config BUSYBOX_CONFIG_SETLOGCONS
83 bool "setlogcons"
84 default n
85 help
86 This program redirects the output console of kernel messages.
87
88 endmenu