mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-28 09:39:00 +00:00
6fdf3a32d9
At some point RPi LEDs were renamed from led0/led1 to PWR/ACT. This patch fixes this and also automatically detects the status_led without relying on board_name. Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
33 lines
510 B
Bash
33 lines
510 B
Bash
#!/bin/sh
|
|
# Copyright (C) 2015-2016 OpenWrt.org
|
|
# Copyright (C) 2017 LEDE project
|
|
|
|
. /lib/functions.sh
|
|
. /lib/functions/leds.sh
|
|
|
|
set_state() {
|
|
if [ -d "/sys/class/leds/PWR" ]; then
|
|
status_led="PWR"
|
|
else
|
|
status_led="ACT"
|
|
fi
|
|
|
|
case "$1" in
|
|
preinit)
|
|
status_led_blink_preinit
|
|
;;
|
|
failsafe)
|
|
status_led_blink_failsafe
|
|
;;
|
|
preinit_regular)
|
|
status_led_blink_preinit_regular
|
|
;;
|
|
upgrade)
|
|
status_led_blink_preinit_regular
|
|
;;
|
|
done)
|
|
status_led_on
|
|
;;
|
|
esac
|
|
}
|