binman: Add support for a collection of entries
[platform/kernel/u-boot.git] / tools / binman / test / 198_collection.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                 collection {
11                         content = <&u_boot_nodtb &dtb>;
12                 };
13                 fill {
14                         size = <2>;
15                         fill-byte = [ff];
16                 };
17                 u_boot_nodtb: u-boot-nodtb {
18                 };
19                 fill2 {
20                         type = "fill";
21                         size = <3>;
22                         fill-byte = [fe];
23                 };
24                 dtb: u-boot-dtb {
25                 };
26         };
27 };