1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-19 07:16:16 +02:00

[ar7] base-files: diag.sh: added failsafe led definition

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27502 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
cshore 2011-07-07 03:09:20 +00:00
parent 4e5d6449f6
commit 59e4e4f311

View File

@ -1,11 +1,12 @@
#!/bin/sh #!/bin/sh
# Copyright (C) 2007 OpenWrt.org # 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 OFF: Bootloader running, or kernel hung (timer task stalled)
# Solid ON: Kernel hung (timer task stalled) # Solid ON: Kernel hung (timer task stalled)
# 5Hz blink: preinit # 5Hz blink: preinit
# 10Hz blink: failsafe
# Heartbeat: normal operation # Heartbeat: normal operation
set_state() { set_state() {
@ -17,6 +18,13 @@ set_state() {
echo 100 >/sys/class/leds/status/delay_off 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) done)
[ -d /sys/class/leds/status ] && { [ -d /sys/class/leds/status ] && {
echo heartbeat >/sys/class/leds/status/trigger echo heartbeat >/sys/class/leds/status/trigger