aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ramips/dts
diff options
context:
space:
mode:
authorDENG Qingfang <dengqf6@mail2.sysu.edu.cn>2020-03-19 19:33:27 +0800
committerChuanhong Guo <gch981213@gmail.com>2020-04-04 14:56:14 +0800
commit5acd1ed0be0d78847cd7d9d5599526f59babaf4d (patch)
treeb01ffc36449027c241ce6acfeca3f9dbcf1e1239 /target/linux/ramips/dts
parent3211c983fd7a51208f22866193df64a009b64fdb (diff)
downloadupstream-5acd1ed0be0d78847cd7d9d5599526f59babaf4d.tar.gz
upstream-5acd1ed0be0d78847cd7d9d5599526f59babaf4d.tar.bz2
upstream-5acd1ed0be0d78847cd7d9d5599526f59babaf4d.zip
ramips: mt7621: fix Ubiquiti ER-X ports names and MAC addresses
The name of each user port should be eth0..4, instead of lan1..4 and there is no WAN port. Rename them to match the official firmware. To avoid conflict with the master port (gmac0), rename it to "dsa". The official firmware assigns MAC address in this way: eth0 = label mac eth1 = label mac + 1 ... eth4 = label mac + 4 Since we have switched to DSA, it's possible to use different MAC for each port. Acked-by: Adrian Schmutzler <freifunk@adrianschmutzler.de> Signed-off-by: DENG Qingfang <dengqf6@mail2.sysu.edu.cn>
Diffstat (limited to 'target/linux/ramips/dts')
-rw-r--r--target/linux/ramips/dts/mt7621_ubiquiti_edgerouterx.dtsi21
1 files changed, 14 insertions, 7 deletions
diff --git a/target/linux/ramips/dts/mt7621_ubiquiti_edgerouterx.dtsi b/target/linux/ramips/dts/mt7621_ubiquiti_edgerouterx.dtsi
index 6fed4a0b7b..b10953f45e 100644
--- a/target/linux/ramips/dts/mt7621_ubiquiti_edgerouterx.dtsi
+++ b/target/linux/ramips/dts/mt7621_ubiquiti_edgerouterx.dtsi
@@ -25,35 +25,42 @@
&gmac0 {
mtd-mac-address = <&factory 0x22>;
+ label = "dsa";
};
&switch0 {
ports {
port@0 {
status = "okay";
- label = "wan";
- mtd-mac-address = <&factory 0x22>;
- mtd-mac-address-increment = <1>;
+ label = "eth0";
};
port@1 {
status = "okay";
- label = "lan1";
+ label = "eth1";
+ mtd-mac-address = <&factory 0x22>;
+ mtd-mac-address-increment = <1>;
};
port@2 {
status = "okay";
- label = "lan2";
+ label = "eth2";
+ mtd-mac-address = <&factory 0x22>;
+ mtd-mac-address-increment = <2>;
};
port@3 {
status = "okay";
- label = "lan3";
+ label = "eth3";
+ mtd-mac-address = <&factory 0x22>;
+ mtd-mac-address-increment = <3>;
};
port@4 {
status = "okay";
- label = "lan4";
+ label = "eth4";
+ mtd-mac-address = <&factory 0x22>;
+ mtd-mac-address-increment = <4>;
};
};
};