diff options
author | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2019-04-03 19:05:19 +0200 |
---|---|---|
committer | Petr Štetiar <ynezz@true.cz> | 2019-04-08 18:37:05 +0200 |
commit | 93d23aced24c2e620461e1b0448d35be21f7e501 (patch) | |
tree | bf96eeb055048c027f84474debb31edbde479b04 /target | |
parent | 9aa8f87d277bf2f666fa5bf90c5efd59dd044d54 (diff) | |
download | upstream-93d23aced24c2e620461e1b0448d35be21f7e501.tar.gz upstream-93d23aced24c2e620461e1b0448d35be21f7e501.tar.bz2 upstream-93d23aced24c2e620461e1b0448d35be21f7e501.zip |
ar71xx: Correct MAC address for WAN interface of Archer C7 v5
This device shares the network config with v4, 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>
Diffstat (limited to 'target')
-rwxr-xr-x | target/linux/ar71xx/base-files/etc/board.d/02_network | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/target/linux/ar71xx/base-files/etc/board.d/02_network b/target/linux/ar71xx/base-files/etc/board.d/02_network index 8e5ff101d6..68874e0c2e 100755 --- a/target/linux/ar71xx/base-files/etc/board.d/02_network +++ b/target/linux/ar71xx/base-files/etc/board.d/02_network @@ -605,6 +605,10 @@ ar71xx_setup_macs() base_mac=$(mtd_get_mac_binary config 8) wan_mac=$(macaddr_add "$base_mac" 1) ;; + archer-c7-v5) + base_mac=$(mtd_get_mac_binary info 8) + wan_mac=$(macaddr_add "$base_mac" 1) + ;; dgl-5500-a1|\ dir-825-c1) wan_mac=$(mtd_get_mac_ascii nvram "wan_mac") |