Kconfig 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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 && SPARC
  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_UINPUT
  42. tristate "User level driver support"
  43. help
  44. Say Y here if you want to support user level drivers for input
  45. subsystem accessible under char device 10:223 - /dev/input/uinput.
  46. To compile this driver as a module, choose M here: the
  47. module will be called uinput.
  48. config HP_SDC_RTC
  49. tristate "HP SDC Real Time Clock"
  50. depends on GSC
  51. select HP_SDC
  52. help
  53. Say Y here if you want to support the built-in real time clock
  54. of the HP SDC controller.
  55. endif