1*f126890aSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0+ 2*f126890aSEmmanuel Vadot 3*f126890aSEmmanuel Vadotpartitions { 4*f126890aSEmmanuel Vadot compatible = "fixed-partitions"; 5*f126890aSEmmanuel Vadot #address-cells = <1>; 6*f126890aSEmmanuel Vadot #size-cells = <1>; 7*f126890aSEmmanuel Vadot 8*f126890aSEmmanuel Vadot u-boot@0 { 9*f126890aSEmmanuel Vadot reg = <0x0 0x60000>; 10*f126890aSEmmanuel Vadot label = "u-boot"; 11*f126890aSEmmanuel Vadot }; 12*f126890aSEmmanuel Vadot 13*f126890aSEmmanuel Vadot u-boot-env@60000 { 14*f126890aSEmmanuel Vadot reg = <0x60000 0x20000>; 15*f126890aSEmmanuel Vadot label = "u-boot-env"; 16*f126890aSEmmanuel Vadot }; 17*f126890aSEmmanuel Vadot 18*f126890aSEmmanuel Vadot kernel@80000 { 19*f126890aSEmmanuel Vadot reg = <0x80000 0x440000>; 20*f126890aSEmmanuel Vadot label = "kernel"; 21*f126890aSEmmanuel Vadot }; 22*f126890aSEmmanuel Vadot 23*f126890aSEmmanuel Vadot rofs@4c0000 { 24*f126890aSEmmanuel Vadot reg = <0x4c0000 0x1740000>; 25*f126890aSEmmanuel Vadot label = "rofs"; 26*f126890aSEmmanuel Vadot }; 27*f126890aSEmmanuel Vadot 28*f126890aSEmmanuel Vadot rwfs@1c00000 { 29*f126890aSEmmanuel Vadot reg = <0x1c00000 0x400000>; 30*f126890aSEmmanuel Vadot label = "rwfs"; 31*f126890aSEmmanuel Vadot }; 32*f126890aSEmmanuel Vadot}; 33