1
0
mirror of https://github.com/cjdelisle/openwrt.git synced 2025-03-16 08:31:01 +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:
Gabor Juhos
2013-02-21 19:20:34 +00:00
parent bd2c77b264
commit 4da13625d5
9 changed files with 320 additions and 0 deletions

@ -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
}