781ad46206
TP-Link RE450 v2 is a dual band router/range-extender based on Qualcomm/Atheros QCA9563 + QCA9880. Specification: - 775 MHz CPU - 64 MB of RAM (DDR2) - 8 MB of FLASH (SPI NOR) - 3T3R 2.4 GHz - 3T3R 5 GHz - 1x 10/100/1000 Mbps Ethernet (AR8033 PHY) - 7x LED, 4x button - UART header on PCB (needs unmounted R64 & R69 0201 resistors/jumpers) Flash instruction: Apply factory image in OEM firmware web-gui. U-Boot does not seem to have any recovery functions, so debricking requires connection via UART. Signed-off-by: Peter Lundkvist <peter.lundkvist@gmail.com>
155 lines
3.6 KiB
Bash
Executable file
155 lines
3.6 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
. /lib/functions/system.sh
|
|
. /lib/functions/uci-defaults.sh
|
|
. /lib/functions/k2t.sh
|
|
|
|
ath79_setup_interfaces()
|
|
{
|
|
local board="$1"
|
|
|
|
case "$board" in
|
|
"etactica,eg200")
|
|
ucidef_set_interface_lan "eth0" "dhcp"
|
|
;;
|
|
"avm,fritz300e"|\
|
|
"tplink,re450-v2"|\
|
|
"tplink,tl-mr10u"|\
|
|
"tplink,tl-wr703n"|\
|
|
"ubnt,unifiac-lite"|\
|
|
"ubnt,unifiac-mesh"|\
|
|
"ubnt,unifi")
|
|
ucidef_set_interface_lan "eth0"
|
|
;;
|
|
|
|
"embeddedwireless,dorin")
|
|
ucidef_add_switch "switch0" \
|
|
"0@eth0" "1:wan" "2:lan:3" "3:lan:2"
|
|
;;
|
|
|
|
"glinet,ar150")
|
|
ucidef_set_interfaces_lan_wan "eth1" "eth0"
|
|
;;
|
|
|
|
"glinet,ar300m")
|
|
ucidef_set_interfaces_lan_wan "eth1" "eth0"
|
|
;;
|
|
|
|
"netgear,wnr612-v2"|\
|
|
"on,n150r")
|
|
ucidef_set_interfaces_lan_wan "eth1.1" "eth0"
|
|
ucidef_add_switch "switch0" \
|
|
"0@eth1" "1:lan" "2:lan" "3:lan:3" "4:lan:4"
|
|
;;
|
|
|
|
"tplink,tl-archer-c7-v2")
|
|
ucidef_set_interfaces_lan_wan "eth1.1" "eth0.2"
|
|
ucidef_add_switch "switch0" \
|
|
"0@eth1" "2:lan" "3:lan" "4:lan" "5:lan" "6@eth0" "1:wan"
|
|
;;
|
|
|
|
"tplink,tl-mr3020-v1")
|
|
ucidef_set_interface_lan "eth0.1"
|
|
ucidef_add_switch "switch0" "0@eth0" "1:lan"
|
|
;;
|
|
"tplink,tl-mr3220-v1"|\
|
|
"tplink,tl-mr3420-v1"|\
|
|
"tplink,tl-wr841-v7")
|
|
ucidef_set_interface_wan "eth0"
|
|
ucidef_add_switch "switch0" \
|
|
"0@eth1" "1:lan:4" "2:lan:3" "3:lan:2" "4:lan:1"
|
|
;;
|
|
"tplink,tl-wdr3600"|\
|
|
"tplink,tl-wdr4300")
|
|
ucidef_add_switch "switch0" \
|
|
"0@eth0" "2:lan:1" "3:lan:2" "4:lan:3" "5:lan:4" "1:wan"
|
|
;;
|
|
|
|
"tplink,tl-wr740n-v2")
|
|
ucidef_set_interfaces_lan_wan "eth1.1" "eth0"
|
|
ucidef_add_switch "switch0" \
|
|
"0@eth1" "1:lan" "2:lan" "3:lan" "4:lan"
|
|
;;
|
|
|
|
"tplink,tl-wr741nd-v4"|\
|
|
"tplink,tl-wr740nd-v4")
|
|
ucidef_set_interfaces_wan "eth1"
|
|
ucidef_add_switch "switch0" \
|
|
"0@eth0" "1:lan:4" "2:lan:3" "3:lan:2" "4:lan:1"
|
|
;;
|
|
|
|
"tplink,tl-wr1043nd-v1")
|
|
ucidef_add_switch "switch0" \
|
|
"1:lan" "2:lan" "3:lan" "4:lan" "0:wan" "5@eth0"
|
|
;;
|
|
"tplink,tl-wr1043nd-v4")
|
|
ucidef_add_switch "switch0" \
|
|
"0@eth0" "1:lan:4" "2:lan:3" "3:lan:2" "4:lan:1" "5:wan"
|
|
;;
|
|
"tplink,tl-wr1043nd-v2"|\
|
|
"tplink,tl-wr1043nd-v3")
|
|
ucidef_set_interfaces_lan_wan "eth1.1" "eth0.2"
|
|
ucidef_add_switch "switch0" \
|
|
"0@eth1" "1:lan:4" "2:lan:3" "3:lan:2" "4:lan:1" "5:wan" "6@eth0"
|
|
;;
|
|
"tplink,tl-wr2543-v1")
|
|
ucidef_add_switch "switch0" \
|
|
"1:lan" "2:lan" "3:lan" "4:lan" "0:wan" "9@eth0"
|
|
;;
|
|
"netgear,wndr3800")
|
|
ucidef_set_interfaces_lan_wan "eth0" "eth1"
|
|
ucidef_add_switch "switch0" \
|
|
"0:lan:4" "1:lan:3" "2:lan:2" "3:lan:1" "5u@eth0"
|
|
|
|
ucidef_add_switch_attr "switch0" "blinkrate" 2
|
|
ucidef_add_switch_port_attr "switch0" 1 led 6
|
|
ucidef_add_switch_port_attr "switch0" 2 led 9
|
|
ucidef_add_switch_port_attr "switch0" 5 led 2
|
|
;;
|
|
"buffalo,wzr-hp-g450h")
|
|
ucidef_add_switch "switch0" \
|
|
"0@eth0" "2:lan" "3:lan" "4:lan" "5:lan" "1:wan"
|
|
;;
|
|
"phicomm,k2t")
|
|
ucidef_add_switch "switch0" \
|
|
"0@eth0" "3:lan:1" "5:lan:2" "4:wan"
|
|
;;
|
|
"ubnt,unifiac-pro")
|
|
ucidef_add_switch "switch0" \
|
|
"0@eth0" "2:lan" "3:wan"
|
|
;;
|
|
*)
|
|
ucidef_set_interfaces_lan_wan "eth0" "eth1"
|
|
;;
|
|
esac
|
|
}
|
|
|
|
ath79_setup_macs()
|
|
{
|
|
local board="$1"
|
|
|
|
case "$board" in
|
|
avm,fritz300e)
|
|
lan_mac=$(fritz_tffs -n maca -i $(find_mtd_part "tffs (1)"))
|
|
;;
|
|
phicomm,k2t)
|
|
lan_mac=$(k2t_get_mac "lan_mac")
|
|
wan_mac=$(k2t_get_mac "wan_mac")
|
|
;;
|
|
"tplink,tl-wr1043nd-v4")
|
|
base_mac=$(mtd_get_mac_binary product-info 8)
|
|
wan_mac=$(macaddr_add "$base_mac" 1)
|
|
;;
|
|
esac
|
|
|
|
[ -n "$lan_mac" ] && ucidef_set_interface_macaddr "lan" $lan_mac
|
|
[ -n "$wan_mac" ] && ucidef_set_interface_macaddr "wan" $wan_mac
|
|
}
|
|
|
|
board_config_update
|
|
board=$(board_name)
|
|
ath79_setup_interfaces $board
|
|
ath79_setup_macs $board
|
|
board_config_flush
|
|
|
|
exit 0
|