blob: 122bfccd56520098463dede5669e1d5b4dbcd52b [file] [log] [blame]
Simon Glass9909c112023-07-18 07:24:05 -06001// 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};