mirror of
https://github.com/cjdelisle/openwrt.git
synced 2025-03-16 10:51:00 +00:00
mpc85xx: add user-space support for the TL-WDR4900 v1
Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 35733
This commit is contained in:
target/linux/mpc85xx
35
target/linux/mpc85xx/base-files/etc/diag.sh
Executable file
35
target/linux/mpc85xx/base-files/etc/diag.sh
Executable file
@ -0,0 +1,35 @@
|
||||
#!/bin/sh
|
||||
# Copyright (C) 2013 OpenWrt.org
|
||||
|
||||
. /lib/functions/leds.sh
|
||||
. /lib/mpc85xx.sh
|
||||
|
||||
get_status_led() {
|
||||
case $(mpc85xx_board_name) in
|
||||
tl-wdr4900-v1)
|
||||
status_led="tp-link:blue:system"
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
set_state() {
|
||||
get_status_led
|
||||
|
||||
case "$1" in
|
||||
preinit)
|
||||
insmod leds-gpio
|
||||
insmod ledtrig-default-on
|
||||
insmod ledtrig-timer
|
||||
|
||||
status_led_blink_preinit
|
||||
;;
|
||||
|
||||
failsafe)
|
||||
status_led_blink_failsafe
|
||||
;;
|
||||
|
||||
done)
|
||||
status_led_on
|
||||
;;
|
||||
esac
|
||||
}
|
Reference in New Issue
Block a user