summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2009-05-31 13:55:35 +0000
committerFlorian Fainelli <florian@openwrt.org>2009-05-31 13:55:35 +0000
commit7328490dea2c69ed86626a6ea7624e92a0db3249 (patch)
tree3f59975768050c2784c6e3281377b05fc0a08165 /target
parentf84d0d2ae0151ca7420408a866283ef973bcfab5 (diff)
downloadmaster-31e0f0ae-7328490dea2c69ed86626a6ea7624e92a0db3249.tar.gz
master-31e0f0ae-7328490dea2c69ed86626a6ea7624e92a0db3249.tar.bz2
master-31e0f0ae-7328490dea2c69ed86626a6ea7624e92a0db3249.zip
add diag.sh to report boot status on the front-led of the machine
SVN-Revision: 16233
Diffstat (limited to 'target')
-rw-r--r--target/linux/cobalt/base-files/etc/diag.sh18
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
+}