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-img {
11		};
12
13		common_part: template {
14			u-boot {
15			};
16
17			intel-vga {
18				filename = "vga.bin";
19			};
20		};
21
22		first {
23			type = "section";
24			insert-template = <&common_part>;
25
26			u-boot-dtb {
27			};
28		};
29
30		section {
31			second {
32				type = "section";
33				insert-template = <&common_part>;
34
35				u-boot-dtb {
36				};
37
38				intel-vga {
39					filename = "vga2.bin";
40				};
41			};
42		};
43
44		second {
45			type = "section";
46			insert-template = <&common_part>;
47
48			u-boot-dtb {
49			};
50		};
51	};
52};
53