diff options
author | Mark Ceeha <hi@shiz.me> | 2023-01-29 16:01:40 +0100 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2023-02-03 12:13:50 +0100 |
commit | d4c63c77866bf09668b541760b6c9f277b41ac87 (patch) | |
tree | 033201e5554169f5277c0e549de3e0ccea2a63a3 /target/linux/ramips/mt7621 | |
parent | c97bcec15a6f524089ffe17ad2435d107867da35 (diff) | |
download | upstream-d4c63c77866bf09668b541760b6c9f277b41ac87.tar.gz upstream-d4c63c77866bf09668b541760b6c9f277b41ac87.tar.bz2 upstream-d4c63c77866bf09668b541760b6c9f277b41ac87.zip |
ramips: add support for TP-Link Deco M4R v4
This commit adds support for the V4 hardware revision of the Deco M4R.
V4 is a complete overhaul of the hardware compared to V1 and V2,
and is much more similar to the Archer C6 V3 and C6U V1.
Specifications:
SoC: MediaTek MT7621AT (2 cores at 880 MHz, 4 threads)
RAM: Kingston D1216ECMDXGJD (256 MB)
Wireless 2.4 GHz: MediaTek MT7603EN
Wireless 5 GHz: MediaTek MT7613BEN
Flash: 16 MB SPI NOR
Installation:
Flash the *-factory.bin image in the U-Boot recovery webserver.
You can trigger this webserver by holding the reset button until the LED
flashes yellow, or by hooking up to serial pads on the board (clearly
labeled GND, RX and TX) and pressing `x` early in boot.
Once the factory image has been flashed, you can use the regular upgrade
procedure with sysupgrade images for subsequent flashes.
Signed-off-by: Mark Ceeha <hi@shiz.me>
Tested-by: Mark Ceeha <hi@shiz.me>
Diffstat (limited to 'target/linux/ramips/mt7621')
-rw-r--r-- | target/linux/ramips/mt7621/base-files/etc/board.d/01_leds | 3 | ||||
-rw-r--r-- | target/linux/ramips/mt7621/base-files/etc/board.d/02_network | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/target/linux/ramips/mt7621/base-files/etc/board.d/01_leds b/target/linux/ramips/mt7621/base-files/etc/board.d/01_leds index 597d7302ac..66b5a3ddd0 100644 --- a/target/linux/ramips/mt7621/base-files/etc/board.d/01_leds +++ b/target/linux/ramips/mt7621/base-files/etc/board.d/01_leds @@ -154,6 +154,9 @@ tplink,archer-c6u-v1) ucidef_set_led_netdev "lan" "LAN" "green:lan" "br-lan" ucidef_set_led_netdev "wan" "WAN" "green:wan" "wan" ;; +tplink,deco-m4r-v4) + ucidef_set_led_netdev "lan" "LAN" "green:lan" "br-lan" + ;; tplink,ec330-g5u-v1) ucidef_set_led_netdev "lan" "Ethernet" "blue:ethernet" "br-lan" "link tx rx" ucidef_set_led_netdev "wan" "Internet" "blue:internet" "wan" "link tx rx" 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 67f58b10b2..3a864f6f04 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 @@ -105,6 +105,9 @@ ramips_setup_interfaces() mikrotik,routerboard-760igs) ucidef_set_interfaces_lan_wan "lan2 lan3 lan4 lan5" "wan sfp" ;; + tplink,deco-m4r-v4) + ucidef_set_interfaces_lan_wan "eth1" "eth0" + ;; tplink,eap235-wall-v1|\ tplink,eap615-wall-v1) ucidef_set_interface_lan "lan0 lan1 lan2 lan3" |