35 lines
674 B
Devicetree
Executable File
35 lines
674 B
Devicetree
Executable File
/*
|
|
* Copyright (c) 2019 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/* Flash partition table without support for Nordic nRF5 bootloader */
|
|
|
|
&flash0 {
|
|
partitions {
|
|
compatible = "fixed-partitions";
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
|
|
boot_partition: partition@0 {
|
|
label = "mcuboot";
|
|
reg = <0x00000000 0x00014000>;
|
|
};
|
|
|
|
slot0_partition: partition@14000 {
|
|
label = "image-0";
|
|
reg = <0x00014000 0x00074000>;
|
|
};
|
|
slot1_partition: partition@88000 {
|
|
label = "image-1";
|
|
reg = <0x00088000 0x00074000>;
|
|
};
|
|
storage_partition: partition@fc000 {
|
|
label = "storage";
|
|
reg = <0x000fc000 0x00004000>;
|
|
};
|
|
};
|
|
};
|