blob: 6980dbfafcc6130f60e19b1c509a5da4ec4957ba [file] [log] [blame]
Simon Glassf6abd522023-07-18 07:24:04 -06001// 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 second {
31 type = "section";
32 insert-template = <&common_part>;
33
34 u-boot-dtb {
35 };
36
37 intel-vga {
38 filename = "vga2.bin";
39 };
40 };
41 };
42};