Skip to content

Commit 17f6d04

Browse files
nvlsianpumbolivar-nordic
authored andcommitted
[nrf noup] loader: fixed the check of reset address for the net app
The primary slot for the network core is emulated in RAM. Its flash_area hasn't got relevant boundaries. Therefore need to override its boundaries for the check. ref. NCSDK-13532 Signed-off-by: Andrzej Puzdrowski <andrzej.puzdrowski@nordicsemi.no> (cherry picked from commit caf6999)
1 parent 9286609 commit 17f6d04

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

boot/bootutil/src/loader.c

+18-1
Original file line numberDiff line numberDiff line change
@@ -804,7 +804,24 @@ boot_validate_slot(struct boot_loader_state *state, int slot,
804804
goto out;
805805
}
806806

807-
if (reset_value < pri_fa->fa_off || reset_value> (pri_fa->fa_off + pri_fa->fa_size)) {
807+
uint32_t min_addr, max_addr;
808+
809+
#ifdef PM_CPUNET_APP_ADDRESS
810+
/* The primary slot for the network core is emulated in RAM.
811+
* Its flash_area hasn't got relevant boundaries.
812+
* Therfore need to override its boundaries for the check.
813+
*/
814+
if (BOOT_CURR_IMG(state) == 1) {
815+
min_addr = PM_CPUNET_APP_ADDRESS;
816+
max_addr = PM_CPUNET_APP_ADDRESS + PM_CPUNET_APP_SIZE;
817+
} else
818+
#endif
819+
{
820+
min_addr = pri_fa->fa_off;
821+
max_addr = pri_fa->fa_off + pri_fa->fa_size;
822+
}
823+
824+
if (reset_value < min_addr || reset_value> (max_addr)) {
808825
BOOT_LOG_ERR("Reset address of image in secondary slot is not in the primary slot");
809826
BOOT_LOG_ERR("Erasing image from secondary slot");
810827

0 commit comments

Comments
 (0)