diff options
author | Florian Fainelli <florian@openwrt.org> | 2009-05-31 13:55:35 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2009-05-31 13:55:35 +0000 |
commit | 7328490dea2c69ed86626a6ea7624e92a0db3249 (patch) | |
tree | 3f59975768050c2784c6e3281377b05fc0a08165 /target/linux | |
parent | f84d0d2ae0151ca7420408a866283ef973bcfab5 (diff) | |
download | upstream-7328490dea2c69ed86626a6ea7624e92a0db3249.tar.gz upstream-7328490dea2c69ed86626a6ea7624e92a0db3249.tar.bz2 upstream-7328490dea2c69ed86626a6ea7624e92a0db3249.zip |
add diag.sh to report boot status on the front-led of the machine
SVN-Revision: 16233
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/cobalt/base-files/etc/diag.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/target/linux/cobalt/base-files/etc/diag.sh b/target/linux/cobalt/base-files/etc/diag.sh new file mode 100644 index 0000000000..47e3eba5f7 --- /dev/null +++ b/target/linux/cobalt/base-files/etc/diag.sh @@ -0,0 +1,18 @@ +#!/bin/sh +# Copyright (C) 2009 OpenWrt.org + +set_state() { + case "$1" in + preinit) + [ -d /sys/class/leds/qube-front ] && { + echo none > /sys/class/leds/qube-front/trigger + echo 255 > /sys/class/leds/qube-front/brightness + } + ;; + done) + [ -d /sys/class/leds/qube-front ] && { + echo 0 > /sys/class/leds/qube-front/brightness + } + ;; + esac +} |