Prepare v2023.10
[platform/kernel/u-boot.git] / tools / binman / test / 238_unique_names_multi.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                 multiple-images;
11
12                 image {
13                         size = <0xc00>;
14                         allow-repack;
15
16                         u-boot {
17                         };
18
19                         fdtmap {
20                         };
21
22                         u-boot2 {
23                                 type = "u-boot";
24                         };
25
26                         text {
27                                 text = "some text";
28                         };
29
30                         u-boot-dtb {
31                         };
32
33                         image-header {
34                                 location = "end";
35                         };
36                 };
37         };
38 };