Hi,
I am using NRF Connect environment and would like to enable by program to use MCU Boot functionality with dual-imaging support and FOTA updates.
My Kconfig.sysbuild has the following flags enabled:
Hi,
I am using NRF Connect environment and would like to enable by program to use MCU Boot functionality with dual-imaging support and FOTA updates.
My Kconfig.sysbuild has the following flags enabled:
Hi Alex,
Kconfig.sysbuild is for defining custom KConfig symbols, not setting them.
To enable MCUBoot, you only need to do the following:
In your application directory, create a file named sysbuild.conf (this is where you configure sysbuild).
Add the following line to that file to enable MCUBoot:
SB_CONFIG_BOOTLOADER_MCUBOOT=y
Best regards,
Benjamin
Hi Alex,
Kconfig.sysbuild is for defining custom KConfig symbols, not setting them.
To enable MCUBoot, you only need to do the following:
In your application directory, create a file named sysbuild.conf (this is where you configure sysbuild).
Add the following line to that file to enable MCUBoot:
SB_CONFIG_BOOTLOADER_MCUBOOT=y
Best regards,
Benjamin
Thanks a lot, it worked!