Kconfig 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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_IXP4XX_BEEPER
  42. tristate "IXP4XX Beeper support"
  43. depends on ARCH_IXP4XX
  44. help
  45. If you say yes here, you can connect a beeper to the
  46. ixp4xx gpio pins. This is used by the LinkSys NSLU2.
  47. If unsure, say Y.
  48. To compile this driver as a module, choose M here: the
  49. module will be called ixp4xx-beeper.
  50. config INPUT_UINPUT
  51. tristate "User level driver support"
  52. help
  53. Say Y here if you want to support user level drivers for input
  54. subsystem accessible under char device 10:223 - /dev/input/uinput.
  55. To compile this driver as a module, choose M here: the
  56. module will be called uinput.
  57. config HP_SDC_RTC
  58. tristate "HP SDC Real Time Clock"
  59. depends on GSC || HP300
  60. select HP_SDC
  61. help
  62. Say Y here if you want to support the built-in real time clock
  63. of the HP SDC controller.
  64. endif