c9c4b2116c
Also fix several typos in led node name. Signed-off-by: Chuanhong Guo <gch981213@gmail.com>
27 lines
371 B
Bash
27 lines
371 B
Bash
#!/bin/sh
|
|
# Copyright (C) 2010-2013 OpenWrt.org
|
|
|
|
. /lib/functions.sh
|
|
. /lib/functions/leds.sh
|
|
|
|
status_led="$(get_dt_led status)"
|
|
|
|
set_state() {
|
|
get_status_led $1
|
|
|
|
case "$1" in
|
|
preinit)
|
|
status_led_blink_preinit
|
|
;;
|
|
failsafe)
|
|
status_led_blink_failsafe
|
|
;;
|
|
upgrade | \
|
|
preinit_regular)
|
|
status_led_blink_preinit_regular
|
|
;;
|
|
done)
|
|
status_led_on
|
|
;;
|
|
esac
|
|
}
|