Kconfig 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. config LEDS_TRIGGERS
  14. bool "LED Trigger support"
  15. depends NEW_LEDS
  16. help
  17. This option enables trigger support for the leds class.
  18. These triggers allow kernel events to drive the LEDs and can
  19. be configured via sysfs. If unsure, say Y.
  20. config LEDS_CORGI
  21. tristate "LED Support for the Sharp SL-C7x0 series"
  22. depends LEDS_CLASS && PXA_SHARP_C7xx
  23. help
  24. This option enables support for the LEDs on Sharp Zaurus
  25. SL-C7x0 series (C700, C750, C760, C860).
  26. config LEDS_LOCOMO
  27. tristate "LED Support for Locomo device"
  28. depends LEDS_CLASS && SHARP_LOCOMO
  29. help
  30. This option enables support for the LEDs on Sharp Locomo.
  31. Zaurus models SL-5500 and SL-5600.
  32. config LEDS_SPITZ
  33. tristate "LED Support for the Sharp SL-Cxx00 series"
  34. depends LEDS_CLASS && PXA_SHARP_Cxx00
  35. help
  36. This option enables support for the LEDs on Sharp Zaurus
  37. SL-Cxx00 series (C1000, C3000, C3100).
  38. config LEDS_IXP4XX
  39. tristate "LED Support for GPIO connected LEDs on IXP4XX processors"
  40. depends LEDS_CLASS && ARCH_IXP4XX
  41. help
  42. This option enables support for the LEDs connected to GPIO
  43. outputs of the Intel IXP4XX processors. To be useful the
  44. particular board must have LEDs and they must be connected
  45. to the GPIO lines. If unsure, say Y.
  46. config LEDS_TRIGGER_TIMER
  47. tristate "LED Timer Trigger"
  48. depends LEDS_TRIGGERS
  49. help
  50. This allows LEDs to be controlled by a programmable timer
  51. via sysfs. If unsure, say Y.
  52. endmenu