[openwrt/openwrt] qualcommax: ipq807x: fix mac setup for Linksys MX4200v2

LEDE Commits lede-commits at lists.infradead.org
Tue Dec 31 08:44:26 PST 2024


robimarko pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/f96b3383d51f544861b8da4d7192594497d3f0b8

commit f96b3383d51f544861b8da4d7192594497d3f0b8
Author: Paweł Owoc <frut3k7 at gmail.com>
AuthorDate: Thu Aug 1 08:53:14 2024 +0200

    qualcommax: ipq807x: fix mac setup for Linksys MX4200v2
    
    Currently for Linksys MX4200v2 all u-boot ethXaddr variables share the same MAC address
    and there is no need to check them one by one.
    
    Signed-off-by: Paweł Owoc <frut3k7 at gmail.com>
    Link: https://github.com/openwrt/openwrt/pull/16070
    Signed-off-by: Robert Marko <robimarko at gmail.com>
---
 target/linux/qualcommax/ipq807x/base-files/etc/board.d/02_network | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/target/linux/qualcommax/ipq807x/base-files/etc/board.d/02_network b/target/linux/qualcommax/ipq807x/base-files/etc/board.d/02_network
index 012288fedc..e3e1104486 100644
--- a/target/linux/qualcommax/ipq807x/base-files/etc/board.d/02_network
+++ b/target/linux/qualcommax/ipq807x/base-files/etc/board.d/02_network
@@ -83,10 +83,8 @@ ipq807x_setup_macs()
 	case "$board" in
 		linksys,mx4200v2)
 			label_mac=$(mtd_get_mac_ascii devinfo hw_mac_addr)
-			for i in $(seq 3 5); do
-				[ "$(mtd_get_mac_ascii u_env eth${i}addr)" != "$label_mac" ] && lan_mac=$label_mac
-			done
-			[ "$(mtd_get_mac_ascii u_env eth2addr)" != "$label_mac" ] && wan_mac=$label_mac
+			[ "$(mtd_get_mac_ascii u_env eth1addr)" != "$label_mac" ] && wan_mac=$label_mac
+			[ "$(mtd_get_mac_ascii u_env eth2addr)" != "$label_mac" ] && lan_mac=$label_mac
 		;;
 		linksys,mx8500)
 			label_mac=$(mtd_get_mac_ascii devinfo hw_mac_addr)




More information about the lede-commits mailing list