1// SPDX-License-Identifier: GPL-2.0+
2
3/dts-v1/;
4
5/ {
6	#address-cells = <1>;
7	#size-cells = <1>;
8
9	binman {
10		u-boot {
11		};
12		fit {
13			description = "test-desc";
14			#address-cells = <1>;
15
16			images {
17				kernel {
18					description = "Vanilla Linux kernel";
19					type = "kernel";
20					arch = "ppc";
21					os = "linux";
22					compression = "gzip";
23					load = <00000000>;
24					entry = <00000000>;
25					hash-1 {
26						algo = "crc32";
27					};
28					hash-2 {
29						algo = "sha1";
30					};
31					u-boot {
32					};
33				};
34				@fdt-SEQ {
35					description = "fdt-NAME.dtb";
36					type = "flat_dt";
37					compression = "none";
38				};
39			};
40
41			configurations {
42				default = "config-1";
43				@config-SEQ {
44					description = "conf-NAME.dtb";
45					firmware = "uboot";
46					loadables = "atf";
47					fdt = "fdt-SEQ";
48				};
49			};
50		};
51		u-boot-nodtb {
52		};
53	};
54};
55