Kconfig 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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_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_TRIGGER_TIMER
  33. tristate "LED Timer Trigger"
  34. depends LEDS_TRIGGERS
  35. help
  36. This allows LEDs to be controlled by a programmable timer
  37. via sysfs. If unsure, say Y.
  38. endmenu