diff options
Diffstat (limited to 'target/linux/cobalt')
-rw-r--r-- | target/linux/cobalt/base-files/etc/diag.sh | 27 | ||||
-rw-r--r-- | target/linux/cobalt/config-3.3 | 2 |
2 files changed, 12 insertions, 17 deletions
diff --git a/target/linux/cobalt/base-files/etc/diag.sh b/target/linux/cobalt/base-files/etc/diag.sh index 070c218b3..60849855d 100644 --- a/target/linux/cobalt/base-files/etc/diag.sh +++ b/target/linux/cobalt/base-files/etc/diag.sh @@ -1,20 +1,17 @@ #!/bin/sh -# Copyright (C) 2009-2011 OpenWrt.org +# Copyright (C) 2009-2013 OpenWrt.org -front_led=/sys/class/leds/qube::front +. /lib/functions/leds.sh + +status_led="qube::front" set_state() { - case "$1" in - preinit) - [ -d $front_led ] && { - echo none > $front_led/trigger - echo 255 > $front_led/brightness - } - ;; - done) - [ -d $front_led ] && { - echo 0 > $front_led/brightness - } - ;; - esac + case "$1" in + preinit) + status_led_on + ;; + done) + status_led_off + ;; + esac } diff --git a/target/linux/cobalt/config-3.3 b/target/linux/cobalt/config-3.3 index 315ef1586..8ffe838c0 100644 --- a/target/linux/cobalt/config-3.3 +++ b/target/linux/cobalt/config-3.3 @@ -7,7 +7,6 @@ CONFIG_ARCH_HIBERNATION_POSSIBLE=y CONFIG_ARCH_SUSPEND_POSSIBLE=y # CONFIG_ARPD is not set CONFIG_ATA=y -CONFIG_BCMA_POSSIBLE=y CONFIG_BINFMT_ELF32=y # CONFIG_BLK_DEV_INITRD is not set CONFIG_BLK_DEV_LOOP=y @@ -167,5 +166,4 @@ CONFIG_VT_CONSOLE=y CONFIG_VT_HW_CONSOLE_BINDING=y # CONFIG_WATCHDOG is not set # CONFIG_WINBOND_840 is not set -CONFIG_XZ_DEC=y CONFIG_ZONE_DMA_FLAG=0 |