Andrzej Puzdrowski | 03d96ad | 2020-09-15 13:15:02 +0200 | [diff] [blame] | 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 | 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 0x0000E8000>; |
| 24 | }; |
| 25 | }; |
| 26 | }; |