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