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