Retrieve MCUBoot version from main application

Hi,

I'm trying to retrieve the MCUBoot version inside my application (from the VERSION file).

In the Zephyr documentation (docs.zephyrproject.org/.../index.html), I found that I can access app_version.h (located in /app/build/app/zephyr/include/generated/app_version.h).

A similar file exists in the MCUBoot build folder (/app/build/mcuboot/zephyr/include/generated/app_version.h).

I'm facing two problems:
1) I can't find a way to include the MCUBoot app_version.h file in my code.
2) Assuming I can include it, it uses the same macro names as the application. In my code, I need to use both the application version and the MCUBoot version. How can I modify the macro names generated for MCUBoot to avoid conflicts?

thanks

Parents Reply
  • Hi Sigurd, i'm Eyal, the TL of Udi who opened the ticket.
    The "running sequence number" is indeed something we will use for FOTA, but still we want to be able to send the version number of the mcu boot. the version number is not the sequence number that we decide on in the  CONFIG_FW_INFO_FIRMWARE_VERSION we set ourselves but the VERSION file that resides in the mcuboot repo.
    The way zephyr works, that file is integrated into the mcuboot binary (s1\s0 if build or just s0 if not dual boot).
    We cannot find that data in the binary, we are asking why and where can we find it cause not finding it means something is wrong.
    Please refer to the question and not the scenario.

    Thanks,

    Eyal.

Children
  • MCUboot and the application has no method (other than FW_INFO) to communicate with each other.
    As far as I know, MCUboot version is just complied as part of the project. Therefore it is not stored anywhere specifically, I think.

    I think the best way to read the version from the application will be to change MCUboot to write its value to a specific place in memory when the version changes.
    Then you can read it from that part of flash from the application

Related