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> (cherry picked from commit 5a1af6ed621d4547d8bf486d0d3e4de5443b9b58)
This commit is contained in:
parent
7fa6351310
commit
d25e1a3bde
@ -94,18 +94,17 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
ð0 {
|
ð0 { /* WAN interface, initialized last as eth1 */
|
||||||
status = "okay";
|
status = "okay";
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_uboot_1fc00>;
|
nvmem-cells = <&macaddr_uboot_1fc00>;
|
||||||
nvmem-cell-names = "mac-address";
|
nvmem-cell-names = "mac-address";
|
||||||
mac-address-increment = <(-1)>;
|
mac-address-increment = <1>;
|
||||||
};
|
};
|
||||||
|
|
||||||
ð1 {
|
ð1 { /* LAN interface, initialized first as eth0 */
|
||||||
nvmem-cells = <&macaddr_uboot_1fc00>;
|
nvmem-cells = <&macaddr_uboot_1fc00>;
|
||||||
nvmem-cell-names = "mac-address";
|
nvmem-cell-names = "mac-address";
|
||||||
mac-address-increment = <1>;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
&uboot {
|
&uboot {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user