ar7: migrate to common led helper functions

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
Signed-off-by: Florian Fainelli <florian@openwrt.org>

SVN-Revision: 35659
This commit is contained in:
Florian Fainelli 2013-02-18 10:37:43 +00:00
parent 90011a99f3
commit 15b66e0cbe

View File

@ -1,5 +1,5 @@
#!/bin/sh #!/bin/sh
# Copyright (C) 2007-2012 OpenWrt.org # Copyright (C) 2007-2013 OpenWrt.org
# This setup gives us 4.5 distinguishable states: # This setup gives us 4.5 distinguishable states:
# #
@ -12,37 +12,31 @@
# (1-LED) Heartbeat: normal operation # (1-LED) Heartbeat: normal operation
# (2-LED) Solid GREEN: normal operation # (2-LED) Solid GREEN: normal operation
set_state() { . /lib/functions/leds.sh
case "$1" in
preinit) get_status_led() {
[ -d /sys/class/leds/status ] && { [ -d "/sys/class/leds/status" ] && status_led="status"
echo timer >/sys/class/leds/status/trigger [ -d "/sys/class/leds/power:green" ] && status_led="power:green"
echo 100 >/sys/class/leds/status/delay_on }
echo 100 >/sys/class/leds/status/delay_off
:; } || [ -d /sys/class/leds/power\:green ] && { set_state() {
echo timer >/sys/class/leds/power\:green/trigger get_status_led
echo 100 >/sys/class/leds/power\:green/delay_on
echo 100 >/sys/class/leds/power\:green/delay_off case "$1" in
} preinit)
;; status_led_set_timer 100 100
failsafe) ;;
[ -d /sys/class/leds/status ] && { failsafe)
echo timer >/sys/class/leds/status/trigger status_led_set_timer 50 50
echo 50 >/sys/class/leds/status/delay_on ;;
echo 50 >/sys/class/leds/status/delay_off done)
:; } || [ -d /sys/class/leds/power\:green ] && { [ "$status_led" = "status" ] && {
echo timer >/sys/class/leds/power\:green/trigger status_led_set_heartbeat
echo 50 >/sys/class/leds/power\:green/delay_on }
echo 50 >/sys/class/leds/power\:green/delay_off [ "$status_led" = "power:green" ] && {
} status_led_set_on
;; led_off "power:red"
done) }
[ -d /sys/class/leds/status ] && { ;;
echo heartbeat >/sys/class/leds/status/trigger esac
:; } || [ -d /sys/class/leds/power\:green ] && {
echo default-on >/sys/class/leds/power\:green/trigger
echo none >/sys/class/leds/power\:red/trigger
}
;;
esac
} }