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 0x60000>;
0010                 label = "u-boot";
0011         };
0012 
0013         u-boot-env@60000 {
0014                 reg = <0x60000 0x20000>;
0015                 label = "u-boot-env";
0016         };
0017 
0018         kernel@80000 {
0019                 reg = <0x80000 0x440000>;
0020                 label = "kernel";
0021         };
0022 
0023         rofs@4c0000 {
0024                 reg = <0x4c0000 0x1740000>;
0025                 label = "rofs";
0026         };
0027 
0028         rwfs@1c00000 {
0029                 reg = <0x1c00000 0x400000>;
0030                 label = "rwfs";
0031         };
0032 };