summaryrefslogtreecommitdiffstats
path: root/target/linux/cobalt/base-files
diff options
context:
space:
mode:
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-05-31 13:55:35 +0000
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-05-31 13:55:35 +0000
commit5944a256288df387a8b48c4ad0622c88181f32cd (patch)
tree7a8ac9de7ff4ab6b93e3528bc939687e85885ade /target/linux/cobalt/base-files
parente1e2d4135228a81a4ed26cda561a52c0c09e6a0f (diff)
[cobalt] add diag.sh to report boot status on the front-led of the machine
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16233 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/cobalt/base-files')
-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 000000000..47e3eba5f
--- /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
+}