mirror of https://github.com/hak5/openwrt-owl.git
46 lines
494 B
Bash
Executable File
46 lines
494 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. /lib/functions/leds.sh
|
|
. /lib/apm821xx.sh
|
|
|
|
get_status_led() {
|
|
case $(apm821xx_board_name) in
|
|
mbl)
|
|
status_led="mbl:green:power"
|
|
;;
|
|
|
|
mr24)
|
|
status_led="mr24:green:power"
|
|
;;
|
|
|
|
wndr4700)
|
|
status_led="wndr4700:green: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
|
|
}
|