diff options
Diffstat (limited to 'target/linux')
-rwxr-xr-x | target/linux/avr32/base-files/etc/diag.sh | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/target/linux/avr32/base-files/etc/diag.sh b/target/linux/avr32/base-files/etc/diag.sh new file mode 100755 index 0000000000..ea20f98ccb --- /dev/null +++ b/target/linux/avr32/base-files/etc/diag.sh @@ -0,0 +1,23 @@ +#!/bin/sh +# Copyright (C) 2013 OpenWrt.org + +. /lib/functions/leds.sh + +set_state() { + status_led="sys" + + case "$1" in + preinit) + insmod leds-gpio + status_led_blink_preinit + ;; + + failsafe) + status_led_blink_failsafe + ;; + + done) + status_led_on + ;; + esac +} |