Kconfig 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. menu "LED devices"
  2. config NEW_LEDS
  3. bool "LED Support"
  4. help
  5. Say Y to enable Linux LED support. This is not related to standard
  6. keyboard LEDs which are controlled via the input system.
  7. config LEDS_CLASS
  8. tristate "LED Class Support"
  9. depends NEW_LEDS
  10. help
  11. This option enables the led sysfs class in /sys/class/leds. You'll
  12. need this to do anything useful with LEDs. If unsure, say N.
  13. comment "LED drivers"
  14. config LEDS_CORGI
  15. tristate "LED Support for the Sharp SL-C7x0 series"
  16. depends LEDS_CLASS && PXA_SHARP_C7xx
  17. help
  18. This option enables support for the LEDs on Sharp Zaurus
  19. SL-C7x0 series (C700, C750, C760, C860).
  20. config LEDS_LOCOMO
  21. tristate "LED Support for Locomo device"
  22. depends LEDS_CLASS && SHARP_LOCOMO
  23. help
  24. This option enables support for the LEDs on Sharp Locomo.
  25. Zaurus models SL-5500 and SL-5600.
  26. config LEDS_SPITZ
  27. tristate "LED Support for the Sharp SL-Cxx00 series"
  28. depends LEDS_CLASS && PXA_SHARP_Cxx00
  29. help
  30. This option enables support for the LEDs on Sharp Zaurus
  31. SL-Cxx00 series (C1000, C3000, C3100).
  32. config LEDS_IXP4XX
  33. tristate "LED Support for GPIO connected LEDs on IXP4XX processors"
  34. depends LEDS_CLASS && ARCH_IXP4XX
  35. help
  36. This option enables support for the LEDs connected to GPIO
  37. outputs of the Intel IXP4XX processors. To be useful the
  38. particular board must have LEDs and they must be connected
  39. to the GPIO lines. If unsure, say Y.
  40. config LEDS_TOSA
  41. tristate "LED Support for the Sharp SL-6000 series"
  42. depends LEDS_CLASS && PXA_SHARPSL
  43. help
  44. This option enables support for the LEDs on Sharp Zaurus
  45. SL-6000 series.
  46. config LEDS_S3C24XX
  47. tristate "LED Support for Samsung S3C24XX GPIO LEDs"
  48. depends on LEDS_CLASS && ARCH_S3C2410
  49. help
  50. This option enables support for LEDs connected to GPIO lines
  51. on Samsung S3C24XX series CPUs, such as the S3C2410 and S3C2440.
  52. comment "LED Triggers"
  53. config LEDS_TRIGGERS
  54. bool "LED Trigger support"
  55. depends NEW_LEDS
  56. help
  57. This option enables trigger support for the leds class.
  58. These triggers allow kernel events to drive the LEDs and can
  59. be configured via sysfs. If unsure, say Y.
  60. config LEDS_TRIGGER_TIMER
  61. tristate "LED Timer Trigger"
  62. depends LEDS_TRIGGERS
  63. help
  64. This allows LEDs to be controlled by a programmable timer
  65. via sysfs. If unsure, say Y.
  66. config LEDS_TRIGGER_IDE_DISK
  67. bool "LED IDE Disk Trigger"
  68. depends LEDS_TRIGGERS && BLK_DEV_IDEDISK
  69. help
  70. This allows LEDs to be controlled by IDE disk activity.
  71. If unsure, say Y.
  72. endmenu