summaryrefslogtreecommitdiffstats
path: root/target/linux/ar71xx/base-files/etc/uci-defaults/tl-wr1043nd
diff options
context:
space:
mode:
authorjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-11-01 11:20:49 +0000
committerjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-11-01 11:20:49 +0000
commit0f535ad2611b82842807d8baff856b338d2cfdc0 (patch)
tree0a479c5527eec254225adad3359eef066bb967e5 /target/linux/ar71xx/base-files/etc/uci-defaults/tl-wr1043nd
parent0fe49305dea4165c62583f3bce346aedfd686a99 (diff)
ar71xx: combine LEDs setup in one file
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28704 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/base-files/etc/uci-defaults/tl-wr1043nd')
-rwxr-xr-xtarget/linux/ar71xx/base-files/etc/uci-defaults/tl-wr1043nd28
1 files changed, 0 insertions, 28 deletions
diff --git a/target/linux/ar71xx/base-files/etc/uci-defaults/tl-wr1043nd b/target/linux/ar71xx/base-files/etc/uci-defaults/tl-wr1043nd
deleted file mode 100755
index e88cc54d6..000000000
--- a/target/linux/ar71xx/base-files/etc/uci-defaults/tl-wr1043nd
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh
-#
-# Copyright (C) 2010 OpenWrt.org
-#
-
-. /lib/ar71xx.sh
-
-board=$(ar71xx_board_name)
-
-tlwr1043nd_setup_leds() {
- uci batch <<EOF
-set system.wlan_led=led
-set system.wlan_led.name='WLAN'
-set system.wlan_led.sysfs='tp-link:green:wlan'
-set system.wlan_led.trigger='phy0tpt'
-set system.usb_led=led
-set system.usb_led.name='USB'
-set system.usb_led.sysfs='tp-link:green:usb'
-set system.usb_led.trigger='usbdev'
-set system.usb_led.dev='1-1'
-set system.usb_led.interval='50'
-commit system
-EOF
-}
-
-if [ "${board}" == "tl-wr1043nd" ]; then
- tlwr1043nd_setup_leds
-fi