diff options
Diffstat (limited to 'target/linux/cns21xx/base-files/etc/diag.sh')
-rwxr-xr-x | target/linux/cns21xx/base-files/etc/diag.sh | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/target/linux/cns21xx/base-files/etc/diag.sh b/target/linux/cns21xx/base-files/etc/diag.sh new file mode 100755 index 0000000..e5b7ad5 --- /dev/null +++ b/target/linux/cns21xx/base-files/etc/diag.sh @@ -0,0 +1,30 @@ +#!/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 +} |