Kconfig 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. menu "LED devices"
  2. depends on HAS_IOMEM
  3. config NEW_LEDS
  4. bool "LED Support"
  5. help
  6. Say Y to enable Linux LED support. This allows control of supported
  7. LEDs from both userspace and optionally, by kernel events (triggers).
  8. This is not related to standard keyboard LEDs which are controlled
  9. via the input system.
  10. config LEDS_CLASS
  11. tristate "LED Class Support"
  12. depends on NEW_LEDS
  13. help
  14. This option enables the led sysfs class in /sys/class/leds. You'll
  15. need this to do anything useful with LEDs. If unsure, say N.
  16. comment "LED drivers"
  17. config LEDS_CORGI
  18. tristate "LED Support for the Sharp SL-C7x0 series"
  19. depends on LEDS_CLASS && PXA_SHARP_C7xx
  20. help
  21. This option enables support for the LEDs on Sharp Zaurus
  22. SL-C7x0 series (C700, C750, C760, C860).
  23. config LEDS_LOCOMO
  24. tristate "LED Support for Locomo device"
  25. depends on LEDS_CLASS && SHARP_LOCOMO
  26. help
  27. This option enables support for the LEDs on Sharp Locomo.
  28. Zaurus models SL-5500 and SL-5600.
  29. config LEDS_SPITZ
  30. tristate "LED Support for the Sharp SL-Cxx00 series"
  31. depends on LEDS_CLASS && PXA_SHARP_Cxx00
  32. help
  33. This option enables support for the LEDs on Sharp Zaurus
  34. SL-Cxx00 series (C1000, C3000, C3100).
  35. config LEDS_IXP4XX
  36. tristate "LED Support for GPIO connected LEDs on IXP4XX processors"
  37. depends on LEDS_CLASS && ARCH_IXP4XX
  38. help
  39. This option enables support for the LEDs connected to GPIO
  40. outputs of the Intel IXP4XX processors. To be useful the
  41. particular board must have LEDs and they must be connected
  42. to the GPIO lines. If unsure, say Y.
  43. config LEDS_TOSA
  44. tristate "LED Support for the Sharp SL-6000 series"
  45. depends on LEDS_CLASS && PXA_SHARPSL
  46. help
  47. This option enables support for the LEDs on Sharp Zaurus
  48. SL-6000 series.
  49. config LEDS_S3C24XX
  50. tristate "LED Support for Samsung S3C24XX GPIO LEDs"
  51. depends on LEDS_CLASS && ARCH_S3C2410
  52. help
  53. This option enables support for LEDs connected to GPIO lines
  54. on Samsung S3C24XX series CPUs, such as the S3C2410 and S3C2440.
  55. config LEDS_AMS_DELTA
  56. tristate "LED Support for the Amstrad Delta (E3)"
  57. depends on LEDS_CLASS && MACH_AMS_DELTA
  58. help
  59. This option enables support for the LEDs on Amstrad Delta (E3).
  60. config LEDS_NET48XX
  61. tristate "LED Support for Soekris net48xx series Error LED"
  62. depends on LEDS_CLASS && SCx200_GPIO
  63. help
  64. This option enables support for the Soekris net4801 and net4826 error
  65. LED.
  66. config LEDS_WRAP
  67. tristate "LED Support for the WRAP series LEDs"
  68. depends on LEDS_CLASS && SCx200_GPIO
  69. help
  70. This option enables support for the PCEngines WRAP programmable LEDs.
  71. config LEDS_H1940
  72. tristate "LED Support for iPAQ H1940 device"
  73. depends LEDS_CLASS && ARCH_H1940
  74. help
  75. This option enables support for the LEDs on the h1940.
  76. config LEDS_COBALT
  77. tristate "LED Support for Cobalt Server front LED"
  78. depends on LEDS_CLASS && MIPS_COBALT
  79. help
  80. This option enables support for the front LED on Cobalt Server
  81. comment "LED Triggers"
  82. config LEDS_TRIGGERS
  83. bool "LED Trigger support"
  84. depends on NEW_LEDS
  85. help
  86. This option enables trigger support for the leds class.
  87. These triggers allow kernel events to drive the LEDs and can
  88. be configured via sysfs. If unsure, say Y.
  89. config LEDS_TRIGGER_TIMER
  90. tristate "LED Timer Trigger"
  91. depends on LEDS_TRIGGERS
  92. help
  93. This allows LEDs to be controlled by a programmable timer
  94. via sysfs. If unsure, say Y.
  95. config LEDS_TRIGGER_IDE_DISK
  96. bool "LED IDE Disk Trigger"
  97. depends on LEDS_TRIGGERS && BLK_DEV_IDEDISK
  98. help
  99. This allows LEDs to be controlled by IDE disk activity.
  100. If unsure, say Y.
  101. config LEDS_TRIGGER_HEARTBEAT
  102. tristate "LED Heartbeat Trigger"
  103. depends on LEDS_TRIGGERS
  104. help
  105. This allows LEDs to be controlled by a CPU load average.
  106. The flash frequency is a hyperbolic function of the 1-minute
  107. load average.
  108. If unsure, say Y.
  109. endmenu