Kconfig 835 B

123456789101112131415161718192021222324252627282930313233
  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_TRIGGER_TIMER
  21. tristate "LED Timer Trigger"
  22. depends LEDS_TRIGGERS
  23. help
  24. This allows LEDs to be controlled by a programmable timer
  25. via sysfs. If unsure, say Y.
  26. endmenu