mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-18 17:23:09 +00:00
38 lines
434 B
Text
38 lines
434 B
Text
|
// 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 {
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|