1/*
2 * U-Boot uImage source file with multiple kernels, ramdisks and FDT blobs
3 */
4
5/dts-v1/;
6
7/ {
8	description = "Various kernels, ramdisks and FDT blobs";
9	#address-cells = <1>;
10
11	images {
12		kernel-1 {
13			description = "5.15.0-qcomlt-arm64";
14			data = /incbin/("./db845c_imgs/Image.gz--5.15-r0-dragonboard-845c-20211218193034-511.bin");
15			type = "kernel";
16			arch = "arm64";
17			os = "linux";
18			compression = "gzip";
19			load = <0x80000000>;
20			entry = <0x80000000>;
21			hash-1 {
22				algo = "sha1";
23			};
24		};
25
26		ramdisk-1 {
27			description = "initramfs-test-full-image-dragonboard-845c";
28			data = /incbin/("./db845c_imgs/initramfs-test-full-image-dragonboard-845c-20211218193034-511.rootfs.cpio.gz");
29			type = "ramdisk";
30			arch = "arm64";
31			os = "linux";
32			compression = "gzip";
33			load = <00000000>;
34			entry = <00000000>;
35			hash-1 {
36				algo = "sha1";
37			};
38		};
39
40		fdt-1 {
41			description = "sdm845-db845c-fdt";
42			data = /incbin/("./db845c_imgs/sdm845-db845c--5.15-r0-dragonboard-845c-20211218193034.dtb");
43			type = "flat_dt";
44			arch = "arm64";
45			compression = "none";
46			hash-1 {
47				algo = "sha1";
48			};
49		};
50
51	};
52
53	configurations {
54		default = "config-1";
55
56		config-1 {
57			description = "db845c kernel-5.15.0 configuration";
58			kernel = "kernel-1";
59			ramdisk = "ramdisk-1";
60			fdt = "fdt-1";
61		};
62	};
63};
64