From: Imre Kaloz Date: Sun, 29 Jun 2014 12:53:09 +0000 (+0000) Subject: [mvebu]: use the power led on the WRT1900AC for status reporting X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=c1230ba76e3914cd50768e92459e1ba47b177740;p=openwrt%2Fsvn-archive%2Farchive.git [mvebu]: use the power led on the WRT1900AC for status reporting Signed-off-by: Imre Kaloz SVN-Revision: 41383 --- diff --git a/target/linux/mvebu/base-files/etc/diag.sh b/target/linux/mvebu/base-files/etc/diag.sh new file mode 100755 index 0000000000..07570b9188 --- /dev/null +++ b/target/linux/mvebu/base-files/etc/diag.sh @@ -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 +}