blob: 6f2a629a985bf0ab71ee1dd11c4cd49396d5ee9b [file] [log] [blame]
Simon Glass45d556d2020-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 {
Simon Glass7932c882022-01-09 20:13:39 -070013 fit,external-offset = <0x400>;
Simon Glass45d556d2020-07-09 18:39:45 -060014 description = "test-desc";
15 #address-cells = <1>;
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-1 {
36 description = "Flattened Device Tree blob";
37 type = "flat_dt";
38 arch = "ppc";
39 compression = "none";
40 hash-1 {
41 algo = "crc32";
42 };
43 hash-2 {
44 algo = "sha1";
45 };
46 _testing {
47 return-contents-later;
48 };
49 };
50 };
51
52 configurations {
53 default = "conf-1";
54 conf-1 {
55 description = "Boot Linux kernel with FDT blob";
56 kernel = "kernel";
57 fdt = "fdt-1";
58 };
59 };
60 };
61 u-boot-nodtb {
62 };
63 };
64};