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		fit {
11			description = "test-desc";
12			#address-cells = <1>;
13
14			images {
15				kernel {
16					description = "Offset-Align Test";
17					type = "kernel";
18					arch = "arm64";
19					os = "linux";
20					compression = "none";
21					load = <00000000>;
22					entry = <00000000>;
23					u-boot-spl {
24						offset = <0x20>;
25					};
26					u-boot {
27						align = <0x10>;
28					};
29				};
30				fdt-1 {
31					description = "Pad-Before-After Test";
32					type = "flat_dt";
33					arch = "arm64";
34					compression = "none";
35					u-boot-spl-dtb {
36					};
37					text {
38						text-label = "test-id";
39						pad-before = <20>;
40						pad-after = <30>;
41					};
42					u-boot-dtb {
43					};
44				};
45			};
46
47			configurations {
48				default = "conf-1";
49				conf-1 {
50					description = "Kernel with FDT blob";
51					kernel = "kernel";
52					fdt = "fdt-1";
53				};
54			};
55		};
56	};
57};
58