summaryrefslogtreecommitdiffstats
path: root/rules/kbd.in
blob: ab35c8c09b93b7181e531a8b33975ef06e5ec3bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
## SECTION=shell_and_console

menuconfig KBD
	tristate
	prompt "kbd                           "
	help
	  The kbd package contains keytable files and keyboard utilities
	  compatible with kernel version 1.1.54 and later. Setfont requires
	  1.1.92 or later.
if KBD

config KBD_DUMPKEYS
	bool
	prompt "dumpkeys"
	help
	  dumpkeys - dump keyboard translation tables

config KBD_LOADKEYS
	bool
	prompt "loadkeys"
	help
	  loadkeys - load keyboard translation tables

config KBD_GETKEYCODES
	bool
	prompt "getkeycodes"
	help
	  getkeycodes - print kernel scancode-to-keycode mapping table

config KBD_SETKEYCODES
	bool
	prompt "setkeycodes"
	depends on !BUSYBOX_SETKEYCODES || ALLYES
	help
	  setkeycodes - load kernel scancode-to-keycode mapping table entries

comment "BusyBox' setkeycodes is selected!"
	depends on BUSYBOX_SETKEYCODES

config KBD_SHOWKEY
	bool
	prompt "showkey"
	depends on !BUSYBOX_SHOWKEY || ALLYES
	help
	  showkey - examine the scan codes and keycodes sent by the keyboard

comment "BusyBox' showkey is selected!"
	depends on BUSYBOX_SHOWKEY

config KBD_CHVT
	bool
	prompt "chvt"
	depends on !BUSYBOX_CHVT || ALLYES
	help
	  chvt - change foreground virtual terminal

comment "BusyBox' chvt is selected!"
	depends on BUSYBOX_CHVT

config KBD_DEALLOCVT
	bool
	prompt "deallocvt"
	depends on !BUSYBOX_DEALLOCVT || ALLYES
	help
	  deallocvt - deallocate unused virtual terminals

comment "BusyBox' deallocvt is selected!"
	depends on BUSYBOX_DEALLOCVT

endif