Add some diagnostic stuff for ar7
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 6 May 2007 08:58:04 +0000 (08:58 +0000)
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 6 May 2007 08:58:04 +0000 (08:58 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7102 3c298f89-4303-0410-b956-a3cf2f4a3e73

target/linux/ar7-2.6/base-files/default/etc/diag.sh [new file with mode: 0644]
target/linux/ar7-2.6/base-files/default/etc/init.d/done [new file with mode: 0644]

diff --git a/target/linux/ar7-2.6/base-files/default/etc/diag.sh b/target/linux/ar7-2.6/base-files/default/etc/diag.sh
new file mode 100644 (file)
index 0000000..22acc71
--- /dev/null
@@ -0,0 +1,19 @@
+#!/bin/sh
+# Copyright (C) 2007 OpenWrt.org
+
+set_led() {
+       local led="$1"
+       local state="$2"
+       [ -d "/sys/class/leds/ar7:$led" ] && echo "$state" > "/sys/class/leds/ar7:$led/brightness"
+}
+
+set_state() {
+       case "$1" in
+               preinit)
+                       set_led status 1
+               ;;
+               done)
+                       set_led status 0
+               ;;
+       esac
+}
diff --git a/target/linux/ar7-2.6/base-files/default/etc/init.d/done b/target/linux/ar7-2.6/base-files/default/etc/init.d/done
new file mode 100644 (file)
index 0000000..9cd641d
--- /dev/null
@@ -0,0 +1,9 @@
+#!/bin/sh /etc/rc.common
+# Copyright (C) 2007 OpenWrt.org
+
+START=95
+boot() {
+       # set leds to normal state
+       . /etc/diag.sh
+       set_state done
+}