mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 17:11:34 +02:00
133f6e8495
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24648 3c298f89-4303-0410-b956-a3cf2f4a3e73
28 lines
432 B
Bash
Executable File
28 lines
432 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2010 OpenWrt.org
|
|
#
|
|
|
|
. /lib/ar71xx.sh
|
|
|
|
board=$(ar71xx_board_name)
|
|
|
|
tlmr3x20_setup_leds() {
|
|
uci batch <<EOF
|
|
set system.usb_led=led
|
|
set system.usb_led.name='USB'
|
|
set system.usb_led.sysfs='tl-mr3x20:green:3g'
|
|
set system.usb_led.trigger='usbdev'
|
|
set system.usb_led.dev='1-1'
|
|
set system.usb_led.interval='50'
|
|
commit system
|
|
EOF
|
|
}
|
|
|
|
case "${board}" in
|
|
"tl-mr3220" | \
|
|
"tl-mr3420" )
|
|
tlmr3x20_setup_leds
|
|
;;
|
|
esac
|