Richard Purdie | c72a1d6 | 2006-03-31 02:31:04 -0800 | [diff] [blame] | 1 | |
| 2 | menu "LED devices" |
| 3 | |
| 4 | config 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 | |
| 10 | config 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 | |
Ben Dooks | 24f51e8 | 2006-04-10 22:54:01 -0700 | [diff] [blame] | 17 | comment "LED drivers" |
Richard Purdie | c3bc995 | 2006-03-31 02:31:05 -0800 | [diff] [blame] | 18 | |
Richard Purdie | 3179108 | 2006-03-31 02:31:09 -0800 | [diff] [blame] | 19 | config 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 | |
Richard Purdie | 4d3cb35 | 2006-03-31 02:31:10 -0800 | [diff] [blame] | 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 | |
Richard Purdie | 3179108 | 2006-03-31 02:31:09 -0800 | [diff] [blame] | 33 | config 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 | |
John Bowler | 6a0c51b | 2006-03-31 02:31:11 -0800 | [diff] [blame] | 40 | config 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 | |
Dirk Opfer | 6d0cf3e | 2006-03-31 02:31:12 -0800 | [diff] [blame] | 49 | config 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 | |
Ben Dooks | 54bdc47 | 2006-04-10 22:54:00 -0700 | [diff] [blame] | 56 | config 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 | |
Ben Dooks | 24f51e8 | 2006-04-10 22:54:01 -0700 | [diff] [blame] | 63 | comment "LED Triggers" |
| 64 | |
| 65 | config 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 | |
Richard Purdie | 6655c6f | 2006-03-31 02:31:07 -0800 | [diff] [blame] | 73 | config 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 | |
Richard Purdie | 2bfb646 | 2006-03-31 02:31:16 -0800 | [diff] [blame] | 80 | config LEDS_TRIGGER_IDE_DISK |
Ben Dooks | baa351e | 2006-04-10 22:54:01 -0700 | [diff] [blame] | 81 | bool "LED IDE Disk Trigger" |
Richard Purdie | 2bfb646 | 2006-03-31 02:31:16 -0800 | [diff] [blame] | 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 | |
Richard Purdie | c72a1d6 | 2006-03-31 02:31:04 -0800 | [diff] [blame] | 87 | endmenu |
| 88 | |