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