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			fit,fdt-list = "of-list";
16
17			images {
18				atf {
19					description = "atf firmware";
20					type = "firmware";
21					compression = "none";
22					load = <00000000>;
23					entry = <00000000>;
24				};
25				uboot {
26					description = "U-Boot firmware";
27					type = "firmware";
28					compression = "none";
29					load = <00000000>;
30					entry = <00000000>;
31				};
32				kernel {
33					description = "Vanilla Linux kernel";
34					type = "kernel";
35					arch = "ppc";
36					os = "linux";
37					compression = "gzip";
38					load = <00000000>;
39					entry = <00000000>;
40					hash-1 {
41						algo = "crc32";
42					};
43					hash-2 {
44						algo = "sha1";
45					};
46					u-boot {
47					};
48				};
49				@fdt-NAME {
50					description = "fdt-NAME.dtb";
51					type = "flat_dt";
52					compression = "none";
53					hash {
54						algo = "sha256";
55					};
56				};
57			};
58
59			configurations {
60				default = "@config-DEFAULT-NAME";
61				@config-NAME {
62					description = "conf-NAME.dtb";
63					firmware = "uboot";
64					loadables = "atf";
65					fdt = "fdt-NAME";
66				};
67			};
68		};
69		u-boot-nodtb {
70		};
71	};
72};
73