Hi,
How do you add a version number to the image header when it's being signed?
I can only find this config
CONFIG_MCUBOOT_IMAGE_VERSIONwhich seems to have been removed in release 2.5.0.
Br,
Kuno
Hi,
How do you add a version number to the image header when it's being signed?
I can only find this config
CONFIG_MCUBOOT_IMAGE_VERSIONwhich seems to have been removed in release 2.5.0.
Br,
Kuno
Hi,
Application version is set in a different way in nRF Connect SDK 2.5.0 and later. According to the migration guides for nRF Connect SDK 2.5.0:
Applications using MCUboot must update to setting their version using an application VERSION file instead of the previously used CONFIG_MCUBOOT_IMAGE_VERSION
Kconfig option. Alternatively, you can set the version in Kconfig by using the CONFIG_MCUBOOT_IMGTOOL_SIGN_VERSION
option, but using a VERSION
file is the recommended approach.
Regards,
Terje
Thank you!