diff options
author | Pramod Kumar <pramod.kumar@broadcom.com> | 2020-07-15 22:55:40 +0530 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-07-29 10:37:11 -0400 |
commit | e14563db050dd492555651e51d1e02bd2ed3f3af (patch) | |
tree | 3c416f2a63cdbfab247a64b8e3d4ac40b503f2f2 /board/broadcom | |
parent | 60f23870436ac7994e477ab2b25d631b65312649 (diff) | |
download | u-boot-e14563db050dd492555651e51d1e02bd2ed3f3af.tar.gz u-boot-e14563db050dd492555651e51d1e02bd2ed3f3af.tar.bz2 u-boot-e14563db050dd492555651e51d1e02bd2ed3f3af.zip |
board: ns3: add FIT image its file
Add FIT image its file.
Signed-off-by: Pramod Kumar <pramod.kumar@broadcom.com>
Signed-off-by: Rayagonda Kokatanur <rayagonda.kokatanur@broadcom.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/broadcom')
-rw-r--r-- | board/broadcom/bcmns3/fit/multi.its | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/board/broadcom/bcmns3/fit/multi.its b/board/broadcom/bcmns3/fit/multi.its new file mode 100644 index 0000000000..a0ff4bc908 --- /dev/null +++ b/board/broadcom/bcmns3/fit/multi.its @@ -0,0 +1,59 @@ +/* + * U-Boot uImage source file with multiple kernels, ramdisks and FDT blobs + */ + +/dts-v1/; + +/ { + description = "Various kernels, ramdisks and FDT blobs"; + #address-cells = <1>; + + images { + kernel { + description = "Linux kernel Image"; + data = /incbin/("./Image"); + type = "kernel"; + arch = "arm64"; + os = "linux"; + compression = "none"; + load = <0x80080000>; + entry = <0x80080000>; + hash-1 { + algo = "sha1"; + }; + signature { + algo = "sha1,rsa2048"; + key-name-hint = "dev"; + }; + }; + + fdt-ns3 { + description = "FDT Blob"; + data = /incbin/("./dt-blob.bin"); + type = "flat_dt"; + arch = "arm64"; + compression = "none"; + hash-1 { + algo = "sha1"; + }; + signature { + algo = "sha1,rsa2048"; + key-name-hint = "dev"; + }; + }; + }; + + configurations { + default = "config-ns3"; + config-ns3 { + description = "FIT1 configuration"; + kernel = "kernel"; + fdt = "fdt-ns3"; + signature { + algo = "sha1,rsa2048"; + key-name-hint = "dev"; + sign-images = "fdt", "kernel"; + }; + }; + }; +}; |