Prepare v2023.10
[platform/kernel/u-boot.git] / tools / binman / test / 067_fmap.dts
1 // SPDX-License-Identifier: GPL-2.0+
2 /dts-v1/;
3
4 / {
5         #address-cells = <1>;
6         #size-cells = <1>;
7
8         binman {
9                 section@0 {
10                         read-only;
11                         name-prefix = "ro-";
12                         size = <0x10>;
13                         pad-byte = <0x21>;
14                         preserve;
15
16                         u-boot {
17                         };
18                 };
19                 section@1 {
20                         name-prefix = "rw-";
21                         size = <0x10>;
22                         pad-byte = <0x61>;
23
24                         u-boot {
25                         };
26                 };
27                 fmap {
28                 };
29         };
30 };