019ea725aa
This new argument is used right after starting regular preinit (which happens if failsafe wasn't triggered). The main purpose of "preinit" argument is to indicate that failsafe can be triggered, however we were missing a way to inform user that we don't wait for a trigger anymore. With this change it's clear when failsafe mode can be triggered. Signed-off-by: Rafał Miłecki <zajec5@gmail.com> SVN-Revision: 43715
35 lines
480 B
Bash
Executable file
35 lines
480 B
Bash
Executable file
#!/bin/sh
|
|
# Copyright (C) 2013 OpenWrt.org
|
|
|
|
. /lib/functions/leds.sh
|
|
. /lib/mpc85xx.sh
|
|
|
|
get_status_led() {
|
|
case $(mpc85xx_board_name) in
|
|
tl-wdr4900-v1)
|
|
status_led="tp-link:blue:system"
|
|
;;
|
|
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
|
|
}
|