openwrtv4/target/linux/kirkwood/base-files/etc/diag.sh
Paul Wassi d2606107ab kirkwood: fix pogo_e02 LED name
The pogo_e02's dts file has its LEDs named "pogo_e02:(...)"
Fix the status-LED's name for this device.

Signed-off-by: Paul Wassi <p.wassi@gmx.at>
2016-10-26 12:37:46 +02:00

43 lines
612 B
Bash
Executable file

#!/bin/sh
# Copyright (C) 2014 OpenWrt.org
. /lib/functions/leds.sh
. /lib/kirkwood.sh
get_status_led() {
case $(kirkwood_board_name) in
dockstar|\
goflexhome|\
goflexnet)
status_led="status:orange:fault"
;;
pogo_e02)
status_led="pogo_e02:orange:fault"
;;
linksys-audi)
status_led="audi:green:power"
;;
linksys-viper)
status_led="viper:white:health"
;;
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
}