1// SPDX-License-Identifier: GPL-2.0+
2
3/dts-v1/;
4/ {
5	binman: binman {
6		multiple-images;
7
8		my_template: template {
9			blob-ext@0 {
10				filename = "my-blob.bin";
11				offset = <0>;
12			};
13			blob-ext@8 {
14				offset = <8>;
15			};
16		};
17
18		image {
19			pad-byte = <0x40>;
20			filename = "my-image.bin";
21			insert-template = <&my_template>;
22			blob-ext@8 {
23				filename = "my-blob2.bin";
24			};
25		};
26	};
27};
28