use the power led on the WRT1900AC for status reporting
authorImre Kaloz <kaloz@openwrt.org>
Sun, 29 Jun 2014 12:53:09 +0000 (12:53 +0000)
committerImre Kaloz <kaloz@openwrt.org>
Sun, 29 Jun 2014 12:53:09 +0000 (12:53 +0000)
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
SVN-Revision: 41383

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
+}