diff options
author | Rod Whitby <rod@whitby.id.au> | 2008-03-22 15:01:10 +0000 |
---|---|---|
committer | Rod Whitby <rod@whitby.id.au> | 2008-03-22 15:01:10 +0000 |
commit | 6e1317380026540d17d2526a939965cda085f548 (patch) | |
tree | 13800642a97d1b94b3aaab187adc10fe35a3a161 /target | |
parent | eafcbc1cdd90671311c4de34286fac3f0f3e427b (diff) | |
download | upstream-6e1317380026540d17d2526a939965cda085f548.tar.gz upstream-6e1317380026540d17d2526a939965cda085f548.tar.bz2 upstream-6e1317380026540d17d2526a939965cda085f548.zip |
Enable the default-on led trigger
SVN-Revision: 10643
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/generic-2.6/config-2.6.24 | 1 | ||||
-rw-r--r-- | target/linux/generic-2.6/patches-2.6.24/402-ledtrig_default_on.patch | 23 |
2 files changed, 24 insertions, 0 deletions
diff --git a/target/linux/generic-2.6/config-2.6.24 b/target/linux/generic-2.6/config-2.6.24 index 9610ee12da..2428960e4c 100644 --- a/target/linux/generic-2.6/config-2.6.24 +++ b/target/linux/generic-2.6/config-2.6.24 @@ -689,6 +689,7 @@ CONFIG_JOLIET=y # CONFIG_LDM_PARTITION is not set CONFIG_LEDS_CLASS=y CONFIG_LEDS_TRIGGERS=y +CONFIG_LEDS_TRIGGER_DEFAULT_ON=y CONFIG_LEDS_TRIGGER_HEARTBEAT=y # CONFIG_LEDS_TRIGGER_IDE_DISK is not set # CONFIG_LEDS_TRIGGER_MORSE is not set diff --git a/target/linux/generic-2.6/patches-2.6.24/402-ledtrig_default_on.patch b/target/linux/generic-2.6/patches-2.6.24/402-ledtrig_default_on.patch new file mode 100644 index 0000000000..a59915c3eb --- /dev/null +++ b/target/linux/generic-2.6/patches-2.6.24/402-ledtrig_default_on.patch @@ -0,0 +1,23 @@ +diff -ur linux-2.6.23.1.orig/drivers/leds/Kconfig linux-2.6.23.1/drivers/leds/Kconfig +--- linux-2.6.23.1.orig/drivers/leds/Kconfig 2007-12-01 00:41:03.000000000 +1300 ++++ linux-2.6.23.1/drivers/leds/Kconfig 2007-12-01 01:26:43.000000000 +1300 +@@ -137,4 +137,11 @@ + tristate "LED Morse Trigger" + depends on LEDS_TRIGGERS + ++config LEDS_TRIGGER_DEFAULT_ON ++ tristate "LED Default ON Trigger" ++ depends on LEDS_TRIGGERS ++ help ++ This allows LEDs to be initialised in the ON state. ++ If unsure, say Y. ++ + endif # NEW_LEDS +diff -ur linux-2.6.23.1.orig/drivers/leds/Makefile linux-2.6.23.1/drivers/leds/Makefile +--- linux-2.6.23.1.orig/drivers/leds/Makefile 2007-12-01 00:41:03.000000000 +1300 ++++ linux-2.6.23.1/drivers/leds/Makefile 2007-12-01 01:27:12.000000000 +1300 +@@ -23,3 +23,4 @@ + obj-$(CONFIG_LEDS_TRIGGER_IDE_DISK) += ledtrig-ide-disk.o + obj-$(CONFIG_LEDS_TRIGGER_HEARTBEAT) += ledtrig-heartbeat.o + obj-$(CONFIG_LEDS_TRIGGER_MORSE) += ledtrig-morse.o ++obj-$(CONFIG_LEDS_TRIGGER_DEFAULT_ON) += ledtrig-default-on.o |