Author: blogic Date: 2014-12-07 17:53:37 +0100 (Sun, 07 Dec 2014) New Revision: 43543
Added: trunk/target/linux/kirkwood/base-files/etc/diag.sh Log: kirkwood: add a diag script Currently only Linksys EA4500 is supported. Signed-off-by: Cezary Jackiewicz <[email protected]> Added: trunk/target/linux/kirkwood/base-files/etc/diag.sh =================================================================== --- trunk/target/linux/kirkwood/base-files/etc/diag.sh (rev 0) +++ trunk/target/linux/kirkwood/base-files/etc/diag.sh 2014-12-07 16:53:37 UTC (rev 43543) @@ -0,0 +1,29 @@ +#!/bin/sh +# Copyright (C) 2014 OpenWrt.org + +. /lib/functions/leds.sh +. /lib/kirkwood.sh + +get_status_led() { + case $(kirkwood_board_name) in + ea4500) + status_led="ea4500:white:health" + ;; + 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/kirkwood/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
