aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/cobalt
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
commit24a790156d92436a181183a8bb6c4563723a7c3e (patch)
tree7a8ac9de7ff4ab6b93e3528bc939687e85885ade /target/linux/cobalt
parentbb2ed20991f0e22e59e3d70ed292b9cca9b54ef7 (diff)
downloadmaster-187ad058-24a790156d92436a181183a8bb6c4563723a7c3e.tar.gz
master-187ad058-24a790156d92436a181183a8bb6c4563723a7c3e.tar.bz2
master-187ad058-24a790156d92436a181183a8bb6c4563723a7c3e.zip
[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')
-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
+}