Skip to content

Commit 9c55866

Browse files
Vladdrakoaiamadeusrobimarko
committed
qualcommax: ipq60xx: add Linksys MR7350 support
Linksys MR7350 is a 802.11ax Dual-band router/AP. Specifications: * CPU: Qualcomm IPQ6000 Quad core Cortex-A53(A73) 1.5GHz * RAM: 512MB of DDR3 * Storage: 256Mb NAND * Ethernet: 5x1G RJ45 ports (QCA8075) * WLAN: * 2.4GHz: Qualcomm QCN5022 2x2 802.11b/g/n/ax 574 Mbps PHY rate * 5GHz: Qualcomm QCN5052 2x2@80MHz or 802.11a/b/g/n/ac/ax 1201 Mbps PHY rate * LED-s: * RGB system led * USB blue led * Buttons: 1x Soft reset 1x WPS * Power: 12V DC Jack Installation instructions: Open Linksys Web UI - http://192.168.1.1/ca or http://10.65.1.1/ca depending on your setup. Login with your admin password. The default password can be found on a sticker under the device. To enter into the support mode, click on the “CA” link and the bottom of the page. Open the “Connectivity” menu and upload the squash-factory image with the “Choose file” button. Click start. Ignore all the prompts and warnings by click “yes” in all the popups. The Wifi radios are turned off by default. To configure the router, you will need to connect your computer to the LAN port of the device. Then you would need to write openwrt to the other partition for it to work - First Check booted partition: fw_printenv -n boot_part - Change the partition: fw_setenv boot_part 1 or fw_setenv boot_part 2 depending on the current partition - Then install Openwrt to the other partition if booted in slot 1: mtd -r -e alt_kernel -n write openwrt-qualcommax-ipq60xx-linksys_mr7350-squashfs-factory.bin alt_kernel - If in slot 2: mtd -r -e kernel -n write openwrt-qualcommax-ipq60xx-linksys_mr7350-squashfs-factory.bin kernel Co-Authored-by: Chukun Pan <[email protected]> Co-Authored-by: Robert Marko <[email protected]> Signed-off-by: Vladyslav Andreichykov <[email protected]> Link: openwrt/openwrt#14807 Signed-off-by: Robert Marko <[email protected]>
1 parent 2e4a0eb commit 9c55866

File tree

10 files changed

+545
-1
lines changed

10 files changed

+545
-1
lines changed

package/boot/uboot-envtools/files/qualcommax_ipq60xx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ cambiumnetworks,xe3-4)
1515
[ -n "$idx" ] && \
1616
ubootenv_add_uci_config "/dev/mtd$idx" "0x0" "0x10000" "0x10000"
1717
;;
18+
linksys,mr7350)
19+
idx="$(find_mtd_index u_env)"
20+
[ -n "$idx" ] && \
21+
ubootenv_add_uci_config "/dev/mtd$idx" "0x0" "0x40000" "0x20000" "2"
22+
;;
1823
netgear,wax214)
1924
idx="$(find_mtd_index 0:appsblenv)"
2025
[ -n "$idx" ] && \

package/firmware/ipq-wifi/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ ALLWIFIBOARDS:= \
3737
dynalink_dl-wrx36 \
3838
edgecore_eap102 \
3939
edimax_cax1800 \
40+
linksys_mr7350 \
4041
linksys_mx4200 \
4142
linksys_mx5300 \
4243
linksys_mx8500 \
@@ -165,6 +166,7 @@ $(eval $(call generate-ipq-wifi-package,compex_wpq873,Compex WPQ-873))
165166
$(eval $(call generate-ipq-wifi-package,dynalink_dl-wrx36,Dynalink DL-WRX36))
166167
$(eval $(call generate-ipq-wifi-package,edgecore_eap102,Edgecore EAP102))
167168
$(eval $(call generate-ipq-wifi-package,edimax_cax1800,Edimax CAX1800))
169+
$(eval $(call generate-ipq-wifi-package,linksys_mr7350,Linksys MR7350))
168170
$(eval $(call generate-ipq-wifi-package,linksys_mx4200,Linksys MX4200))
169171
$(eval $(call generate-ipq-wifi-package,linksys_mx5300,Linksys MX5300))
170172
$(eval $(call generate-ipq-wifi-package,linksys_mx8500,Linksys MX8500))

0 commit comments

Comments
 (0)