Kconfig 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. help
  37. Say Y here if you want to support MIPS Cobalt button interface.
  38. To compile this driver as a module, choose M here: the
  39. module will be called cobalt_btns.
  40. config INPUT_WISTRON_BTNS
  41. tristate "x86 Wistron laptop button interface"
  42. depends on X86 && !X86_64
  43. help
  44. Say Y here for support of Winstron laptop button interface, used on
  45. laptops of various brands, including Acer and Fujitsu-Siemens.
  46. To compile this driver as a module, choose M here: the module will
  47. be called wistron_btns.
  48. config INPUT_ATLAS_BTNS
  49. tristate "x86 Atlas button interface"
  50. depends on X86 && ACPI
  51. help
  52. Say Y here for support of Atlas wallmount touchscreen buttons.
  53. The events will show up as scancodes F1 through F9 via evdev.
  54. To compile this driver as a module, choose M here: the module will
  55. be called atlas_btns.
  56. config INPUT_IXP4XX_BEEPER
  57. tristate "IXP4XX Beeper support"
  58. depends on ARCH_IXP4XX
  59. help
  60. If you say yes here, you can connect a beeper to the
  61. ixp4xx gpio pins. This is used by the LinkSys NSLU2.
  62. If unsure, say Y.
  63. To compile this driver as a module, choose M here: the
  64. module will be called ixp4xx-beeper.
  65. config INPUT_UINPUT
  66. tristate "User level driver support"
  67. help
  68. Say Y here if you want to support user level drivers for input
  69. subsystem accessible under char device 10:223 - /dev/input/uinput.
  70. To compile this driver as a module, choose M here: the
  71. module will be called uinput.
  72. config HP_SDC_RTC
  73. tristate "HP SDC Real Time Clock"
  74. depends on GSC || HP300
  75. select HP_SDC
  76. help
  77. Say Y here if you want to support the built-in real time clock
  78. of the HP SDC controller.
  79. endif