mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 14:14:32 +00:00
40 lines
702 B
Text
40 lines
702 B
Text
|
/dts-v1/;
|
||
|
|
||
|
/ {
|
||
|
description = "U-Boot mainline";
|
||
|
#address-cells = <1>;
|
||
|
|
||
|
images {
|
||
|
uboot {
|
||
|
description = "U-Boot (32-bit)";
|
||
|
data = /incbin/("u-boot-nodtb.bin");
|
||
|
type = "standalone";
|
||
|
os = "U-Boot";
|
||
|
arch = "arm";
|
||
|
compression = "none";
|
||
|
load = <0xc0100000>;
|
||
|
entry = <0xc0100000>;
|
||
|
};
|
||
|
|
||
|
fdt-1 {
|
||
|
description = ".dtb";
|
||
|
data = /incbin/("arch/arm/dts/stm32mp15xx-dhcom-pdk2.dtb");
|
||
|
type = "flat_dt";
|
||
|
arch = "arm";
|
||
|
compression = "none";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
configurations {
|
||
|
default = "config-1";
|
||
|
|
||
|
config-1 {
|
||
|
description = "somrev0_boardrev0"; /* SoM+board model */
|
||
|
loadables = "uboot";
|
||
|
fdt = "fdt-1";
|
||
|
};
|
||
|
|
||
|
/* Add 587-100..587-400 with fdt-2..fdt-4 here */
|
||
|
};
|
||
|
};
|