blob: 828a258247939b09c908da928e64a6931584f1c4 [file] [log] [blame]
/dts-v1/;
/ {
description = "U-Boot fitImage for plnx_aarch64 kernel";
#address-cells = <1>;
images {
kernel {
description = "Linux Kernel";
data = /incbin/("./../../linux/arch/arm64/boot/Image");
type = "kernel";
arch = "arm64";
os = "linux";
compression = "none";
load = <0x80000>;
entry = <0x80000>;
hash1 {
algo = "sha1";
};
};
fdt-1 {
description = "Flattened Device Tree blob";
data = /incbin/("../../u-boot/arch/arm/dts/versal-vck190-revA-x-ebm-01-revA.dtb");
type = "flat_dt";
arch = "arm64";
load = <0x10000000>;
compression = "none";
hash1 {
algo = "sha1";
};
};
fdt-2 {
description = "Flattened Device Tree overlay";
data = /incbin/("versal-optee.dtbo");
type = "flat_dt";
arch = "arm64";
load = <0x11000000>;
compression = "none";
hash1 {
algo = "sha1";
};
};
ramdisk {
description = "ramdisk";
data = /incbin/("../../out-br/images/rootfs.cpio.gz");
type = "ramdisk";
arch = "arm64";
os = "linux";
compression = "gzip";
hash1 {
algo = "sha1";
};
};
};
configurations {
default = "conf1";
conf1 {
description = "Boot Linux kernel with FDT blob + ramdisk";
kernel = "kernel";
fdt = "fdt-1", "fdt-2";
ramdisk = "ramdisk";
hash1 {
algo = "sha1";
};
};
};
};