aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ar7/base-files/etc/diag.sh
diff options
context:
space:
mode:
authorDaniel Dickinson <daniel@cshore.neomailbox.net>2011-07-07 03:09:20 +0000
committerDaniel Dickinson <daniel@cshore.neomailbox.net>2011-07-07 03:09:20 +0000
commit2fd0b76c6be538662aafbf25d2c7969b69090739 (patch)
tree44f9d4edc00b3ef5eff6ac8a0e471251b192a177 /target/linux/ar7/base-files/etc/diag.sh
parent79a8d3032519ef624bc6614e30a3bf40b5dc931d (diff)
downloadmaster-187ad058-2fd0b76c6be538662aafbf25d2c7969b69090739.tar.gz
master-187ad058-2fd0b76c6be538662aafbf25d2c7969b69090739.tar.bz2
master-187ad058-2fd0b76c6be538662aafbf25d2c7969b69090739.zip
[ar7] base-files: diag.sh: added failsafe led definition
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27502 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar7/base-files/etc/diag.sh')
-rw-r--r--target/linux/ar7/base-files/etc/diag.sh10
1 files changed, 9 insertions, 1 deletions
diff --git a/target/linux/ar7/base-files/etc/diag.sh b/target/linux/ar7/base-files/etc/diag.sh
index 0ce17cae89..b8e4dc8740 100644
--- a/target/linux/ar7/base-files/etc/diag.sh
+++ b/target/linux/ar7/base-files/etc/diag.sh
@@ -1,11 +1,12 @@
#!/bin/sh
# Copyright (C) 2007 OpenWrt.org
-# This setup gives us 3.5 distinguishable states:
+# This setup gives us 4.5 distinguishable states:
#
# Solid OFF: Bootloader running, or kernel hung (timer task stalled)
# Solid ON: Kernel hung (timer task stalled)
# 5Hz blink: preinit
+# 10Hz blink: failsafe
# Heartbeat: normal operation
set_state() {
@@ -17,6 +18,13 @@ set_state() {
echo 100 >/sys/class/leds/status/delay_off
}
;;
+ failsafe)
+ [ -d /sys/class/leds/status ] && {
+ echo timer >/sys/class/leds/status/trigger
+ echo 50 >/sys/class/leds/status/delay_on
+ echo 50 >/sys/class/leds/status/delay_off
+ }
+ ;;
done)
[ -d /sys/class/leds/status ] && {
echo heartbeat >/sys/class/leds/status/trigger