diff options
Diffstat (limited to 'target/linux/brcm2708/base-files/etc/diag.sh')
-rw-r--r-- | target/linux/brcm2708/base-files/etc/diag.sh | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/target/linux/brcm2708/base-files/etc/diag.sh b/target/linux/brcm2708/base-files/etc/diag.sh new file mode 100644 index 0000000000..55e68b1a00 --- /dev/null +++ b/target/linux/brcm2708/base-files/etc/diag.sh @@ -0,0 +1,25 @@ +#!/bin/sh +# +# Copyright (C) 2015 OpenWrt.org +# + +. /lib/functions/leds.sh + +set_state() { + status_led="led0" + + 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 +} |