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		size = <0x100000>;
11		allow-repack;
12
13		u-boot {
14		};
15		fit {
16			description = "U-Boot";
17			offset = <0x10000>;
18			images {
19				u-boot-1 {
20					description = "U-Boot";
21					type = "standalone";
22					arch = "arm64";
23					os = "u-boot";
24					compression = "none";
25					hash-1 {
26						algo = "sha256";
27					};
28					u-boot {
29					};
30				};
31
32				fdt-1 {
33					description = "test.dtb";
34					type = "flat_dt";
35					arch = "arm64";
36					compression = "none";
37					hash-1 {
38						algo = "sha256";
39					};
40					u-boot-spl-dtb {
41					};
42				};
43
44			};
45
46			configurations {
47				default = "conf-1";
48				conf-1 {
49					description = "u-boot with fdt";
50					firmware = "u-boot-1";
51					fdt = "fdt-1";
52					signature-1 {
53						algo = "sha256,rsa4096";
54						key-name-hint = "test_key";
55						sign-images = "firmware", "fdt";
56					};
57
58				};
59			};
60		};
61
62		fdtmap {
63		};
64	};
65};
66