xref: /openbmc/u-boot/tools/binman/test/056_name_prefix.dts (revision 48f8e15997ee1c6aa6fa62feab620c6b6593aad5)
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		pad-byte = <0x26>;
11		size = <0x28>;
12		section@0 {
13			read-only;
14			name-prefix = "ro-";
15			size = <0x10>;
16			pad-byte = <0x21>;
17
18			u-boot {
19			};
20		};
21		section@1 {
22			name-prefix = "rw-";
23			size = <0x10>;
24			pad-byte = <0x61>;
25
26			u-boot {
27			};
28		};
29	};
30};
31