forked from nrfconnect/sdk-nrf
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
partition_manager: support building images for nrf54l15_cpuflpr
Add case for cpuflpr_sram in PM_SRAM_(BASE|SIZE). This is needed because the dts files for cpuflpr deletes the cpuapp_sram and cpuapp_rram nodes Add pm.yml.vpr_launcher file Include a Kconfig "hack" that overwrites FLASH_BASE_ADDRESS and FLASH_SIZE to allow Partition Manager to use the whole RRAM instead of trying to put both the flpr firmware and the vpr_launcher into the flpr RRAM partition. Ref: NCSDK-27891 Signed-off-by: Øyvind Rønningstad <oyvind.ronningstad@nordicsemi.no>
- Loading branch information
1 parent
1e33eab
commit 024ed29
Showing
4 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#include <autoconf.h> | ||
|
||
vpr_launcher: | ||
placement: {before: app} | ||
size: CONFIG_PM_PARTITION_SIZE_VPR_LAUNCHER | ||
|
||
vpr_launcher_sram: | ||
region: sram_primary | ||
placement: {before: app} | ||
size: 0x28000 |