xref: /openbmc/u-boot/tools/binman/test/066_text.dts (revision 25fde1c0)
1// SPDX-License-Identifier: GPL-2.0+
2/dts-v1/;
3
4/ {
5	#address-cells = <1>;
6	#size-cells = <1>;
7
8	binman {
9		text {
10			size = <8>;
11			text-label = "test-id";
12		};
13		text2 {
14			type = "text";
15			text-label = "test-id2";
16		};
17		text3 {
18			type = "text";
19			text-label = "test-id3";
20		};
21		/* This one does not use command-line args */
22		text4 {
23			type = "text";
24			text-label = "test-id4";
25			test-id4 = "some text";
26		};
27	};
28};
29