openwrtv4/target/linux/cns21xx/base-files/etc/diag.sh
Gabor Juhos 32b41c4dd0 cns21xx: migrate to common led helper functions
[juhosg: migrate to status_led_blink_{preinit,failsafe} helpers]

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>

SVN-Revision: 35651
2013-02-18 09:56:28 +00:00

30 lines
382 B
Bash
Executable file

#!/bin/sh
# Copyright (C) 2010-2013 OpenWrt.org
. /lib/functions/leds.sh
. /lib/cns21xx.sh
get_status_led() {
case $(get_board_name) in
ns-k330)
status_led="ns-k330:red:link"
;;
esac;
}
set_state() {
get_status_led
case "$1" in
preinit)
insmod leds-gpio
status_led_blink_preinit
;;
failsafe)
status_led_blink_failsafe
;;
done)
status_led_on
;;
esac
}