Skip to content

Commit

Permalink
suit: Remove unused memory ranges
Browse files Browse the repository at this point in the history
FLPR and PPR code partiotions ar not used in SUIT smp_transfer sample,
so their partitions should not be included inside UICRs.
Such partitions may open doors for potential vulnerabilities.

Ref: NCSDK-30017

Signed-off-by: Tomasz Chyrowicz <[email protected]>
  • Loading branch information
tomchy committed Nov 27, 2024
1 parent de0f3e7 commit 4c8412c
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,20 @@
cpuapp_recovery_partition: partition@e5000 {
reg = <0xe5000 DT_SIZE_K(72)>;
};

/* Delete PPR code partition */
/delete-node/ partition@e4000;
cpuppr_code_partition: partition@a5010 {
reg = < 0xa5010 0x10 >;
};

/* Delete FLPR code partition */
/delete-node/ partition@f4000;
cpuflpr_code_partition: partition@a5020 {
reg = < 0xa5020 0x10 >;
};
};

&cpurad_rx_partitions {
compatible = "nordic,owned-partitions", "fixed-partitions";
nordic,access = <NRF_OWNER_ID_RADIOCORE NRF_PERM_RXS>;
Expand Down

0 comments on commit 4c8412c

Please sign in to comment.