barebox/drivers/led/Kconfig
Sascha Hauer 32558d1ae5 LED: Add LED trigger support
This patch allows to associate LEDs with certain triggers, such
as heartbeat or network activity.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
2010-12-20 09:57:35 +01:00

22 lines
348 B
Text

menuconfig LED
bool "LED support"
if LED
config LED_GPIO
bool "gpio LED support"
depends on GENERIC_GPIO
config LED_GPIO_RGB
bool "gpio rgb LED support"
depends on LED_GPIO
config LED_TRIGGERS
select POLLER
bool "LED triggers support"
help
This allows to assign certain triggers like heartbeat or network
activity to LEDs.
endif