source: rtems/testsuites/libtests/libfdt01/some.dts @ 175263e

5
Last change on this file since 175263e was 175263e, checked in by Sebastian Huber <sebastian.huber@…>, on 10/15/15 at 09:38:03

libfdt: Initial import

Import from:

git://git.kernel.org/pub/scm/utils/dtc/dtc.git

Commit:

604e61e081e3c6c8fa1a8189c71cb3908a5bbc1e

Date:

2015-09-29T09:09:08Z

  • Property mode set to 100644
File size: 651 bytes
Line 
1/*
2 * Copyright (c) 2015 embedded brains GmbH.  All rights reserved.
3 *
4 *  embedded brains GmbH
5 *  Dornierstr. 4
6 *  82178 Puchheim
7 *  Germany
8 *  <rtems@embedded-brains.de>
9 *
10 * The license and distribution terms for this file may be
11 * found in the file LICENSE in this distribution or at
12 * http://www.rtems.org/license/LICENSE.
13 */
14
15/dts-v1/;
16
17/ {
18        compatible = "a,b";
19        #address-cells = <1>;
20        #size-cells = <2>;
21        model = "c";
22
23        d {
24                e = "f";
25                g;
26
27                h@0 {
28                };
29
30                h@1 {
31                        w = <123>;
32                };
33        };
34
35        aliases {
36                k = "/m@1248";
37        };
38
39        l: m@1248 {
40                n = <0xdeadbeef 0x12345678>;
41
42                o {
43                        p;
44                };
45
46                q {
47                        r = "s";
48                };
49        };
50
51        t {
52                u = <&l>;
53        };
54};
Note: See TracBrowser for help on using the repository browser.