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