如何通过别名更新DTS节点的属性?
How can I update the property of DTS node through aliases?
假设我有以下 DTS 文件:
/dts-v1/;
/ {
amba {
ethernet@ff0e0000 {
compatible = "cdns,zynqmp-gem", "cdns,gem";
status = "okay";
};
};
aliases {
ethernet0 = "/amba/ethernet@ff0e0000";
};
};
我想通过别名使用另一个 DTS 文件将 ethernet@ff0e0000
的状态更改为 disabled
。我该怎么做?
好吧,终于知道 aliases
在 DTS/compile-time 中无法访问。
假设我有以下 DTS 文件:
/dts-v1/;
/ {
amba {
ethernet@ff0e0000 {
compatible = "cdns,zynqmp-gem", "cdns,gem";
status = "okay";
};
};
aliases {
ethernet0 = "/amba/ethernet@ff0e0000";
};
};
我想通过别名使用另一个 DTS 文件将 ethernet@ff0e0000
的状态更改为 disabled
。我该怎么做?
好吧,终于知道 aliases
在 DTS/compile-time 中无法访问。