rockchip: dts: rk1808: change necessary nodes's u-boot attribute
Change necessary nodes's "u-boot,dm-pre-reloc" to "u-boot,dm-spl", so that we generate dtb with the nodes which include "u-boot,dm-spl". The reducing dtb size fuction is supported by the commit: 1. dts: Makefile: simplify the logic of kernel dtb feature 2. dts: Makefile: support provide a minimum SPL DTB Change-Id: Ibe43a20b435315349bdc1c45a14cf91cd90ecd89 Signed-off-by: Jason Zhu <jason.zhu@rock-chips.com>
This commit is contained in:
parent
e531136ec7
commit
ddd4dd8141
|
|
@ -27,42 +27,42 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
&crypto {
|
&crypto {
|
||||||
u-boot,dm-pre-reloc;
|
u-boot,dm-spl;
|
||||||
};
|
};
|
||||||
|
|
||||||
&dmc {
|
&dmc {
|
||||||
u-boot,dm-pre-reloc;
|
u-boot,dm-spl;
|
||||||
};
|
};
|
||||||
|
|
||||||
&cru {
|
&cru {
|
||||||
u-boot,dm-pre-reloc;
|
u-boot,dm-spl;
|
||||||
};
|
};
|
||||||
|
|
||||||
&grf {
|
&grf {
|
||||||
u-boot,dm-pre-reloc;
|
u-boot,dm-spl;
|
||||||
};
|
};
|
||||||
|
|
||||||
&pmugrf {
|
&pmugrf {
|
||||||
u-boot,dm-pre-reloc;
|
u-boot,dm-spl;
|
||||||
};
|
};
|
||||||
|
|
||||||
&emmc {
|
&emmc {
|
||||||
u-boot,dm-pre-reloc;
|
u-boot,dm-spl;
|
||||||
status = "okay";
|
status = "okay";
|
||||||
};
|
};
|
||||||
|
|
||||||
&sdmmc {
|
&sdmmc {
|
||||||
u-boot,dm-pre-reloc;
|
u-boot,dm-spl;
|
||||||
status = "okay";
|
status = "okay";
|
||||||
};
|
};
|
||||||
|
|
||||||
&saradc {
|
&saradc {
|
||||||
u-boot,dm-pre-reloc;
|
u-boot,dm-spl;
|
||||||
status = "okay";
|
status = "okay";
|
||||||
};
|
};
|
||||||
|
|
||||||
&sfc {
|
&sfc {
|
||||||
u-boot,dm-pre-reloc;
|
u-boot,dm-spl;
|
||||||
status = "okay";
|
status = "okay";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -75,7 +75,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
&uart2 {
|
&uart2 {
|
||||||
u-boot,dm-pre-reloc;
|
u-boot,dm-spl;
|
||||||
};
|
};
|
||||||
|
|
||||||
&uart3 {
|
&uart3 {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue