Kconfig 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. #
  2. # Input misc drivers configuration
  3. #
  4. menuconfig INPUT_MISC
  5. bool "Miscellaneous devices"
  6. help
  7. Say Y here, and a list of miscellaneous input drivers will be displayed.
  8. Everything that didn't fit into the other categories is here. This option
  9. doesn't affect the kernel.
  10. If unsure, say Y.
  11. if INPUT_MISC
  12. config INPUT_PCSPKR
  13. tristate "PC Speaker support"
  14. depends on ALPHA || X86 || MIPS || PPC_PREP || PPC_CHRP || PPC_PSERIES
  15. help
  16. Say Y here if you want the standard PC Speaker to be used for
  17. bells and whistles.
  18. If unsure, say Y.
  19. To compile this driver as a module, choose M here: the
  20. module will be called pcspkr.
  21. config INPUT_SPARCSPKR
  22. tristate "SPARC Speaker support"
  23. depends on PCI && SPARC64
  24. help
  25. Say Y here if you want the standard Speaker on Sparc PCI systems
  26. to be used for bells and whistles.
  27. If unsure, say Y.
  28. To compile this driver as a module, choose M here: the
  29. module will be called sparcspkr.
  30. config INPUT_M68K_BEEP
  31. tristate "M68k Beeper support"
  32. depends on M68K
  33. config INPUT_COBALT_BTNS
  34. tristate "Cobalt button interface"
  35. depends on MIPS_COBALT
  36. select INPUT_POLLDEV
  37. help
  38. Say Y here if you want to support MIPS Cobalt button interface.
  39. To compile this driver as a module, choose M here: the
  40. module will be called cobalt_btns.
  41. config INPUT_WISTRON_BTNS
  42. tristate "x86 Wistron laptop button interface"
  43. depends on X86 && !X86_64
  44. help
  45. Say Y here for support of Winstron laptop button interface, used on
  46. laptops of various brands, including Acer and Fujitsu-Siemens.
  47. To compile this driver as a module, choose M here: the module will
  48. be called wistron_btns.
  49. config INPUT_ATLAS_BTNS
  50. tristate "x86 Atlas button interface"
  51. depends on X86 && ACPI
  52. help
  53. Say Y here for support of Atlas wallmount touchscreen buttons.
  54. The events will show up as scancodes F1 through F9 via evdev.
  55. To compile this driver as a module, choose M here: the module will
  56. be called atlas_btns.
  57. config INPUT_IXP4XX_BEEPER
  58. tristate "IXP4XX Beeper support"
  59. depends on ARCH_IXP4XX
  60. help
  61. If you say yes here, you can connect a beeper to the
  62. ixp4xx gpio pins. This is used by the LinkSys NSLU2.
  63. If unsure, say Y.
  64. To compile this driver as a module, choose M here: the
  65. module will be called ixp4xx-beeper.
  66. config INPUT_UINPUT
  67. tristate "User level driver support"
  68. help
  69. Say Y here if you want to support user level drivers for input
  70. subsystem accessible under char device 10:223 - /dev/input/uinput.
  71. To compile this driver as a module, choose M here: the
  72. module will be called uinput.
  73. config INPUT_POLLDEV
  74. tristate "Polled input device skeleton"
  75. help
  76. Say Y here if you are using a driver for an input
  77. device that periodically polls hardware state. This
  78. option is only useful for out-of-tree drivers since
  79. in-tree drivers select it automatically.
  80. To compile this driver as a module, choose M here: the
  81. module will be called input-polldev.
  82. config HP_SDC_RTC
  83. tristate "HP SDC Real Time Clock"
  84. depends on GSC || HP300
  85. select HP_SDC
  86. help
  87. Say Y here if you want to support the built-in real time clock
  88. of the HP SDC controller.
  89. endif