8b639410d1
Use a more generic name for the lantiq_get_dt_led_chosen function. Drop the lantiq_is_dt_led_chosen function. The lantiq_get_dt_led function can be used to achieve the same. Signed-off-by: Mathias Kresin <dev@kresin.me>
38 lines
634 B
Bash
38 lines
634 B
Bash
#!/bin/sh
|
|
# Copyright (C) 2010-2015 OpenWrt.org
|
|
|
|
. /lib/functions/leds.sh
|
|
. /lib/functions/lantiq.sh
|
|
|
|
boot="$(lantiq_get_dt_led boot)"
|
|
failsafe="$(lantiq_get_dt_led failsafe)"
|
|
running="$(lantiq_get_dt_led running)"
|
|
|
|
set_state() {
|
|
status_led="$boot"
|
|
|
|
case "$1" in
|
|
preinit)
|
|
status_led_blink_preinit
|
|
;;
|
|
failsafe)
|
|
status_led_off
|
|
[ -n "$running" ] && {
|
|
status_led="$running"
|
|
status_led_off
|
|
}
|
|
status_led="$failsafe"
|
|
status_led_blink_failsafe
|
|
;;
|
|
preinit_regular)
|
|
status_led_blink_preinit_regular
|
|
;;
|
|
done)
|
|
status_led_off
|
|
[ -n "$running" ] && {
|
|
status_led="$running"
|
|
status_led_on
|
|
}
|
|
;;
|
|
esac
|
|
}
|