mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-07 23:51:54 +02:00
266880e202
More device info at: http://wiki.openwrt.org/toh/tenda/w306r Signed-off-by: David Pearce <David_18051985@hotmail.com.au> [juhosg: fix checkpatch errors, remove kmod-phy and luci-ssl packages from the profile, change broken GPIO number] git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31396 3c298f89-4303-0410-b956-a3cf2f4a3e73
80 lines
1.3 KiB
Bash
Executable File
80 lines
1.3 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
. /lib/ramips.sh
|
|
|
|
set_usb_led() {
|
|
local sysfs="$1"
|
|
|
|
uci batch <<EOF
|
|
set system.usb_led=led
|
|
set system.usb_led.name='usb'
|
|
set system.usb_led.sysfs='$sysfs'
|
|
set system.usb_led.trigger='usbdev'
|
|
set system.usb_led.dev='1-1'
|
|
set system.usb_led.interval='50'
|
|
commit system
|
|
EOF
|
|
}
|
|
|
|
set_wifi_led() {
|
|
local sysfs="$1"
|
|
|
|
uci batch <<EOF
|
|
set system.wifi_led=led
|
|
set system.wifi_led.name='wifi'
|
|
set system.wifi_led.sysfs='$sysfs'
|
|
set system.wifi_led.trigger='netdev'
|
|
set system.wifi_led.dev='wlan0'
|
|
set system.wifi_led.mode='link rx tx'
|
|
commit system
|
|
EOF
|
|
}
|
|
|
|
board=$(ramips_board_name)
|
|
|
|
case $board in
|
|
all0256n)
|
|
set_wifi_led "rt2800pci-phy0::radio"
|
|
;;
|
|
bc2)
|
|
set_usb_led "bc2:blue:usb"
|
|
;;
|
|
esr-9753)
|
|
set_wifi_led "rt2800pci-phy0::radio"
|
|
;;
|
|
f5d8235-v1)
|
|
set_usb_led "f5d8235-v1:blue:storage"
|
|
;;
|
|
f5d8235-v2)
|
|
set_usb_led "f5d8235v2:blue:storage"
|
|
;;
|
|
fonera20n)
|
|
set_usb_led "fonera20n:amber:usb"
|
|
;;
|
|
hw550-3g)
|
|
set_usb_led "hw550-3g:green:usb"
|
|
;;
|
|
mofi3500-3gn)
|
|
set_usb_led "mofi3500-3gn:green:usb"
|
|
;;
|
|
nw718)
|
|
set_usb_led "nw718:amber:usb"
|
|
;;
|
|
sl-r7205)
|
|
set_wifi_led "rt2800pci-phy0::radio"
|
|
;;
|
|
v11st-fe)
|
|
set_wifi_led "rt2800pci-phy0::radio"
|
|
;;
|
|
w306r-v20)
|
|
set_wifi_led "rt2800pci-phy0::radio"
|
|
;;
|
|
w502u)
|
|
set_usb_led "alfa:blue:usb"
|
|
set_wifi_led "rt2800pci-phy0::radio"
|
|
;;
|
|
wcr-150gn)
|
|
set_usb_led "wcr150gn:amber:user"
|
|
;;
|
|
esac
|