1
0
This repository has been archived on 2025-06-16. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
openwrt_archive/target/linux/mpc85xx/base-files/etc/diag.sh
2013-06-21 16:53:43 +00:00

32 lines
421 B
Bash
Executable File

#!/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
;;
done)
status_led_on
;;
esac
}