Kconfig 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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 || X86_64 || 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 && (SPARC32 || 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_UINPUT
  34. tristate "User level driver support"
  35. help
  36. Say Y here if you want to support user level drivers for input
  37. subsystem accessible under char device 10:223 - /dev/input/uinput.
  38. To compile this driver as a module, choose M here: the
  39. module will be called uinput.
  40. config HP_SDC_RTC
  41. tristate "HP SDC Real Time Clock"
  42. depends on GSC
  43. select HP_SDC
  44. help
  45. Say Y here if you want to support the built-in real time clock
  46. of the HP SDC controller.
  47. endif