mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-05-04 20:26:13 +02:00
Move about 40 test files for FIT images (signing, external data, split-elf, encryption, alignment, firmware loadables, templates) into a fit/ subdirectory. Drop the numeric prefixes and the redundant fit_ filename prefix, and update all references. Rename the three signature.dts variants to have unique names: signature.dts, signature_multi_key.dts and signature_no_nodes.dts. Signed-off-by: Simon Glass <simon.glass@canonical.com>
60 lines
894 B
Plaintext
60 lines
894 B
Plaintext
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/dts-v1/;
|
|
|
|
/ {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
binman {
|
|
fit {
|
|
description = "test desc";
|
|
#address-cells = <1>;
|
|
fit,external-offset = <1024>;
|
|
fit,align = <1024>;
|
|
|
|
images {
|
|
u-boot {
|
|
description = "test u-boot";
|
|
type = "standalone";
|
|
arch = "arm64";
|
|
os = "u-boot";
|
|
compression = "none";
|
|
load = <00000000>;
|
|
entry = <00000000>;
|
|
|
|
u-boot-nodtb {
|
|
};
|
|
};
|
|
|
|
fdt-1 {
|
|
description = "test fdt";
|
|
type = "flat_dt";
|
|
compression = "none";
|
|
|
|
u-boot-dtb {
|
|
};
|
|
};
|
|
|
|
fdt-2 {
|
|
description = "test fdt";
|
|
type = "flat_dt";
|
|
compression = "none";
|
|
|
|
u-boot-dtb {
|
|
};
|
|
};
|
|
};
|
|
|
|
configurations {
|
|
default = "config-1";
|
|
config-1 {
|
|
description = "test config";
|
|
fdt = "fdt-1";
|
|
firmware = "u-boot";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|