Add qemu 2.4.0
[kvmfornfv.git] / qemu / dtc / tests / test_tree1_merge.dts
1 /dts-v1/;
2 /memreserve/ 0xdeadbeef00000000 0x100000;
3 /memreserve/ 123456789 010000;
4
5 / {
6         compatible = "test_tree1";
7         prop-int = "wrong!";
8         prop-str = "hello world";
9
10         subnode@1 {
11                 compatible = "subnode1";
12
13                 subsubnode {
14                         compatible = "subsubnode1", "subsubnode";
15                         prop-int = <0xdeadbeef>;
16                 };
17
18                 ss1 {
19                 };
20         };
21
22         subnode@2 {
23                 linux,phandle = <0x2000>;
24                 prop-int = <123456789>;
25
26                 ss2 {
27                 };
28         };
29 };
30
31 / {
32         prop-int = <0xdeadbeef>;
33         prop-int64 = /bits/ 64 <0xdeadbeef01abcdef>;
34         subnode@1 {
35                 prop-int = [deadbeef];
36         };
37         subnode@2 {
38                 ssn0: subsubnode@0 {
39                         phandle = <0x2001>;
40                         compatible = "subsubnode2", "subsubnode";
41                         prop-int = <0726746425>;
42                 };
43         };
44 };