b0ad24f0d5
Signed-off-by: Imre Kaloz <kaloz@openwrt.org> SVN-Revision: 45400
33 lines
432 B
Bash
33 lines
432 B
Bash
#!/bin/sh
|
|
# Copyright (C) 2014 OpenWrt.org
|
|
|
|
. /lib/functions/leds.sh
|
|
. /lib/mvebu.sh
|
|
|
|
get_status_led() {
|
|
case $(mvebu_board_name) in
|
|
armada-xp-linksys-mamba)
|
|
status_led="mamba:white: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
|
|
}
|