Prepare v2023.10
[platform/kernel/u-boot.git] / tools / binman / test / 275_fit_align.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                 fit {
11                         description = "test desc";
12                         #address-cells = <1>;
13                         fit,external-offset = <1024>;
14                         fit,align = <1024>;
15
16                         images {
17                                 u-boot {
18                                         description = "test u-boot";
19                                         type = "standalone";
20                                         arch = "arm64";
21                                         os = "u-boot";
22                                         compression = "none";
23                                         load = <00000000>;
24                                         entry = <00000000>;
25
26                                         u-boot-nodtb {
27                                         };
28                                 };
29
30                                 fdt-1 {
31                                         description = "test fdt";
32                                         type = "flat_dt";
33                                         compression = "none";
34
35                                         u-boot-dtb {
36                                         };
37                                 };
38
39                                 fdt-2 {
40                                         description = "test fdt";
41                                         type = "flat_dt";
42                                         compression = "none";
43
44                                         u-boot-dtb {
45                                         };
46                                 };
47                         };
48
49                         configurations {
50                                 default = "config-1";
51                                 config-1 {
52                                         description = "test config";
53                                         fdt = "fdt-1";
54                                         firmware = "u-boot";
55                                 };
56                         };
57                 };
58         };
59 };