diff options
author | Daniel Dickinson <crazycshore@gmail.com> | 2011-07-07 03:09:20 +0000 |
---|---|---|
committer | Daniel Dickinson <crazycshore@gmail.com> | 2011-07-07 03:09:20 +0000 |
commit | 0d8b0e937de3440836666cee85be4b0b44fbb59b (patch) | |
tree | 1e1bbc3738608c03959da0c1e06dc737c83fd9fa /target | |
parent | 1f69f4cf64cb9676cc8ddd6a832221a20659a4b9 (diff) | |
download | upstream-0d8b0e937de3440836666cee85be4b0b44fbb59b.tar.gz upstream-0d8b0e937de3440836666cee85be4b0b44fbb59b.tar.bz2 upstream-0d8b0e937de3440836666cee85be4b0b44fbb59b.zip |
base-files: diag.sh: added failsafe led definition
SVN-Revision: 27502
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/ar7/base-files/etc/diag.sh | 10 |
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 |