mirror of https://github.com/hak5/openwrt.git
30 lines
363 B
Bash
Executable File
30 lines
363 B
Bash
Executable File
#!/bin/sh
|
|
# Copyright (C) 2010-2013 OpenWrt.org
|
|
|
|
. /lib/functions/leds.sh
|
|
. /lib/cns21xx.sh
|
|
|
|
get_status_led() {
|
|
case $(get_board_name) in
|
|
ns-k330)
|
|
status_led="ns-k330:red:link"
|
|
;;
|
|
esac;
|
|
}
|
|
|
|
set_state() {
|
|
get_status_led
|
|
|
|
case "$1" in
|
|
preinit)
|
|
status_led_blink_preinit
|
|
;;
|
|
failsafe)
|
|
status_led_blink_failsafe
|
|
;;
|
|
done)
|
|
status_led_on
|
|
;;
|
|
esac
|
|
}
|