~funderscore blog cgit wiki get in touch
aboutsummaryrefslogtreecommitdiff
blob: 122bfccd56520098463dede5669e1d5b4dbcd52b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// SPDX-License-Identifier: GPL-2.0+

/dts-v1/;
/ {
	binman: binman {
		multiple-images;

		my_template: template {
			blob-ext@0 {
				filename = "my-blob.bin";
				offset = <0>;
			};
			blob-ext@8 {
				offset = <8>;
			};
		};

		image {
			pad-byte = <0x40>;
			filename = "my-image.bin";
			insert-template = <&my_template>;
			blob-ext@8 {
				filename = "my-blob2.bin";
			};
		};
	};
};