X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/84eb9e7193a483ba882b94ec9361c7d193c41fee..3329b43e7655951c4b496eb7c24b2af096fcbef7:/target/linux/ar7/base-files/etc/diag.sh?ds=sidebyside diff --git a/target/linux/ar7/base-files/etc/diag.sh b/target/linux/ar7/base-files/etc/diag.sh index af4a1f3c9..b8e4dc874 100644 --- a/target/linux/ar7/base-files/etc/diag.sh +++ b/target/linux/ar7/base-files/etc/diag.sh @@ -1,19 +1,34 @@ #!/bin/sh # Copyright (C) 2007 OpenWrt.org -set_led() { - local led="$1" - local state="$2" - [ -d "/sys/class/leds/$led" ] && echo "$state" > "/sys/class/leds/$led/brightness" -} +# 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() { - case "$1" in - preinit) - set_led status 255 - ;; - done) - set_led status 0 - ;; - esac + case "$1" in + preinit) + [ -d /sys/class/leds/status ] && { + echo timer >/sys/class/leds/status/trigger + echo 100 >/sys/class/leds/status/delay_on + 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 + } + ;; + esac }