Skip to content

Instantly share code, notes, and snippets.

@Furao
Created May 24, 2024 13:52
Show Gist options
  • Save Furao/67bfa8b58e858207c99913cc75baa646 to your computer and use it in GitHub Desktop.
Save Furao/67bfa8b58e858207c99913cc75baa646 to your computer and use it in GitHub Desktop.
Linux FIT image
/dts-v1/;
/ {
description = "zcu102 FIT Image";
#address-cells = <1>;
images {
kernel {
description = "Kernel";
data = /incbin/("Image");
type = "kernel";
arch = "arm64";
os = "linux";
compression = "none";
load = <0x00000000>;
entry = <0x00000000>;
hash {
algo = "sha1";
};
};
fdt {
description = "DTB";
data = /incbin/("system.dtb");
type = "flat_dt";
arch = "arm64";
compression = "none";
hash {
algo = "sha1";
};
};
initrd {
description = "Initrd";
data = /incbin/("inspecta-docker-image-zcu102-zynqmp.cpio.gz.u-boot");
type = "ramdisk";
arch = "arm64";
os = "linux";
compression = "none";
hash {
algo = "sha1";
};
};
};
configurations {
default = "standard";
standard {
description = "Standard Boot";
kernel = "kernel";
fdt = "fdt";
ramdisk = "initrd";
hash {
algo = "sha1";
};
};
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment