1/*
2 * Copyright (c) 2020 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/delete-node/ &scratch_partition;
8/delete-node/ &storage_partition;
9
10&flash0 {
11	partitions {
12		compatible = "fixed-partitions";
13		#address-cells = <1>;
14		#size-cells = <1>;
15
16		boot_partition: partition@0 {
17			label = "mcuboot";
18			reg = <0x00000000 0x0000C000>;
19		};
20		slot0_partition: partition@c000 {
21			label = "image-0";
22			reg = <0x0000C000 0x00069000>;
23		};
24		slot1_partition: partition@75000 {
25			label = "image-1";
26			reg = <0x00075000 0x00069000>;
27		};
28		slot2_partition: partition@DE000 {
29			label = "image-2";
30			reg = <0x000DE000 0x00069000>;
31		};
32		slot3_partition: partition@146000 {
33			label = "image-3";
34			reg = <0x00146000 0x00069000>;
35		};
36	};
37};
38