• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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		/* Put text directly in the node */
28		text5 {
29			type = "text";
30			text = "more text";
31		};
32	};
33};
34