[openwrt/openwrt] ramips: add support for Linksys EA8100 v1

LEDE Commits lede-commits at lists.infradead.org
Sat Jun 5 15:00:20 PDT 2021


adrian pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/b232680f847f4ea8d058849a51dedebb8e398a01

commit b232680f847f4ea8d058849a51dedebb8e398a01
Author: Tee Hao Wei <angelsl at in04.sg>
AuthorDate: Tue May 18 03:46:36 2021 +0800

    ramips: add support for Linksys EA8100 v1
    
    Specifications:
    - SoC: MT7621AT
    - RAM: 256MB
    - Flash: 128MB NAND
    - Ethernet: 5 Gigabit ports
    - WiFi: 2.4G/5G MT7615N
    - USB: 1 USB 3.0, 1 USB 2.0
    
    This device is very similar to the EA7300 v1/v2 and EA7500 v2.
    
    Installation:
    
    Upload the generated factory image through the factory web interface.
    
    (following part taken from EA7300 v2 commit message:)
    
    This might fail due to the A/B nature of this device. When flashing, OEM
    firmware writes over the non-booted partition. If booted from 'A',
    flashing over 'B' won't work. To get around this, you should flash the
    OEM image over itself. This will then boot the router from 'B' and
    allow you to flash OpenWRT without problems.
    
    Reverting to factory firmware:
    
    Hard-reset the router three times to force it to boot from 'B.' This is
    where the stock firmware resides. To remove any traces of OpenWRT from
    your router simply flash the OEM image at this point.
    
    With thanks to Leon Poon (@LeonPoon) for the initial bringup.
    
    Signed-off-by: Tee Hao Wei <angelsl at in04.sg>
    [add missing entry in 10_fix_wifi_mac]
    Signed-off-by: Adrian Schmutzler <freifunk at adrianschmutzler.de>
---
 package/boot/uboot-envtools/files/ramips                          | 1 +
 target/linux/ramips/dts/mt7621_linksys_ea8100-v1.dts              | 8 ++++++++
 target/linux/ramips/image/mt7621.mk                               | 8 ++++++++
 target/linux/ramips/mt7621/base-files/etc/board.d/01_leds         | 3 ++-
 target/linux/ramips/mt7621/base-files/etc/board.d/02_network      | 3 ++-
 .../mt7621/base-files/etc/hotplug.d/ieee80211/10_fix_wifi_mac     | 3 ++-
 target/linux/ramips/mt7621/base-files/etc/init.d/bootcount        | 3 ++-
 target/linux/ramips/mt7621/base-files/lib/upgrade/platform.sh     | 1 +
 8 files changed, 26 insertions(+), 4 deletions(-)

diff --git a/package/boot/uboot-envtools/files/ramips b/package/boot/uboot-envtools/files/ramips
index a59f647685..2bb04997f9 100644
--- a/package/boot/uboot-envtools/files/ramips
+++ b/package/boot/uboot-envtools/files/ramips
@@ -53,6 +53,7 @@ jcg,q20)
 linksys,ea7300-v1|\
 linksys,ea7300-v2|\
 linksys,ea7500-v2|\
+linksys,ea8100-v1|\
 xiaomi,mi-router-3g|\
 xiaomi,mi-router-3-pro|\
 xiaomi,mi-router-4|\
diff --git a/target/linux/ramips/dts/mt7621_linksys_ea8100-v1.dts b/target/linux/ramips/dts/mt7621_linksys_ea8100-v1.dts
new file mode 100644
index 0000000000..6cc2219aec
--- /dev/null
+++ b/target/linux/ramips/dts/mt7621_linksys_ea8100-v1.dts
@@ -0,0 +1,8 @@
+// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
+
+#include "mt7621_linksys_ea7xxx.dtsi"
+
+/ {
+	compatible = "linksys,ea8100-v1", "mediatek,mt7621-soc";
+	model = "Linksys EA8100";
+};
diff --git a/target/linux/ramips/image/mt7621.mk b/target/linux/ramips/image/mt7621.mk
index 4b8ec4ceb1..96a66b2398 100644
--- a/target/linux/ramips/image/mt7621.mk
+++ b/target/linux/ramips/image/mt7621.mk
@@ -854,6 +854,14 @@ define Device/linksys_ea7500-v2
 endef
 TARGET_DEVICES += linksys_ea7500-v2
 
+define Device/linksys_ea8100-v1
+  $(Device/linksys_ea7xxx)
+  DEVICE_MODEL := EA8100
+  DEVICE_VARIANT := v1
+  LINKSYS_HWNAME := EA8100
+endef
+TARGET_DEVICES += linksys_ea8100-v1
+
 define Device/linksys_re6500
   $(Device/dsa-migration)
   IMAGE_SIZE := 7872k
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 9e67d458de..5322bc9db0 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
@@ -51,7 +51,8 @@ linksys,e5600)
 	;;
 linksys,ea7300-v1|\
 linksys,ea7300-v2|\
-linksys,ea7500-v2)
+linksys,ea7500-v2|\
+linksys,ea8100-v1)
 	ucidef_set_led_netdev "lan1" "lan1 link" "green:lan1" "lan1" "link"
 	ucidef_set_led_netdev "lan2" "lan2 link" "green:lan2" "lan2" "link"
 	ucidef_set_led_netdev "lan3" "lan3 link" "green:lan3" "lan3" "link"
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 b31c99e6f1..d84d3e317f 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
@@ -141,7 +141,8 @@ ramips_setup_macs()
 	linksys,e5600|\
 	linksys,ea7300-v1|\
 	linksys,ea7300-v2|\
-	linksys,ea7500-v2)
+	linksys,ea7500-v2|\
+	linksys,ea8100-v1)
 		lan_mac=$(mtd_get_mac_ascii devinfo hw_mac_addr)
 		wan_mac=$lan_mac
 		label_mac=$lan_mac
diff --git a/target/linux/ramips/mt7621/base-files/etc/hotplug.d/ieee80211/10_fix_wifi_mac b/target/linux/ramips/mt7621/base-files/etc/hotplug.d/ieee80211/10_fix_wifi_mac
index 49b7f23ce9..bd0f0254c6 100644
--- a/target/linux/ramips/mt7621/base-files/etc/hotplug.d/ieee80211/10_fix_wifi_mac
+++ b/target/linux/ramips/mt7621/base-files/etc/hotplug.d/ieee80211/10_fix_wifi_mac
@@ -21,7 +21,8 @@ case "$board" in
 	linksys,e5600|\
 	linksys,ea7300-v1|\
 	linksys,ea7300-v2|\
-	linksys,ea7500-v2)
+	linksys,ea7500-v2|\
+	linksys,ea8100-v1)
 		hw_mac_addr=$(mtd_get_mac_ascii devinfo hw_mac_addr)
 		[ "$PHYNBR" = "0" ] && macaddr_add $hw_mac_addr 1 > /sys${DEVPATH}/macaddress
 		[ "$PHYNBR" = "1" ] && macaddr_add $hw_mac_addr 2 > /sys${DEVPATH}/macaddress
diff --git a/target/linux/ramips/mt7621/base-files/etc/init.d/bootcount b/target/linux/ramips/mt7621/base-files/etc/init.d/bootcount
index cfaa62485c..d3525ea0c9 100755
--- a/target/linux/ramips/mt7621/base-files/etc/init.d/bootcount
+++ b/target/linux/ramips/mt7621/base-files/etc/init.d/bootcount
@@ -11,7 +11,8 @@ boot() {
 	linksys,e5600|\
 	linksys,ea7300-v1|\
 	linksys,ea7300-v2|\
-	linksys,ea7500-v2)
+	linksys,ea7500-v2|\
+	linksys,ea8100-v1)
 		mtd resetbc s_env || true
 		;;
 	samknows,whitebox-v8)
diff --git a/target/linux/ramips/mt7621/base-files/lib/upgrade/platform.sh b/target/linux/ramips/mt7621/base-files/lib/upgrade/platform.sh
index 689a0e51ae..4943ad1305 100755
--- a/target/linux/ramips/mt7621/base-files/lib/upgrade/platform.sh
+++ b/target/linux/ramips/mt7621/base-files/lib/upgrade/platform.sh
@@ -62,6 +62,7 @@ platform_do_upgrade() {
 	linksys,ea7300-v1|\
 	linksys,ea7300-v2|\
 	linksys,ea7500-v2|\
+	linksys,ea8100-v1|\
 	netgear,r6220|\
 	netgear,r6260|\
 	netgear,r6350|\



More information about the lede-commits mailing list