1/dts-v1/;
2
3/memreserve/	0x0000000000000000 0x000000000000000e;
4/ {
5	model = "MyBoardName";
6	compatible = "MyBoardName", "MyBoardFamilyName";
7	#address-cells = <0x1>;
8	#size-cells = <0x1>;
9	empty_prop;
10
11	cpus {
12		linux,phandle = <0x1>;
13		#address-cells = <0x1>;
14		#size-cells = <0x0>;
15
16		PowerPC,970@0 {
17			device_type = "cpu";
18			reg = <0x0>;
19			linux,boot-cpu;
20		};
21
22		PowerPC,970@1 {
23			device_type = "cpu";
24			reg = <0x1>;
25		};
26	};
27
28	randomnode {
29		string = "foo", "stuff";
30		bytes = [61 62 63 64 65];
31		nbytes = [80 ff];
32
33		child {
34		};
35	};
36
37	chosen {
38	};
39};
40