Kconfig 2.5 KB

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