diff options
author | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-12-17 17:10:16 +0000 |
---|---|---|
committer | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-12-17 17:10:16 +0000 |
commit | 133f6e8495ab74c65ba2826e424b0fe98a7ddb38 (patch) | |
tree | f22796f4a2a60bd194ffc91c9ee8fd4999ba7eb1 /target/linux/ar71xx/base-files/etc/uci-defaults/tl-wr1043nd | |
parent | 25156f20f7b1781c47ef4fff74586680baed4b85 (diff) |
ar71xx: use usbdev trigger for USB LEDs by default
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24648 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/base-files/etc/uci-defaults/tl-wr1043nd')
-rw-r--r-- | target/linux/ar71xx/base-files/etc/uci-defaults/tl-wr1043nd | 10 |
1 files changed, 8 insertions, 2 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 index 1ff8cb44d..80d780c51 100644 --- a/target/linux/ar71xx/base-files/etc/uci-defaults/tl-wr1043nd +++ b/target/linux/ar71xx/base-files/etc/uci-defaults/tl-wr1043nd @@ -7,16 +7,22 @@ board=$(ar71xx_board_name) -tlwr1043nd_set_wlan_led() { +tlwr1043nd_setup_leds() { uci batch <<EOF set system.wlan_led=led set system.wlan_led.name='WLAN' set system.wlan_led.sysfs='tl-wr1043nd:green:wlan' set system.wlan_led.trigger='phy0rx' +set system.usb_led=led +set system.usb_led.name='USB' +set system.usb_led.sysfs='tl-wr1043nd: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_set_wlan_led + tlwr1043nd_setup_leds fi |