Skip to content

Commit

Permalink
[nrf noup] boot/zephyr/boards: nrf54l15pdk ext-flash partition
Browse files Browse the repository at this point in the history
Added DTS with partitioning which involves external flash
as place for slo1_partition.

Signed-off-by: Andrzej Puzdrowski <[email protected]>
(cherry picked from commit efe6681)
  • Loading branch information
nvlsianpu authored and anangl committed Jun 28, 2024
1 parent b305c3d commit 826a407
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions boot/zephyr/boards/nrf54l15pdk_nrf54l15_cpuapp_ext_flash.overlay
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,42 @@
};
};

/delete-node/ &boot_partition;
/delete-node/ &slot0_partition;
/delete-node/ &slot1_partition;

/delete-node/ &slot0_ns_partition;
/delete-node/ &slot1_ns_partition;

/delete-node/ &storage_partition;

&rram0 {
partitions {
boot_partition: partition@0 {
label = "mcuboot";
reg = <0x000000000 0x00014000>;
};
slot0_partition: partition@14000 {
label = "image-0";
reg = <0x000014000 0x0015A000>;
};
storage_partition: partition@16E000 {
label = "storage";
reg = < 0x16E000 0x9000 >;
};
};
};

&mx25r64 {
status = "okay";
partitions {
compatible = "fixed-partitions";
#address-cells = <1>;
#size-cells = <1>;

slot1_partition: partition@0 {
label = "image-1";
reg = <0x000000000 0x0015A000>;
};
};
};

0 comments on commit 826a407

Please sign in to comment.