avr32: add diag support
Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 35980
This commit is contained in:
parent
de0d19ac3d
commit
cb9fad715c
1 changed files with 23 additions and 0 deletions
23
target/linux/avr32/base-files/etc/diag.sh
Executable file
23
target/linux/avr32/base-files/etc/diag.sh
Executable file
|
@ -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
|
||||||
|
}
|
Loading…
Reference in a new issue