1 2menu "LED devices" 3 4config NEW_LEDS 5 bool "LED Support" 6 help 7 Say Y to enable Linux LED support. This is not related to standard 8 keyboard LEDs which are controlled via the input system. 9 10config LEDS_CLASS 11 tristate "LED Class Support" 12 depends 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 17comment "LED drivers" 18 19config LEDS_CORGI 20 tristate "LED Support for the Sharp SL-C7x0 series" 21 depends LEDS_CLASS && PXA_SHARP_C7xx 22 help 23 This option enables support for the LEDs on Sharp Zaurus 24 SL-C7x0 series (C700, C750, C760, C860). 25 26config 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 33config LEDS_SPITZ 34 tristate "LED Support for the Sharp SL-Cxx00 series" 35 depends LEDS_CLASS && PXA_SHARP_Cxx00 36 help 37 This option enables support for the LEDs on Sharp Zaurus 38 SL-Cxx00 series (C1000, C3000, C3100). 39 40config LEDS_IXP4XX 41 tristate "LED Support for GPIO connected LEDs on IXP4XX processors" 42 depends LEDS_CLASS && ARCH_IXP4XX 43 help 44 This option enables support for the LEDs connected to GPIO 45 outputs of the Intel IXP4XX processors. To be useful the 46 particular board must have LEDs and they must be connected 47 to the GPIO lines. If unsure, say Y. 48 49config LEDS_TOSA 50 tristate "LED Support for the Sharp SL-6000 series" 51 depends LEDS_CLASS && PXA_SHARPSL 52 help 53 This option enables support for the LEDs on Sharp Zaurus 54 SL-6000 series. 55 56config LEDS_S3C24XX 57 tristate "LED Support for Samsung S3C24XX GPIO LEDs" 58 depends on LEDS_CLASS && ARCH_S3C2410 59 help 60 This option enables support for LEDs connected to GPIO lines 61 on Samsung S3C24XX series CPUs, such as the S3C2410 and S3C2440. 62 63comment "LED Triggers" 64 65config LEDS_TRIGGERS 66 bool "LED Trigger support" 67 depends NEW_LEDS 68 help 69 This option enables trigger support for the leds class. 70 These triggers allow kernel events to drive the LEDs and can 71 be configured via sysfs. If unsure, say Y. 72 73config LEDS_TRIGGER_TIMER 74 tristate "LED Timer Trigger" 75 depends LEDS_TRIGGERS 76 help 77 This allows LEDs to be controlled by a programmable timer 78 via sysfs. If unsure, say Y. 79 80config LEDS_TRIGGER_IDE_DISK 81 bool "LED IDE Disk Trigger" 82 depends LEDS_TRIGGERS && BLK_DEV_IDEDISK 83 help 84 This allows LEDs to be controlled by IDE disk activity. 85 If unsure, say Y. 86 87endmenu 88 89