cb9fad715c
Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 35980
24 lines
260 B
Bash
Executable File
24 lines
260 B
Bash
Executable File
#!/bin/sh
|
|
# Copyright (C) 2013 OpenWrt.org
|
|
|
|
. /lib/functions/leds.sh
|
|
|
|
set_state() {
|
|
status_led="sys"
|
|
|
|
case "$1" in
|
|
preinit)
|
|
insmod leds-gpio
|
|
status_led_blink_preinit
|
|
;;
|
|
|
|
failsafe)
|
|
status_led_blink_failsafe
|
|
;;
|
|
|
|
done)
|
|
status_led_on
|
|
;;
|
|
esac
|
|
}
|