Kconfig 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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_TOSA
  47. tristate "LED Support for the Sharp SL-6000 series"
  48. depends LEDS_CLASS && PXA_SHARPSL
  49. help
  50. This option enables support for the LEDs on Sharp Zaurus
  51. SL-6000 series.
  52. config LEDS_S3C24XX
  53. tristate "LED Support for Samsung S3C24XX GPIO LEDs"
  54. depends on LEDS_CLASS && ARCH_S3C2410
  55. help
  56. This option enables support for LEDs connected to GPIO lines
  57. on Samsung S3C24XX series CPUs, such as the S3C2410 and S3C2440.
  58. config LEDS_TRIGGER_TIMER
  59. tristate "LED Timer Trigger"
  60. depends LEDS_TRIGGERS
  61. help
  62. This allows LEDs to be controlled by a programmable timer
  63. via sysfs. If unsure, say Y.
  64. config LEDS_TRIGGER_IDE_DISK
  65. bool "LED IDE Disk Trigger"
  66. depends LEDS_TRIGGERS && BLK_DEV_IDEDISK
  67. help
  68. This allows LEDs to be controlled by IDE disk activity.
  69. If unsure, say Y.
  70. endmenu