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 0x00069000>;
26		};
27		slot1_partition: partition@7b000 {
28			label = "image-1";
29			reg = <0x0007b000 0x00069000>;
30		};
31		scratch_partition: partition@e4000 {
32			label = "image-scratch";
33			reg = <0x000e4000 0x00018000>;
34		};
35		storage_partition: partition@fc000 {
36			label = "storage";
37			reg = <0x000fc000 0x00004000>;
38		};
39	};
40};
41