You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
365 B
29 lines
365 B
#!/bin/sh
|
|
# Copyright (C) 2014 OpenWrt.org
|
|
|
|
. /lib/functions/leds.sh
|
|
. /lib/kirkwood.sh
|
|
|
|
get_status_led() {
|
|
case $(kirkwood_board_name) in
|
|
ea4500)
|
|
status_led="ea4500:white:health"
|
|
;;
|
|
esac
|
|
}
|
|
|
|
set_state() {
|
|
get_status_led
|
|
|
|
case "$1" in
|
|
preinit)
|
|
status_led_blink_preinit
|
|
;;
|
|
failsafe)
|
|
status_led_blink_failsafe
|
|
;;
|
|
done)
|
|
status_led_on
|
|
;;
|
|
esac
|
|
}
|
|
|