mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
Signed-off-by: Imre Kaloz <kaloz@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@41383 3c298f89-4303-0410-b956-a3cf2f4a3e73
30 lines
366 B
Bash
Executable File
30 lines
366 B
Bash
Executable File
#!/bin/sh
|
|
# Copyright (C) 2014 OpenWrt.org
|
|
|
|
. /lib/functions/leds.sh
|
|
. /lib/mvebu.sh
|
|
|
|
get_status_led() {
|
|
case $(mvebu_board_name) in
|
|
armada-xp-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
|
|
;;
|
|
done)
|
|
status_led_on
|
|
;;
|
|
esac
|
|
}
|