mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-04-19 04:51:32 +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>
34 lines
521 B
Plaintext
34 lines
521 B
Plaintext
// SPDX-License-Identifier: GPL-2.0+
|
|
/dts-v1/;
|
|
|
|
/ {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
binman {
|
|
text {
|
|
size = <8>;
|
|
text-label = "test-id";
|
|
};
|
|
text2 {
|
|
type = "text";
|
|
text-label = "test-id2";
|
|
};
|
|
text3 {
|
|
type = "text";
|
|
text-label = "test-id3";
|
|
};
|
|
/* This one does not use command-line args */
|
|
text4 {
|
|
type = "text";
|
|
text-label = "test-id4";
|
|
test-id4 = "some text";
|
|
};
|
|
/* Put text directly in the node */
|
|
text5 {
|
|
type = "text";
|
|
text = "more text";
|
|
};
|
|
};
|
|
};
|