blob: 094a7a45a41c7357c297ef94da6056c937362cb5 [file] [log] [blame]
Andrzej Puzdrowski3f092bd2020-02-17 13:25:32 +01001/*
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 compatible = "fixed-partitions";
14 #address-cells = <1>;
15 #size-cells = <1>;
16
17 boot_partition: partition@0 {
18 label = "mcuboot";
19 reg = <0x000000000 0x00010000>;
20 };
21 slot0_partition: partition@10000 {
22 label = "image-0";
23 reg = <0x000010000 0x000074000>;
24 };
25 slot1_partition: partition@75000 {
26 label = "image-1";
27 reg = <0x00084000 0x000074000>;
28 };
29 };
30};