blob: 0197ffd15974348471a939ec2db4fa1e319636a5 [file] [log] [blame]
Simon Glassa435cd12020-09-01 05:13:59 -06001// 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";
Jan Kiszkaa1419df2022-02-28 17:06:20 +010039 hash {
40 algo = "sha256";
41 };
Simon Glassa435cd12020-09-01 05:13:59 -060042 };
43 };
44
45 configurations {
Simon Glass1032acc2020-09-06 10:39:08 -060046 default = "@config-DEFAULT-SEQ";
Simon Glassa435cd12020-09-01 05:13:59 -060047 @config-SEQ {
48 description = "conf-NAME.dtb";
49 firmware = "uboot";
50 loadables = "atf";
51 fdt = "fdt-SEQ";
52 };
53 };
54 };
55 u-boot-nodtb {
56 };
57 };
58};