e6ef318802
Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 36999
20 lines
243 B
Bash
Executable File
20 lines
243 B
Bash
Executable File
#!/bin/sh
|
|
# Copyright (C) 2007-2013 OpenWrt.org
|
|
|
|
. /lib/functions/leds.sh
|
|
. /lib/adm5120.sh
|
|
|
|
set_state() {
|
|
case "$1" in
|
|
preinit)
|
|
status_led_blink_preinit
|
|
;;
|
|
failsafe)
|
|
status_led_blink_failsafe
|
|
;;
|
|
done)
|
|
status_led_on
|
|
;;
|
|
esac
|
|
}
|