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
21		slot0_partition: partition@c000 {
22			label = "image-0";
23			reg = <0x0000C000 0x00069000>;
24		};
25
26		slot1_partition: partition@75000 {
27			label = "image-1";
28			reg = <0x00075000 0x00069000>;
29		};
30
31		slot2_partition: partition@DE000 {
32			label = "image-2";
33			reg = <0x000DE000 0x00069000>;
34		};
35
36		slot3_partition: partition@146000 {
37			label = "image-3";
38			reg = <0x00146000 0x00069000>;
39		};
40	};
41};
42