Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0+
0002 
0003 partitions {
0004         compatible = "fixed-partitions";
0005         #address-cells = <1>;
0006         #size-cells = <1>;
0007 
0008         u-boot@0 {
0009                 reg = <0x0 0xe0000>; // 896KB
0010                 label = "u-boot";
0011         };
0012 
0013         u-boot-env@e0000 {
0014                 reg = <0xe0000 0x20000>; // 128KB
0015                 label = "u-boot-env";
0016         };
0017 
0018         kernel@100000 {
0019                 reg = <0x100000 0x900000>; // 9MB
0020                 label = "kernel";
0021         };
0022 
0023         rofs@a00000 {
0024                 reg = <0xa00000 0x5600000>; // 86MB
0025                 label = "rofs";
0026         };
0027 
0028         rwfs@6000000 {
0029                 reg = <0x6000000 0x2000000>; // 32MB
0030                 label = "rwfs";
0031         };
0032 };