From c240fed242966995e7717487c66fe96457f7d721 Mon Sep 17 00:00:00 2001 From: Wenli Looi Date: Sat, 2 Jul 2022 20:18:59 +0000 Subject: ramips: add support for Netgear WAX202 Netgear WAX202 is an 802.11ax (Wi-Fi 6) router. Specifications: * SoC: MT7621A * RAM: 512 MiB NT5CC256M16ER-EK * Flash: NAND 128 MiB F59L1G81MB-25T * Wi-Fi: * MT7915D: 2.4/5 GHz (DBDC) * Ethernet: 4x 1GbE * Switch: SoC built-in * USB: None * UART: 115200 baud (labeled on board) Load addresses (same as ipTIME AX2004M): * stock * 0x80010000: FIT image * 0x81001000: kernel image -> entry * OpenWrt * 0x80010000: FIT image * 0x82000000: uncompressed kernel+relocate image * 0x80001000: relocated kernel image -> entry Installation: * Flash the factory image through the stock web interface, or TFTP to the bootloader. NMRP can be used to TFTP without opening the case. * Note that the bootloader accepts both encrypted and unencrypted images, while the stock web interface only accepts encrypted ones. Revert to stock firmware: * Flash the stock firmware to the bootloader using TFTP/NMRP. References in WAX202 GPL source: https://www.downloads.netgear.com/files/GPL/WAX202_V1.0.5.1_Source.rar * openwrt/target/linux/ramips/dts/mt7621-ax-nand-wax202.dts DTS file for this device. Signed-off-by: Wenli Looi (cherry picked from commit 0f068e7c4a83bcbf20c4e52a5f8a3f1fe2af2246) --- target/linux/ramips/mt7621/base-files/etc/board.d/02_network | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'target/linux/ramips/mt7621/base-files/etc/board.d/02_network') diff --git a/target/linux/ramips/mt7621/base-files/etc/board.d/02_network b/target/linux/ramips/mt7621/base-files/etc/board.d/02_network index a8d8b8eef2..0c696b2301 100644 --- a/target/linux/ramips/mt7621/base-files/etc/board.d/02_network +++ b/target/linux/ramips/mt7621/base-files/etc/board.d/02_network @@ -26,6 +26,7 @@ ramips_setup_interfaces() ampedwireless,ally-r1900k|\ gehua,ghl-r-001|\ hiwifi,hc5962|\ + netgear,wax202|\ xiaomi,mi-router-3-pro|\ xiaomi,mi-router-ac2100|\ xiaomi,mi-router-cr6606|\ @@ -193,6 +194,11 @@ ramips_setup_macs() wan_mac=$label_mac lan_mac=$(macaddr_add $label_mac 1) ;; + netgear,wax202) + lan_mac=$(mtd_get_mac_ascii Config mac) + wan_mac=$(macaddr_add "$lan_mac" 1) + label_mac=$lan_mac + ;; raisecom,msg1500-x-00) lan_mac=$(mtd_get_mac_ascii Config protest_lan_mac) wan_mac=$(mtd_get_mac_ascii Config protest_wan_mac) -- cgit v1.2.3