1// SPDX-License-Identifier: GPL-2.0+
2/dts-v1/;
3
4/ {
5	binman {
6		allow-repack;
7
8		u-boot {
9		};
10
11		blob {
12			filename = "compress";
13		};
14
15		fit {
16			description = "test-desc";
17			#address-cells = <1>;
18
19			images {
20				kernel {
21					description = "Vanilla Linux kernel";
22					type = "kernel";
23					arch = "ppc";
24					os = "linux";
25					compression = "gzip";
26					load = <00000000>;
27					entry = <00000000>;
28					hash-1 {
29						algo = "crc32";
30					};
31					blob-ext {
32						filename = "once";
33					};
34				};
35				fdt-1 {
36					description = "Flattened Device Tree blob";
37					type = "flat_dt";
38					arch = "ppc";
39					compression = "none";
40					hash-1 {
41						algo = "crc32";
42					};
43					u-boot-spl-dtb {
44					};
45				};
46			};
47
48			configurations {
49				default = "conf-1";
50				conf-1 {
51					description = "Boot Linux kernel with FDT blob";
52					kernel = "kernel";
53					fdt = "fdt-1";
54				};
55			};
56		};
57
58		fdtmap {
59		};
60	};
61};
62