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