diff options
| author | Roman Yeryomin <roman@advem.lv> | 2013-05-26 01:02:55 +0300 |
|---|---|---|
| committer | Roman Yeryomin <roman@advem.lv> | 2013-05-26 01:02:55 +0300 |
| commit | 342045a35b1981a89e4bc80842b10c065e1050da (patch) | |
| tree | 4140720b20e8d641c11da882010d6130a75fef21 /target/linux/cobalt | |
| parent | 7338133dde8238afce34676214b494c8db96689b (diff) | |
| parent | 1a116ce7818ecee5d167a9c0ebb1a0feca9120e6 (diff) | |
Merge trunk into realtek-unstable
Conflicts:
Config.in
feeds.conf.default
package/base-files/files/etc/hotplug2-common.rules
package/network/config/netifd/files/etc/init.d/network
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 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 } |
