mirror of https://github.com/hak5/openwrt.git
43 lines
448 B
Bash
Executable File
43 lines
448 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. /lib/functions/leds.sh
|
|
. /lib/apm821xx.sh
|
|
|
|
get_status_led() {
|
|
local board=$(apm821xx_board_name)
|
|
|
|
case $board in
|
|
mbl|\
|
|
mr24|\
|
|
mx60|\
|
|
wndr4700)
|
|
status_led="$board: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
|
|
}
|