Kconfig 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. #
  2. # Input core configuration
  3. #
  4. menuconfig INPUT_KEYBOARD
  5. bool "Keyboards" if EMBEDDED || !X86
  6. default y
  7. help
  8. Say Y here, and a list of supported keyboards will be displayed.
  9. This option doesn't affect the kernel.
  10. If unsure, say Y.
  11. if INPUT_KEYBOARD
  12. config KEYBOARD_ATKBD
  13. tristate "AT keyboard" if !PC
  14. default y
  15. select SERIO
  16. select SERIO_LIBPS2
  17. select SERIO_I8042 if PC
  18. select SERIO_GSCPS2 if GSC
  19. help
  20. Say Y here if you want to use a standard AT or PS/2 keyboard. Usually
  21. you'll need this, unless you have a different type keyboard (USB, ADB
  22. or other). This also works for AT and PS/2 keyboards connected over a
  23. PS/2 to serial converter.
  24. If unsure, say Y.
  25. To compile this driver as a module, choose M here: the
  26. module will be called atkbd.
  27. config KEYBOARD_ATKBD_HP_KEYCODES
  28. bool "Use HP keyboard scancodes"
  29. depends on PARISC && KEYBOARD_ATKBD
  30. default y
  31. help
  32. Say Y here if you have a PA-RISC machine and want to use an AT or
  33. PS/2 keyboard, and your keyboard uses keycodes that are specific to
  34. PA-RISC keyboards.
  35. Say N if you use a standard keyboard.
  36. config KEYBOARD_ATKBD_RDI_KEYCODES
  37. bool "Use PrecisionBook keyboard scancodes"
  38. depends on KEYBOARD_ATKBD_HP_KEYCODES
  39. default n
  40. help
  41. If you have an RDI PrecisionBook, say Y here if you want to use its
  42. built-in keyboard (as opposed to an external keyboard).
  43. The PrecisionBook has five keys that conflict with those used by most
  44. AT and PS/2 keyboards. These are as follows:
  45. PrecisionBook Standard AT or PS/2
  46. F1 F12
  47. Left Ctrl Left Alt
  48. Caps Lock Left Ctrl
  49. Right Ctrl Caps Lock
  50. Left 102nd key (the key to the right of Left Shift)
  51. If you say N here, and use the PrecisionBook keyboard, then each key
  52. in the left-hand column will be interpreted as the corresponding key
  53. in the right-hand column.
  54. If you say Y here, and use an external keyboard, then each key in the
  55. right-hand column will be interpreted as the key shown in the
  56. left-hand column.
  57. config KEYBOARD_SUNKBD
  58. tristate "Sun Type 4 and Type 5 keyboard"
  59. select SERIO
  60. help
  61. Say Y here if you want to use a Sun Type 4 or Type 5 keyboard,
  62. connected either to the Sun keyboard connector or to an serial
  63. (RS-232) port via a simple adapter.
  64. To compile this driver as a module, choose M here: the
  65. module will be called sunkbd.
  66. config KEYBOARD_LKKBD
  67. tristate "DECstation/VAXstation LK201/LK401 keyboard"
  68. select SERIO
  69. help
  70. Say Y here if you want to use a LK201 or LK401 style serial
  71. keyboard. This keyboard is also useable on PCs if you attach
  72. it with the inputattach program. The connector pinout is
  73. described within lkkbd.c.
  74. To compile this driver as a module, choose M here: the
  75. module will be called lkkbd.
  76. config KEYBOARD_LOCOMO
  77. tristate "LoCoMo Keyboard Support"
  78. depends on SHARP_LOCOMO
  79. help
  80. Say Y here if you are running Linux on a Sharp Zaurus Collie or Poodle based PDA
  81. To compile this driver as a module, choose M here: the
  82. module will be called locomokbd.
  83. config KEYBOARD_XTKBD
  84. tristate "XT keyboard"
  85. select SERIO
  86. help
  87. Say Y here if you want to use the old IBM PC/XT keyboard (or
  88. compatible) on your system. This is only possible with a
  89. parallel port keyboard adapter, you cannot connect it to the
  90. keyboard port on a PC that runs Linux.
  91. To compile this driver as a module, choose M here: the
  92. module will be called xtkbd.
  93. config KEYBOARD_NEWTON
  94. tristate "Newton keyboard"
  95. select SERIO
  96. help
  97. Say Y here if you have a Newton keyboard on a serial port.
  98. To compile this driver as a module, choose M here: the
  99. module will be called newtonkbd.
  100. config KEYBOARD_CORGI
  101. tristate "Corgi keyboard"
  102. depends on PXA_SHARPSL
  103. default y
  104. help
  105. Say Y here to enable the keyboard on the Sharp Zaurus SL-C7xx
  106. series of PDAs.
  107. To compile this driver as a module, choose M here: the
  108. module will be called corgikbd.
  109. config KEYBOARD_MAPLE
  110. tristate "Maple bus keyboard"
  111. depends on SH_DREAMCAST && MAPLE
  112. help
  113. Say Y here if you have a DreamCast console running Linux and have
  114. a keyboard attached to its Maple bus.
  115. To compile this driver as a module, choose M here: the
  116. module will be called maple_keyb.
  117. config KEYBOARD_AMIGA
  118. tristate "Amiga keyboard"
  119. depends on AMIGA
  120. help
  121. Say Y here if you are running Linux on any AMIGA and have a keyboard
  122. attached.
  123. To compile this driver as a module, choose M here: the
  124. module will be called amikbd.
  125. config KEYBOARD_HIL_OLD
  126. tristate "HP HIL keyboard support (simple driver)"
  127. depends on GSC
  128. default y
  129. help
  130. The "Human Interface Loop" is a older, 8-channel USB-like
  131. controller used in several Hewlett Packard models. This driver
  132. was adapted from the one written for m68k/hp300, and implements
  133. support for a keyboard attached to the HIL port, but not for
  134. any other types of HIL input devices like mice or tablets.
  135. However, it has been thoroughly tested and is stable.
  136. If you want full HIL support including support for multiple
  137. keyboards, mices and tablets, you have to enable the
  138. "HP System Device Controller i8042 Support" in the input/serio
  139. submenu.
  140. config KEYBOARD_HIL
  141. tristate "HP HIL keyboard support"
  142. depends on GSC
  143. default y
  144. select HP_SDC
  145. select HIL_MLC
  146. select SERIO
  147. help
  148. The "Human Interface Loop" is a older, 8-channel USB-like
  149. controller used in several Hewlett Packard models.
  150. This driver implements support for HIL-keyboards attached
  151. to your machine, so normally you should say Y here.
  152. endif