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
26 lines
388 B
Bash
Executable file
26 lines
388 B
Bash
Executable file
#!/bin/sh
|
|
# Copyright (C) 2007-2013 OpenWrt.org
|
|
|
|
. /lib/functions/leds.sh
|
|
. /lib/brcm63xx.sh
|
|
|
|
set_state() {
|
|
case "$1" in
|
|
preinit)
|
|
status_led_set_timer 200 200
|
|
;;
|
|
failsafe)
|
|
status_led_set_timer 50 50
|
|
;;
|
|
preinit_regular)
|
|
status_led_set_timer 500 500
|
|
;;
|
|
done)
|
|
if [ "${status_led/power}" != "$status_led" ]; then
|
|
status_led_on
|
|
else
|
|
status_led_off
|
|
fi
|
|
;;
|
|
esac
|
|
}
|