openwrtv4/target/linux/kirkwood/base-files/etc/diag.sh
Luka Perkov 5cce8f9a0f kirkwood: Seagate GoFlex Net
Add GoFlex Net "Board Name" , set and cleanup network default and LEDs.
Remove kmod-rtc-marvell from default packages, as the GoFlex net does not have a RTC.

Signed-off-by: L. D. Pinney <ldpinney@gmail.com>

SVN-Revision: 44422
2015-02-12 14:39:26 +00:00

37 lines
499 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|\
goflexnet|\
pogo_e02)
status_led="status:orange:fault"
;;
ea4500)
status_led="ea4500: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
}