mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
Signed-off-by: Luka Perkov <luka@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44305 3c298f89-4303-0410-b956-a3cf2f4a3e73
39 lines
534 B
Bash
39 lines
534 B
Bash
#!/bin/sh
|
|
# Copyright (C) 2009-2013 OpenWrt.org
|
|
|
|
. /lib/functions/leds.sh
|
|
. /lib/oxnas.sh
|
|
|
|
get_status_led() {
|
|
case $(oxnas_board_name) in
|
|
stg212)
|
|
status_led="zyxel:blue:status"
|
|
;;
|
|
kd20)
|
|
status_led="kd20:blue:status"
|
|
;;
|
|
pogoplugpro | pogoplugv3)
|
|
status_led="pogoplug:blue:internal"
|
|
;;
|
|
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
|
|
}
|