I want to implement FOTA Update for a nrf5340 based board by using nrfConnect SDK v2.9.0 with zephyr and mcuboot. The board has a MX25R6435F external flash (same as the nrf5340dk) which is powered by a LDO (3.3V). The nrf5340 is run in "High Voltage Mode" and powered by a Li-Ion battery. To read the external flash successfully the GPIO voltage of the nrf5340 has to be set to 3.3V by writing the UICR register.
This works as it should but a problem arises when I try to use the mcuboot bootloader with external flash configured (SB_CONFIG_PM_EXTERNAL_FLASH_MCUBOOT_SECONDARY=y). On boards that don't have the UICR configured correctly to 3.3V GPIO voltage, the bootloader won't be able to read the QSPI NOR flash and fail the boot process.
A solution would be to register a initialization function in mcuboot like:
SYS_INIT( earlyVREGHSet, PRE_KERNEL_1, CONFIG_KERNEL_INIT_PRIORITY_DEFAULT );
My question is if there is a way to handle this problem without changing the mcuboot source in the nrfConnectSDK as I wouldn't like to maintain a fork.
Thanks in advance!