Author: kaloz Date: 2014-06-29 14:53:09 +0200 (Sun, 29 Jun 2014) New Revision: 41383
Added: trunk/target/linux/mvebu/base-files/etc/diag.sh Log: [mvebu]: use the power led on the WRT1900AC for status reporting Signed-off-by: Imre Kaloz <[email protected]> Added: trunk/target/linux/mvebu/base-files/etc/diag.sh =================================================================== --- trunk/target/linux/mvebu/base-files/etc/diag.sh (rev 0) +++ trunk/target/linux/mvebu/base-files/etc/diag.sh 2014-06-29 12:53:09 UTC (rev 41383) @@ -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 +} Property changes on: trunk/target/linux/mvebu/base-files/etc/diag.sh ___________________________________________________________________ Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
