diff options
author | Florian Fainelli <florian@openwrt.org> | 2013-02-18 10:37:58 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2013-02-18 10:37:58 +0000 |
commit | 2bfa1ed82c9e492ee76b5df403ada3d29592c48b (patch) | |
tree | b60f643fa11d21ee81db755203874ff5e5f78ec0 /target/linux/cobalt | |
parent | d7092aceb858541065fa33af3fe9f957d8e69e4a (diff) | |
download | upstream-2bfa1ed82c9e492ee76b5df403ada3d29592c48b.tar.gz upstream-2bfa1ed82c9e492ee76b5df403ada3d29592c48b.tar.bz2 upstream-2bfa1ed82c9e492ee76b5df403ada3d29592c48b.zip |
cobalt: migrate platform to common led helper functions
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
Signed-off-by: Florian Fainelli <florian@openwrt.org>
SVN-Revision: 35662
Diffstat (limited to 'target/linux/cobalt')
-rw-r--r-- | target/linux/cobalt/base-files/etc/diag.sh | 27 |
1 files changed, 12 insertions, 15 deletions
diff --git a/target/linux/cobalt/base-files/etc/diag.sh b/target/linux/cobalt/base-files/etc/diag.sh index 070c218b3f..60849855dc 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 } |