Prepare v2023.10
[platform/kernel/u-boot.git] / tools / binman / test / 220_fit_subentry_bintool.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
14                         images {
15                                 test {
16                                         description = "Something using a bintool";
17                                         type = "kernel";
18                                         arch = "arm";
19                                         os = "linux";
20                                         compression = "gzip";
21                                         load = <00000000>;
22                                         entry = <00000000>;
23
24                                         gbb {
25                                                 size = <0x2180>;
26                                         };
27                                 };
28                         };
29
30                         configurations {
31                                 default = "conf-1";
32                                 conf-1 {
33                                         description = "Boot bintool output";
34                                         kernel = "kernel";
35                                 };
36                         };
37                 };
38         };
39 };