1// SPDX-License-Identifier: GPL-2.0+
2
3/dts-v1/;
4
5/ {
6	binman: binman {
7		multiple-images;
8
9		my_template: template {
10			fit@0 {
11				images {
12					kernel-1 {
13					};
14					kernel-2 {
15					};
16				};
17			};
18		};
19
20		image {
21			filename = "image.bin";
22			insert-template = <&my_template>;
23
24			fit@0 {
25				description = "desc";
26				configurations {
27				};
28				images {
29					kernel-3 {
30					};
31					kernel-4 {
32					};
33				};
34			};
35		};
36	};
37};
38