openwrtv4/target/linux/mpc85xx/base-files/etc/diag.sh
Luka Perkov 81db848656 targets: base-files: diag.sh does not need to be executable
Signed-off-by: Luka Perkov <luka@openwrt.org>

SVN-Revision: 44305
2015-02-07 19:58:58 +00:00

35 lines
480 B
Bash

#!/bin/sh
# Copyright (C) 2013 OpenWrt.org
. /lib/functions/leds.sh
. /lib/mpc85xx.sh
get_status_led() {
case $(mpc85xx_board_name) in
tl-wdr4900-v1)
status_led="tp-link:blue:system"
;;
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
}