Minor patch to the AR7 diag.sh to make the status LED a bit more useful. From the...
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Fri, 7 Dec 2007 00:03:14 +0000 (00:03 +0000)
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Fri, 7 Dec 2007 00:03:14 +0000 (00:03 +0000)
This setup gives us 3.5 distinguishable states:

- Solid OFF:  Bootloader running, or kernel hung (timer task stalled)
- Solid ON:   Kernel hung (timer task stalled)
- 5Hz blink:  preinit
- Heartbeat:  normal operation

Signed-off-by: oliver@opencloud.com
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9666 3c298f89-4303-0410-b956-a3cf2f4a3e73

target/linux/ar7/base-files/etc/diag.sh

index af4a1f3c91470e041ccec3bc680c2d81e97cc8bf..0ce17cae89e2fbec79e6874cdb3485615ad59498 100644 (file)
@@ -1,19 +1,26 @@
 #!/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 3.5 distinguishable states:
+#
+# Solid OFF:  Bootloader running, or kernel hung (timer task stalled)
+# Solid ON:   Kernel hung (timer task stalled)
+# 5Hz blink:  preinit
+# 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
+                        }
+                ;;
+                done)
+                        [ -d /sys/class/leds/status ] && {
+                                echo heartbeat >/sys/class/leds/status/trigger
+                        }
+                ;;
+        esac
 }