immortalwrt/target/linux/mvebu/base-files/etc/diag.sh

49 lines
736 B
Bash
Raw Normal View History

2017-09-06 19:19:45 +08:00
#!/bin/sh
# Copyright (C) 2014-2016 OpenWrt.org
# Copyright (C) 2016 LEDE-Project.org
. /lib/functions.sh
. /lib/functions/leds.sh
get_status_led() {
case $(board_name) in
linksys,caiman)
2017-09-06 19:19:45 +08:00
status_led="caiman:white:power"
;;
linksys,cobra)
2017-09-06 19:19:45 +08:00
status_led="cobra:white:power"
;;
linksys,mamba)
status_led="mamba:white:power"
;;
linksys,rango)
2017-09-06 19:19:45 +08:00
status_led="rango:white:power"
;;
linksys,shelby)
2017-09-06 19:19:45 +08:00
status_led="shelby:white:power"
;;
linksys,venom)
2018-05-16 12:22:01 +08:00
status_led="venom:blue:power"
;;
2017-09-06 19:19:45 +08:00
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
}