Prepare v2023.10
[platform/kernel/u-boot.git] / tools / binman / test / 162_fit_external.dts
1 // 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                         fit,external-offset = <0x400>;
14                         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 };