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