ath79: Correct MAC address for WAN interface of Archer A7/C7 v5
authorAdrian Schmutzler <freifunk@adrianschmutzler.de>
Wed, 3 Apr 2019 17:07:52 +0000 (19:07 +0200)
committerPetr Štetiar <ynezz@true.cz>
Mon, 8 Apr 2019 16:37:04 +0000 (18:37 +0200)
These devices share the network config with C7v4, thus the WAN MAC
also needs to be fixed the same way. However, the partition
where the MAC address resides has been changed.

Based on: https://github.com/openwrt/openwrt/pull/1726

Tested-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
target/linux/ath79/base-files/etc/board.d/02_network

index 4651669d3106fcfa56ce69bdd6037891b4fc08d8..4c734ac69ab15b597bd0049e8aecda60930cd96f 100755 (executable)
@@ -327,6 +327,11 @@ ath79_setup_macs()
                wan_mac=$(mtd_get_mac_binary factory 0)
                lan_mac=$(macaddr_setbit_la "$wan_mac")
                ;;
+       tplink,archer-a7-v5|\
+       tplink,archer-c7-v5)
+               base_mac=$(mtd_get_mac_binary info 8)
+               wan_mac=$(macaddr_add "$base_mac" 1)
+               ;;
        tplink,archer-c7-v4)
                base_mac=$(mtd_get_mac_binary config 8)
                wan_mac=$(macaddr_add "$base_mac" 1)