Kconfig 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. #
  2. # Input device configuration
  3. #
  4. menu "Input device support"
  5. depends on !S390
  6. config INPUT
  7. tristate "Generic input layer (needed for keyboard, mouse, ...)" if EMBEDDED
  8. default y
  9. help
  10. Say Y here if you have any input device (mouse, keyboard, tablet,
  11. joystick, steering wheel ...) connected to your system and want
  12. it to be available to applications. This includes standard PS/2
  13. keyboard and mouse.
  14. Say N here if you have a headless (no monitor, no keyboard) system.
  15. More information is available: <file:Documentation/input/input.txt>
  16. If unsure, say Y.
  17. To compile this driver as a module, choose M here: the
  18. module will be called input.
  19. if INPUT
  20. config INPUT_FF_MEMLESS
  21. tristate "Support for memoryless force-feedback devices"
  22. help
  23. Say Y here if you have memoryless force-feedback input device
  24. such as Logitech WingMan Force 3D, ThrustMaster FireStorm Dual
  25. Power 2, or similar. You will also need to enable hardware-specific
  26. driver.
  27. If unsure, say N.
  28. To compile this driver as a module, choose M here: the
  29. module will be called ff-memless.
  30. config INPUT_POLLDEV
  31. tristate "Polled input device skeleton"
  32. help
  33. Say Y here if you are using a driver for an input
  34. device that periodically polls hardware state. This
  35. option is only useful for out-of-tree drivers since
  36. in-tree drivers select it automatically.
  37. If unsure, say N.
  38. To compile this driver as a module, choose M here: the
  39. module will be called input-polldev.
  40. config INPUT_SPARSEKMAP
  41. tristate "Sparse keymap support library"
  42. help
  43. Say Y here if you are using a driver for an input
  44. device that uses sparse keymap. This option is only
  45. useful for out-of-tree drivers since in-tree drivers
  46. select it automatically.
  47. If unsure, say N.
  48. To compile this driver as a module, choose M here: the
  49. module will be called sparse-keymap.
  50. comment "Userland interfaces"
  51. config INPUT_MOUSEDEV
  52. tristate "Mouse interface" if EMBEDDED
  53. default y
  54. help
  55. Say Y here if you want your mouse to be accessible as char devices
  56. 13:32+ - /dev/input/mouseX and 13:63 - /dev/input/mice as an
  57. emulated IntelliMouse Explorer PS/2 mouse. That way, all user space
  58. programs (including SVGAlib, GPM and X) will be able to use your
  59. mouse.
  60. If unsure, say Y.
  61. To compile this driver as a module, choose M here: the
  62. module will be called mousedev.
  63. config INPUT_MOUSEDEV_PSAUX
  64. bool "Provide legacy /dev/psaux device"
  65. default y
  66. depends on INPUT_MOUSEDEV
  67. help
  68. Say Y here if you want your mouse also be accessible as char device
  69. 10:1 - /dev/psaux. The data available through /dev/psaux is exactly
  70. the same as the data from /dev/input/mice.
  71. If unsure, say Y.
  72. config INPUT_MOUSEDEV_SCREEN_X
  73. int "Horizontal screen resolution"
  74. depends on INPUT_MOUSEDEV
  75. default "1024"
  76. help
  77. If you're using a digitizer, or a graphic tablet, and want to use
  78. it as a mouse then the mousedev driver needs to know the X window
  79. screen resolution you are using to correctly scale the data. If
  80. you're not using a digitizer, this value is ignored.
  81. config INPUT_MOUSEDEV_SCREEN_Y
  82. int "Vertical screen resolution"
  83. depends on INPUT_MOUSEDEV
  84. default "768"
  85. help
  86. If you're using a digitizer, or a graphic tablet, and want to use
  87. it as a mouse then the mousedev driver needs to know the X window
  88. screen resolution you are using to correctly scale the data. If
  89. you're not using a digitizer, this value is ignored.
  90. config INPUT_JOYDEV
  91. tristate "Joystick interface"
  92. help
  93. Say Y here if you want your joystick or gamepad to be
  94. accessible as char device 13:0+ - /dev/input/jsX device.
  95. If unsure, say Y.
  96. More information is available: <file:Documentation/input/joystick.txt>
  97. To compile this driver as a module, choose M here: the
  98. module will be called joydev.
  99. config INPUT_EVDEV
  100. tristate "Event interface"
  101. help
  102. Say Y here if you want your input device events be accessible
  103. under char device 13:64+ - /dev/input/eventX in a generic way.
  104. To compile this driver as a module, choose M here: the
  105. module will be called evdev.
  106. config INPUT_EVBUG
  107. tristate "Event debugging"
  108. help
  109. Say Y here if you have a problem with the input subsystem and
  110. want all events (keypresses, mouse movements), to be output to
  111. the system log. While this is useful for debugging, it's also
  112. a security threat - your keypresses include your passwords, of
  113. course.
  114. If unsure, say N.
  115. To compile this driver as a module, choose M here: the
  116. module will be called evbug.
  117. config INPUT_APMPOWER
  118. tristate "Input Power Event -> APM Bridge" if EMBEDDED
  119. depends on INPUT && APM_EMULATION
  120. help
  121. Say Y here if you want suspend key events to trigger a user
  122. requested suspend through APM. This is useful on embedded
  123. systems where such behaviour is desired without userspace
  124. interaction. If unsure, say N.
  125. To compile this driver as a module, choose M here: the
  126. module will be called apm-power.
  127. config XEN_KBDDEV_FRONTEND
  128. tristate "Xen virtual keyboard and mouse support"
  129. depends on XEN_FBDEV_FRONTEND
  130. default y
  131. select XEN_XENBUS_FRONTEND
  132. help
  133. This driver implements the front-end of the Xen virtual
  134. keyboard and mouse device driver. It communicates with a back-end
  135. in another domain.
  136. comment "Input Device Drivers"
  137. source "drivers/input/keyboard/Kconfig"
  138. source "drivers/input/mouse/Kconfig"
  139. source "drivers/input/joystick/Kconfig"
  140. source "drivers/input/tablet/Kconfig"
  141. source "drivers/input/touchscreen/Kconfig"
  142. source "drivers/input/misc/Kconfig"
  143. endif
  144. menu "Hardware I/O ports"
  145. source "drivers/input/serio/Kconfig"
  146. source "drivers/input/gameport/Kconfig"
  147. endmenu
  148. endmenu