mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
kirkwood: add a diag script
Currently only Linksys EA4500 is supported. Signed-off-by: Cezary Jackiewicz <cezary.jackiewicz@gmail.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@43543 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
c53e189dfb
commit
c844004282
29
target/linux/kirkwood/base-files/etc/diag.sh
Executable file
29
target/linux/kirkwood/base-files/etc/diag.sh
Executable file
@ -0,0 +1,29 @@
|
||||
#!/bin/sh
|
||||
# Copyright (C) 2014 OpenWrt.org
|
||||
|
||||
. /lib/functions/leds.sh
|
||||
. /lib/kirkwood.sh
|
||||
|
||||
get_status_led() {
|
||||
case $(kirkwood_board_name) in
|
||||
ea4500)
|
||||
status_led="ea4500:white:health"
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
set_state() {
|
||||
get_status_led
|
||||
|
||||
case "$1" in
|
||||
preinit)
|
||||
status_led_blink_preinit
|
||||
;;
|
||||
failsafe)
|
||||
status_led_blink_failsafe
|
||||
;;
|
||||
done)
|
||||
status_led_on
|
||||
;;
|
||||
esac
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user