avr32: add diag support
authorGabor Juhos <juhosg@openwrt.org>
Tue, 12 Mar 2013 13:28:21 +0000 (13:28 +0000)
committerGabor Juhos <juhosg@openwrt.org>
Tue, 12 Mar 2013 13:28:21 +0000 (13:28 +0000)
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35980

target/linux/avr32/base-files/etc/diag.sh [new file with mode: 0755]

diff --git a/target/linux/avr32/base-files/etc/diag.sh b/target/linux/avr32/base-files/etc/diag.sh
new file mode 100755 (executable)
index 0000000..ea20f98
--- /dev/null
@@ -0,0 +1,23 @@
+#!/bin/sh
+# Copyright (C) 2013 OpenWrt.org
+
+. /lib/functions/leds.sh
+
+set_state() {
+       status_led="sys"
+
+       case "$1" in
+       preinit)
+               insmod leds-gpio
+               status_led_blink_preinit
+               ;;
+
+       failsafe)
+               status_led_blink_failsafe
+               ;;
+
+       done)
+               status_led_on
+               ;;
+       esac
+}