u-boot/tools/binman/test/entry/offset_from_elf.dts
Simon Glass 1b044493e5 binman: test: Move remaining test files to test/entry/
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>
2026-03-18 06:14:16 -06:00

31 lines
441 B
Plaintext

// SPDX-License-Identifier: GPL-2.0+
/dts-v1/;
/ {
#address-cells = <1>;
#size-cells = <1>;
binman {
blob: blob {
filename = "blob_syms.bin";
elf-filename = "blob_syms";
elf-base-sym = "__my_start_sym";
};
inset {
type = "null";
offset-from-elf = <&blob>, "val3", <0>;
size = <4>;
overlap;
};
inset2 {
type = "null";
offset-from-elf = <&blob>, "val3", <4>;
size = <4>;
overlap;
};
};
};