~funderscore blog cgit wiki get in touch
aboutsummaryrefslogtreecommitdiff
blob: d84dca4ea41e3cc39a1d72309990ad5104cdea45 (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
28
29
30
31
32
33
34
35
36
37
// SPDX-License-Identifier: GPL-2.0+

/dts-v1/;

/ {
	binman: binman {
		multiple-images;

		my_template: template {
			fit@0 {
				images {
					kernel-1 {
					};
					kernel-2 {
					};
				};
			};
		};

		image {
			filename = "image.bin";
			insert-template = <&my_template>;

			fit@0 {
				description = "desc";
				configurations {
				};
				images {
					kernel-3 {
					};
					kernel-4 {
					};
				};
			};
		};
	};
};