[openwrt/openwrt] ramips: mt7621: support openwrt,netdev-name for renaming interfaces
LEDE Commits
lede-commits at lists.infradead.org
Mon Nov 25 07:41:34 PST 2024
robimarko pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/5695267847c2fe51290fdbde6ecd7114654f7988
commit 5695267847c2fe51290fdbde6ecd7114654f7988
Author: Robert Marko <robimarko at gmail.com>
AuthorDate: Sun Nov 24 21:15:08 2024 +0100
ramips: mt7621: support openwrt,netdev-name for renaming interfaces
Edgerouter X currently has its eth1 port on the switch missing since there
is a naming conflict currently.
So, as the root cause is mixing kernel support for DSA interfaces having
predictable names set via "label" property vs others having it assigned
dynamically lets avoid the conflict by using our own custom property as
suggested upstream [1].
So, add support via "openwrt,netdev-name" property and use it on ERX.
Fixes: 2a25c6ace8d8 ("ramips: get rid of downstream network device label patch")
Fixes: #15643
Link: https://github.com/openwrt/openwrt/pull/17062
Signed-off-by: Robert Marko <robimarko at gmail.com>
---
.../linux/ramips/dts/mt7621_ubnt_edgerouter-x-sfp.dts | 3 ++-
target/linux/ramips/dts/mt7621_ubnt_edgerouter-x.dts | 2 +-
target/linux/ramips/dts/mt7621_ubnt_edgerouter-x.dtsi | 17 +++++++++++------
.../mt7621/base-files/lib/preinit/04_set_netdev_label | 8 ++++++++
4 files changed, 22 insertions(+), 8 deletions(-)
diff --git a/target/linux/ramips/dts/mt7621_ubnt_edgerouter-x-sfp.dts b/target/linux/ramips/dts/mt7621_ubnt_edgerouter-x-sfp.dts
index 50a77c3877..9f1e0a8d20 100644
--- a/target/linux/ramips/dts/mt7621_ubnt_edgerouter-x-sfp.dts
+++ b/target/linux/ramips/dts/mt7621_ubnt_edgerouter-x-sfp.dts
@@ -69,11 +69,12 @@
ports {
port at 5 {
reg = <5>;
- label = "eth5";
+ openwrt,netdev-name = "eth5";
phy-handle = <&ephy7>;
phy-mode = "rgmii-rxid";
nvmem-cells = <&macaddr_factory_22 5>;
nvmem-cell-names = "mac-address";
+ /delete-property/ label;
};
};
};
diff --git a/target/linux/ramips/dts/mt7621_ubnt_edgerouter-x.dts b/target/linux/ramips/dts/mt7621_ubnt_edgerouter-x.dts
index 80467c88e9..c0230e13b4 100644
--- a/target/linux/ramips/dts/mt7621_ubnt_edgerouter-x.dts
+++ b/target/linux/ramips/dts/mt7621_ubnt_edgerouter-x.dts
@@ -7,7 +7,7 @@
&gmac1 {
status = "okay";
- label = "eth0";
+ openwrt,netdev-name = "eth0";
phy-handle = <ðphy0>;
nvmem-cells = <&macaddr_factory_22 0>;
diff --git a/target/linux/ramips/dts/mt7621_ubnt_edgerouter-x.dtsi b/target/linux/ramips/dts/mt7621_ubnt_edgerouter-x.dtsi
index dc9908ba34..40433c1c43 100644
--- a/target/linux/ramips/dts/mt7621_ubnt_edgerouter-x.dtsi
+++ b/target/linux/ramips/dts/mt7621_ubnt_edgerouter-x.dtsi
@@ -22,42 +22,47 @@
&gmac0 {
nvmem-cells = <&macaddr_factory_22 0>;
nvmem-cell-names = "mac-address";
- label = "dsa";
+ openwrt,netdev-name = "dsa";
};
&switch0 {
ports {
port at 0 {
status = "okay";
- label = "eth0";
+ openwrt,netdev-name = "eth0";
+ /delete-property/ label;
};
port at 1 {
status = "okay";
- label = "eth1";
+ openwrt,netdev-name = "eth1";
nvmem-cells = <&macaddr_factory_22 1>;
nvmem-cell-names = "mac-address";
+ /delete-property/ label;
};
port at 2 {
status = "okay";
- label = "eth2";
+ openwrt,netdev-name = "eth2";
nvmem-cells = <&macaddr_factory_22 2>;
nvmem-cell-names = "mac-address";
+ /delete-property/ label;
};
port at 3 {
status = "okay";
- label = "eth3";
+ openwrt,netdev-name = "eth3";
nvmem-cells = <&macaddr_factory_22 3>;
nvmem-cell-names = "mac-address";
+ /delete-property/ label;
};
port at 4 {
status = "okay";
- label = "eth4";
+ openwrt,netdev-name = "eth4";
nvmem-cells = <&macaddr_factory_22 4>;
nvmem-cell-names = "mac-address";
+ /delete-property/ label;
};
};
};
diff --git a/target/linux/ramips/mt7621/base-files/lib/preinit/04_set_netdev_label b/target/linux/ramips/mt7621/base-files/lib/preinit/04_set_netdev_label
index 110e023b96..2c5e420f93 100644
--- a/target/linux/ramips/mt7621/base-files/lib/preinit/04_set_netdev_label
+++ b/target/linux/ramips/mt7621/base-files/lib/preinit/04_set_netdev_label
@@ -10,6 +10,14 @@ set_netdev_labels() {
[ "$netdev" = "$label" ] && continue
ip link set "$netdev" name "$label"
done
+
+ for dir in /sys/class/net/*; do
+ [ -r "$dir/of_node/openwrt,netdev-name" ] || continue
+ read -r label < "$dir/of_node/openwrt,netdev-name"
+ netdev="${dir##*/}"
+ [ "$netdev" = "$label" ] && continue
+ ip link set "$netdev" name "$label"
+ done
}
boot_hook_add preinit_main set_netdev_labels
More information about the lede-commits
mailing list