blob: c52d760b73590ae2682000555b53d42dd296f4f1 [file] [log] [blame]
Simon Glassfdc34362020-07-09 18:39:45 -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
16 images {
17 kernel {
18 description = "Vanilla Linux kernel";
19 type = "kernel";
20 arch = "ppc";
21 os = "linux";
22 compression = "gzip";
23 load = <00000000>;
24 entry = <00000000>;
25 hash-1 {
26 algo = "crc32";
27 };
28 hash-2 {
29 algo = "sha1";
30 };
31 u-boot {
32 };
33 };
34 fdt-1 {
35 description = "Flattened Device Tree blob";
36 type = "flat_dt";
37 arch = "ppc";
38 compression = "none";
39 hash-1 {
40 algo = "crc32";
41 };
42 hash-2 {
43 algo = "sha1";
44 };
45 u-boot-spl-dtb {
46 };
47 };
48 };
49
50 configurations {
51 default = "conf-1";
52 conf-1 {
53 description = "Boot Linux kernel with FDT blob";
54 kernel = "kernel";
55 fdt = "fdt-1";
56 };
57 };
58 };
59 u-boot-nodtb {
60 };
61 };
62};