Kconfig 4.4 KB

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