~ubuntu-branches/debian/stretch/device-tree-compiler/stretch

« back to all changes in this revision

Viewing changes to tests/test_tree1_wrong3.dts

  • Committer: Package Import Robot
  • Author(s): Hector Oron
  • Date: 2011-11-22 12:23:38 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20111122122338-ljbxy6a31fqztakc
Tags: 1.3.0-1
* New upstream release. (Closes: #572945)
* New maintainer. (Closes: #649290)
* New VCS repository.
* Update homepage stanza (Closes: #497605)
* Update standards version.
* Compile with -fPIC. Fixes ftbfs on amd64.
* Use dpkg 1.0 format.
* Backport upstream fixes as patches until 2011-10-26.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/dts-v1/;
 
2
 
 
3
/memreserve/ 0xdeadbeef00000000 0x100000;
 
4
/memreserve/ 123456789 010000;
 
5
 
 
6
/ {
 
7
        compatible = "test_tree1";
 
8
        prop-int = <0xdeadbeef>;
 
9
        prop-str = "hello world";
 
10
 
 
11
        subnode@1 {
 
12
                compatible = "subnode1";
 
13
 
 
14
                subsubnode {
 
15
                        compatible = "subsubnode1", "subsubnode";
 
16
                        prop-int = <0xdeadbeef>;
 
17
                };
 
18
 
 
19
                ss1 {
 
20
                };
 
21
        };
 
22
 
 
23
        subnode@2 {
 
24
                linux,phandle = <0x2000>;
 
25
                prop-int = <123456789>;
 
26
 
 
27
                subsubnode@0 {
 
28
                        phandle = <0x2001>;
 
29
                        compatible = "subsubnode2", "subsubnode";
 
30
                        prop-int = <0726746425>;
 
31
                };
 
32
 
 
33
                ss2 {
 
34
                };
 
35
        };
 
36
};