Kconfig 656 B

1234567891011121314151617181920212223242526
  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. endmenu