blob: 15f6cc07e5d816a616548258ededb568be1f94b9 [file] [log] [blame]
Alper Nebi Yasakc261ec12020-08-31 12:58:20 +03001// 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 = "ATF BL31";
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 };
Simon Glassa820af72020-09-06 10:39:09 -060032 atf-bl31 {
Alper Nebi Yasakc261ec12020-08-31 12:58:20 +030033 filename = "missing";
34 };
Simon Glassa820af72020-09-06 10:39:09 -060035 cros-ec-rw {
36 type = "atf-bl31";
37 missing-msg = "wibble";
38 };
39 another {
40 type = "atf-bl31";
41 };
Alper Nebi Yasakc261ec12020-08-31 12:58:20 +030042 };
43 };
44 };
45 u-boot-nodtb {
46 };
47 };
48};