openwrtv4/target/linux/mvebu/base-files/etc/diag.sh
Rujun Wang 1830c31632 mvebu: Configure status LED for WRT1900ACS
Signed-off-by: Rujun Wang <chinawrj@gmail.com>
2016-06-15 12:58:23 +02:00

35 lines
499 B
Bash

#!/bin/sh
# Copyright (C) 2014 OpenWrt.org
. /lib/functions/leds.sh
. /lib/mvebu.sh
get_status_led() {
case $(mvebu_board_name) in
armada-385-linksys-shelby)
status_led="shelby:white:power"
;;
armada-xp-linksys-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
;;
preinit_regular)
status_led_blink_preinit_regular
;;
done)
status_led_on
;;
esac
}