[mvebu]: use the power led on the WRT1900AC for status reporting
authorkaloz <kaloz@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 29 Jun 2014 12:53:09 +0000 (12:53 +0000)
committerkaloz <kaloz@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 29 Jun 2014 12:53:09 +0000 (12:53 +0000)
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@41383 3c298f89-4303-0410-b956-a3cf2f4a3e73

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

diff --git a/target/linux/mvebu/base-files/etc/diag.sh b/target/linux/mvebu/base-files/etc/diag.sh
new file mode 100755 (executable)
index 0000000..07570b9
--- /dev/null
@@ -0,0 +1,29 @@
+#!/bin/sh
+# Copyright (C) 2014 OpenWrt.org
+
+. /lib/functions/leds.sh
+. /lib/mvebu.sh
+
+get_status_led() {
+       case $(mvebu_board_name) in
+       armada-xp-mamba)
+               status_led="mamba:white:power"
+               ;;
+       esac
+}
+
+set_state() {
+       get_status_led
+
+       case "$1" in
+       preinit)
+               status_led_blink_preinit
+               ;;
+       failsafe)
+               status_led_blink_failsafe
+               ;;
+       done)
+               status_led_on
+               ;;
+       esac
+}