Created
May 24, 2024 13:52
-
-
Save Furao/67bfa8b58e858207c99913cc75baa646 to your computer and use it in GitHub Desktop.
Linux FIT image
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/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