1.复写
sp9863a-common.dtsi
{
battery: battery {
temp-support = <0>;
}
}
sp9863a-1h10-native.dtsi
&battery {
temp-support = <1>;
}
2.删除
sp9863a-common.dtsi
{
sdio3 {
mmc-hs400-enhanced-strobe;
mmc-hs400-1_8v;
}
}
sp9863a-1h10-native.dtsi
{
&sdio3 {
/delete-property/ mmc-hs400-enhanced-strobe;
/delete-property/ mmc-hs400-1_8v;
};
}
3 屏蔽
可以使用//或者/* */屏蔽相应的属性,如
//temp-support = <1>;
/*temp-support = <1>;*/