mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-05-04 20:26:13 +02:00
Move the remaining 60 or so test files into an entry/ subdirectory. These cover general entry types and features: entry args, fill, text, env, compress, replace, template, collection, ELF, overlap, listing, sections, symlink, TEE OS, and other miscellaneous entries. Drop the numeric prefixes and update all references. Signed-off-by: Simon Glass <simon.glass@canonical.com> Reviewed-by: Quentin Schulz <quentin.schulz@cherry.de>
50 lines
756 B
Plaintext
50 lines
756 B
Plaintext
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/dts-v1/;
|
|
/ {
|
|
binman: binman {
|
|
multiple-images;
|
|
|
|
template_1: template-1 {
|
|
section {
|
|
phandle1: my-blob.bin {
|
|
filename = "my-blob.bin";
|
|
type = "blob-ext";
|
|
};
|
|
};
|
|
};
|
|
template_2: template-2 {
|
|
section {
|
|
ti-secure {
|
|
content = <&phandle2>;
|
|
keyfile = "key.pem";
|
|
};
|
|
phandle2: my-blob.bin {
|
|
filename = "my-blob.bin";
|
|
type = "blob-ext";
|
|
};
|
|
};
|
|
};
|
|
template_3: template-3 {
|
|
section {
|
|
phandle3: my-blob.bin {
|
|
filename = "my-blob.bin";
|
|
type = "blob-ext";
|
|
};
|
|
};
|
|
};
|
|
|
|
file1 {
|
|
insert-template = <&template_1>;
|
|
};
|
|
|
|
file2 {
|
|
insert-template = <&template_2>;
|
|
};
|
|
|
|
file3 {
|
|
insert-template = <&template_3>;
|
|
};
|
|
};
|
|
};
|