blob: f8d0740a394c6fad56d419acdb0402937abd2e6f [file] [log] [blame]
Simon Glassa04b9942024-07-20 11:49:48 +01001// SPDX-License-Identifier: GPL-2.0+
2
3/dts-v1/;
4
5/ {
6 #address-cells = <1>;
7 #size-cells = <1>;
8
9 binman {
10 u-boot {
11 };
12 fit {
13 description = "test-desc";
14 #address-cells = <1>;
15 fit,fdt-list = "of-list";
16
17 images {
18 kernel {
19 description = "Vanilla Linux kernel";
20 type = "kernel";
21 arch = "ppc";
22 os = "linux";
23 compression = "gzip";
24 load = <00000000>;
25 entry = <00000000>;
26 hash-1 {
27 algo = "crc32";
28 };
29 hash-2 {
30 algo = "sha1";
31 };
32 u-boot {
33 };
34 };
35 @fdt-SEQ {
36 description = "fdt-NAME.dtb";
37 type = "flat_dt";
38 compression = "none";
39 fit,fdt-phase = "tpl";
40 hash {
41 algo = "sha256";
42 };
43 };
44 };
45
46 configurations {
47 default = "@config-DEFAULT-SEQ";
48 @config-SEQ {
49 description = "conf-NAME.dtb";
50 firmware = "uboot";
51 loadables = "atf";
52 fdt = "fdt-SEQ";
53 fit,firmware = "tpl";
54 fit,compatible;
55 };
56 };
57 };
58 u-boot-nodtb {
59 };
60 };
61};