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.18.0-rc1";
14			data = /incbin/("./qcs404_imgs/Image.gz");
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 = "Initial ramdisk";
28			data = /incbin/("./qcs404_imgs/initramfs-tiny-image-qemuarm64-20220618074058-1169.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 = "qcs404-evb-fdt";
42			data = /incbin/("./qcs404_imgs/qcs404-evb-4000.dtb");
43			type = "flat_dt";
44			arch = "arm64";
45			compression = "none";
46			load = <0x83000000>;
47			hash-1 {
48				algo = "sha1";
49			};
50		};
51
52	};
53
54	configurations {
55		default = "config-1";
56
57		config-1 {
58			description = "qcs404-evb kernel-5.18.0-rc1 configuration";
59			kernel = "kernel-1";
60			ramdisk = "ramdisk-1";
61			fdt = "fdt-1";
62		};
63	};
64};
65