summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
Diffstat (limited to 'target')
-rw-r--r--target/linux/ar7-2.6/base-files/default/etc/diag.sh19
-rw-r--r--target/linux/ar7-2.6/base-files/default/etc/init.d/done9
2 files changed, 28 insertions, 0 deletions
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
index 000000000..22acc71ab
--- /dev/null
+++ b/target/linux/ar7-2.6/base-files/default/etc/diag.sh
@@ -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
index 000000000..9cd641d7c
--- /dev/null
+++ b/target/linux/ar7-2.6/base-files/default/etc/init.d/done
@@ -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
+}