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