The scratch partition is not needed since MCUboot now operates in swap using move mode instead of swap with scratch, as a result, the main partitions on Nordic nRF51, nRF52, nRF53 and nRF91 boards can be expanded to help in fitting large applications to them. Signed-off-by: Jamie McCrae <jamie.mccrae@nordicsemi.no>
22 lines
374 B
Text
22 lines
374 B
Text
/*
|
|
* Copyright (c) 2018 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/delete-node/ &storage_partition;
|
|
/delete-node/ &slot1_partition;
|
|
|
|
&flash0 {
|
|
|
|
partitions {
|
|
compatible = "fixed-partitions";
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
storage_partition: partition@70000 {
|
|
label = "storage";
|
|
reg = <0x00070000 0x10000>;
|
|
};
|
|
};
|
|
};
|