mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-04-18 12:31:04 +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>
53 lines
600 B
Plaintext
53 lines
600 B
Plaintext
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/dts-v1/;
|
|
|
|
/ {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
binman {
|
|
u-boot-img {
|
|
};
|
|
|
|
common_part: template {
|
|
u-boot {
|
|
};
|
|
|
|
intel-vga {
|
|
filename = "vga.bin";
|
|
};
|
|
};
|
|
|
|
first {
|
|
type = "section";
|
|
insert-template = <&common_part>;
|
|
|
|
u-boot-dtb {
|
|
};
|
|
};
|
|
|
|
section {
|
|
second {
|
|
type = "section";
|
|
insert-template = <&common_part>;
|
|
|
|
u-boot-dtb {
|
|
};
|
|
|
|
intel-vga {
|
|
filename = "vga2.bin";
|
|
};
|
|
};
|
|
};
|
|
|
|
second {
|
|
type = "section";
|
|
insert-template = <&common_part>;
|
|
|
|
u-boot-dtb {
|
|
};
|
|
};
|
|
};
|
|
};
|