1/*
2 * Copyright (c) 2019 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/* Flash partition table without support for Nordic nRF5 bootloader */
8
9&flash0 {
10	partitions {
11		compatible = "fixed-partitions";
12		#address-cells = <1>;
13		#size-cells = <1>;
14
15		/* The size of this partition ensures that MCUBoot can be built
16		 * with an RTT console, CDC ACM support, and w/o optimizations.
17		 */
18		boot_partition: partition@0 {
19			label = "mcuboot";
20			reg = <0x00000000 0x00012000>;
21		};
22
23		slot0_partition: partition@12000 {
24			label = "image-0";
25			reg = <0x00012000 0x00075000>;
26		};
27		slot1_partition: partition@87000 {
28			label = "image-1";
29			reg = <0x00087000 0x00075000>;
30		};
31		storage_partition: partition@fc000 {
32			label = "storage";
33			reg = <0x000fc000 0x00004000>;
34		};
35	};
36};
37