ath79: fix MAC address assignment for TP-Link ar7241 devices

On TP-Link ar7241 devices LAN and WAN interfaces are swapped. Keeping
that in mind fix MAC address assignment as used in vendor firmware:
LAN MAC - main MAC stored in u-boot and printed on label
WAN MAC - LAN MAC + 1

Signed-off-by: Will Moss <willormos@gmail.com>
This commit is contained in:
Will Moss 2022-08-03 11:37:47 +00:00 committed by Hauke Mehrtens
parent 4778f6e959
commit 5a1af6ed62
1 changed files with 3 additions and 4 deletions

View File

@ -94,18 +94,17 @@
};
};
&eth0 {
&eth0 { /* WAN interface, initialized last as eth1 */
status = "okay";
nvmem-cells = <&macaddr_uboot_1fc00>;
nvmem-cell-names = "mac-address";
mac-address-increment = <(-1)>;
mac-address-increment = <1>;
};
&eth1 {
&eth1 { /* LAN interface, initialized first as eth0 */
nvmem-cells = <&macaddr_uboot_1fc00>;
nvmem-cell-names = "mac-address";
mac-address-increment = <1>;
};
&uboot {