Unexpected warning message: partition_manager.cmake says I do not use pm_static.yml, even though it is there.

Hello,

I am using a nRF5340 with mcuboot and multiple customer-specific partitions.
I did not finish creating a separate board definition yet. Currently, we are using the nRF5340-DK board definition and remove development kit specific items while adding our components. Just for reference.
Concerning the partitions, I created pm_static.yml in out project's base directory (where src/, build/ and child_image/ directories also reside). The partition handling seemed to work in our main application.

When I perform a pristine build, I receive an error message, telling me that I would not use a static partition configuration (pm_static.yml). although it is there.

[{  "resource": "/c:/ncs/v2.5.2/nrf/cmake/partition_manager.cmake",
    "owner": "nrf-connect",
    "severity": 4,
    "message": "CMake Warning at C:/ncs/v2.5.2/nrf/cmake/partition_manager.cmake:79 (message):",
    "source": "cmake",
    "startLineNumber": 79,
    "startColumn": 1,
    "endLineNumber": 79,
    "endColumn": 2147483647
}]

...and if I double-click on the message, I see this piece of code in partition_manager.cmake:

if (NOT static_configuration AND
  (CONFIG_BOOTLOADER_MCUBOOT OR CONFIG_SECURE_BOOT))
      message(WARNING "
        ---------------------------------------------------------------------
        --- WARNING: Using a bootloader without pm_static.yml.            ---
        --- There are cases where a deployed product can consist of       ---
        --- multiple images, and only a subset of these images can be     ---
        --- upgraded through a firmware update mechanism. In such cases,  ---
        --- the upgradable images must have partitions that are static    ---
        --- and are matching the partition map used by the bootloader     ---
        --- programmed onto the device.                                   ---
        ---------------------------------------------------------------------
        \n"
      )
endif()

What went wrong here? Is my pm_static.yml applied successfully?

Best regards,
Michael

Parents
  • Hello Michael,

    What went wrong here? Is my pm_static.yml applied successfully?

    Interesting. I added this warning, so I would very much like to figure out why it is wrong.

    Could you add the following in partition_manager.cmake, just before the if()?

    message("PUT A LOT OF STUFF HERE SO WE EASILY CAN FIND THIS IN THE LOGS AAAAAAAAAAAAAAAAAAAAAAAAAAAA")
    message("Static configuration: ${static_configuration}")
    message("CONFIG_BOOTLOADER_MCUBOOT: ${CONFIG_BOOTLOADER_MCUBOOT}")
    message("CONFIG_SECURE_BOOT: ${CONFIG_SECURE_BOOT}")
    message("PUT A LOT OF STUFF HERE SO WE EASILY CAN FIND THIS IN THE LOGS AAAAAAAAAAAAAAAAAAAAAAAAAAAA")
    if (NOT static_configuration AND
    ...

    Regards,
    Sigurd Hellesvik

  • Hi Sigurd,

    sorry for the delay, I was very busy over the last weeks and just came back from a short holiday today.

    I also tried our your test code:

    === child image b0n - CPUNET (inherited) end ===
    
    CMake Warning at C:/ncs/v2.5.2/nrf/subsys/bootloader/cmake/debug_keys.cmake:36 (message):
      
    
          --------------------------------------------------------------
          --- WARNING: Using generated NSIB public/private key-pair. ---
          --- It should not be used for production.                  ---
          --- See CONFIG_SB_SIGNING_KEY_FILE                         ---
          --------------------------------------------------------------
          
    
    Call Stack (most recent call first):
      C:/ncs/v2.5.2/nrf/subsys/bootloader/cmake/provision_hex.cmake:47 (include)
      C:/ncs/v2.5.2/nrf/subsys/CMakeLists.txt:20 (include)
    
    
    -- libmetal version: 1.4.0 (C:/ncs/v2.5.2/zephyr/samples/bluetooth/hci_rpmsg)
    -- Build type:  
    -- Host:    Windows/AMD64
    -- Target:  Generic/arm
    -- Machine: arm
    -- Looking for include file stdatomic.h
    -- Looking for include file stdatomic.h - found
    -- Host:    Windows/AMD64
    -- Target:  Generic/arm
    -- Machine: arm
    -- C_FLAGS :  -Wall -Wextra
    -- open-amp version: 1.4.0 (C:/ncs/v2.5.2/modules/lib/open-amp/open-amp)
    -- Looking for include file fcntl.h
    -- Looking for include file fcntl.h - found
    PUT A LOT OF STUFF HERE SO WE EASILY CAN FIND THIS IN THE LOGS AAAAAAAAAAAAAAAAAAAAAAAAAAAA
    Static configuration: 
    CONFIG_BOOTLOADER_MCUBOOT: 
    CONFIG_SECURE_BOOT: y
    PUT A LOT OF STUFF HERE SO WE EASILY CAN FIND THIS IN THE LOGS AAAAAAAAAAAAAAAAAAAAAAAAAAAA
    CMake Warning at C:/ncs/v2.5.2/nrf/cmake/partition_manager.cmake:84 (message):
      
    
              ---------------------------------------------------------------------
              --- WARNING: Using a bootloader without pm_static.yml.            ---
              --- There are cases where a deployed product can consist of       ---
              --- multiple images, and only a subset of these images can be     ---
              --- upgraded through a firmware update mechanism. In such cases,  ---
              --- the upgradable images must have partitions that are static    ---
              --- and are matching the partition map used by the bootloader     ---
              --- programmed onto the device.                                   ---
              ---------------------------------------------------------------------
              
    
    Call Stack (most recent call first):
      C:/ncs/v2.5.2/zephyr/cmake/modules/kernel.cmake:247 (include)
      C:/ncs/v2.5.2/zephyr/cmake/modules/zephyr_default.cmake:138 (include)
      C:/ncs/v2.5.2/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)
      C:/ncs/v2.5.2/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)
      CMakeLists.txt:5 (find_package)
    
    
    -- Configuring done
    -- Generating done
    -- Build files have been written to: C:/my_project_dir/build/hci_rpmsg
    === child image hci_rpmsg - CPUNET end ===
    
    -- Found Python3: C:/ncs/toolchains/c57af46cb7/opt/bin/python.exe (found version "3.8.2") found components: Interpreter 
    
    === child image mcuboot -  begin ===

    I wonder why secure boot is enabled in the debug output, and mcuboot is not enabled even though I use ist. I do not use TFM or non-secure code.

    This is my prj.conf:

    CONFIG_PRINTK=y
    CONFIG_ASSERT=y
    CONFIG_GPIO=y
    CONFIG_ZERO_LATENCY_IRQS=y
    
    CONFIG_FLASH=y
    CONFIG_FLASH_PAGE_LAYOUT=y
    CONFIG_MPU_ALLOW_FLASH_WRITE=y
    
    CONFIG_USB_DEVICE_STACK=y
    CONFIG_USB_DEVICE_PRODUCT="My Product"
    CONFIG_USB_DEVICE_MANUFACTURER="My Company"
    CONFIG_USB_DEVICE_SN="unknown"
    #CONFIG_USB_DEVICE_VID=0x2FE3
    CONFIG_USB_DEVICE_PID=0x0004
    CONFIG_USB_DEVICE_INITIALIZE_AT_BOOT=y
    
    CONFIG_SERIAL=y
    CONFIG_CONSOLE=y
    CONFIG_UART_CONSOLE=y
    CONFIG_UART_LINE_CTRL=y
    CONFIG_UART_INTERRUPT_DRIVEN=y
    
    CONFIG_BT=y
    CONFIG_BT_PERIPHERAL=y
    CONFIG_BT_DEVICE_NAME="My Device"
    CONFIG_BT_HCI=y
    
    CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=2048
    
    CONFIG_BOOTLOADER_MCUBOOT=y
    CONFIG_BUILD_WITH_TFM=n
    
    CONFIG_MCUMGR=y
    CONFIG_MCUMGR_GRP_OS=y
    CONFIG_MCUMGR_GRP_IMG=y
    CONFIG_MCUMGR_TRANSPORT_UART=y
    
    # Configure dependencies for mcumgr
    CONFIG_NET_BUF=y
    CONFIG_ZCBOR=y
    CONFIG_FLASH=y
    CONFIG_IMG_MANAGER=y
    CONFIG_STREAM_FLASH=y
    CONFIG_FLASH_MAP=y
    CONFIG_BASE64=y
    

    Best regards,

    Michael

  • Sigurd,

    I have been working through this warning, and your suggestion of copying the file from build/hci_rpmsg/partitions_CPUNET.yml to ncs/zephyr/samples/bluetooth/hci_rpmsg/pm_static.yml does resolve the warning.

    I am using external flash and am curious as to what you were planning on explaining above.

    Thank you.

  • It is 4 months since I wrote that, so unfortunately I can no longer remember what my point was

  • Hi, let me summarize how I resolved the issue on my side:

    1. SDK v2.5.3 via multi-image build

    The only solution was to put a pm_static.yml file directly into the net core sample's directory (e.g. C:\ncs\v2.5.3\zephyr\samples\bluetooth\hci_rpmsg\pm_static.yml). This is kind of dirty because the static partitioning will be used by all projects compiled on this computer. Further, there is a risk if someone else pulls the project from the repository and forgets to update their SDK directory with the pm_static-yml, the code will link to the wrong location.

    2. SDK v2.9.0 via sysbuild

    Create the following line(s) in sysbuild.cmake in your project directory. It will use pm_static_NETCORE in your project directory as the net core's static partitioning file.

    set(hci_ipc_PM_STATIC_YML_FILE ${APPLICATION_CONFIG_DIR}/pm_static_CPUNET.yml CACHE INTERNAL "" FORCE)
    message(STATUS "sysbuild.cmake - hci_ipc_PM_STATIC_YML_FILE: ${hci_ipc_PM_STATIC_YML_FILE}")

    Further, there is a bug in the SDK that must be fixed for the lines mentioned above to work as expected: Go to C:\ncs\v2.9.0\nrf\cmake\sysbuild\partition_manager.cmake, line 126, and comment out the following instruction with a hashtag:

    #set(static_configuration)

    So there is still a bug in the SDK that would come with some risk in multi-developer teams and for filed projects, but the fix is not application-specific anymore (you can use the same fix with multiple projects that use different net core partitioning). I hope it will be included in the SDK soon. Please mind that it is not included in recend SDK v2.9.1 yet!

    Net core update problems on SDK v2.9.0 via sysbuild

    You may also want to check out my other ticket here which describes a bug in mcuboot when trying to update the net core with SDK v2.9.0 (and most likely 2.9.1).

    Good luck with your projects!
    Michael

  • Hi,

    I have tried the solution for NCS 2.9.0, but it doesn’t seem to be working.

    I created the sysbuild.cmake file and the pm_static_CPUNET.yml inside my project directory (at the same level as prj.conf, CMakeLists.txt, etc.).
    I commented out line 126 in cmake/sysbuild/partition_manager.cmake.

    When doing a pristine build, I can see the status message showing the correct pm_static_CPUNET.yml file location

    -- sysbuild.cmake - hci_ipc_PM_STATIC_YML_FILE: /Users/.../pm_static_CPUNET.yml

    However, if I modify the sectors inside the pm_static_CPUNET.yml, it has no effect.
    (= the partition_manager_report is same as without the changes)

    Best regards,
    Milan

  • Hi, do you use the hci_ipc module for the NET core? Or hci_radio? With the latter, you might have to change the target name in the sysbuild.cmake definition.

    I think this concept is still a bit instransparent... you don't set the static partitioning for the core itself (or for sysbuild), but for the main application running on the core. Which is then forwarded to the linker.

    Best regards,
    Michael

Reply
  • Hi, do you use the hci_ipc module for the NET core? Or hci_radio? With the latter, you might have to change the target name in the sysbuild.cmake definition.

    I think this concept is still a bit instransparent... you don't set the static partitioning for the core itself (or for sysbuild), but for the main application running on the core. Which is then forwarded to the linker.

    Best regards,
    Michael

Children
  • Hi Michael,

    We do have IPC Radio, so changing the name in sysbuild.cmake to "ipc_radio_PM_STATIC_YML_FILE" did the trick.

    Interestingly, it doesn’t seem to include the app image region.
    When using the appcore pm_static, I get this output — and it looks legit:


    But for the netcore, the partition related to the app (ipc_radio) is missing.
    Additionally, there’s a warning message:


    Best Regards,
    Milan

  • Hi Milan,

    if I remember correctly, the first screenshot is normal output and I have something similar, too - it just tells you that the partitions are statically defined and the system doesn't try to place them arbitrarily.

    I checked and I have the second screenshot's warning message, too... probably the build system overwrites some arbitrarily generated partitioning file with the configured static partitioning file. At least you can check in the build directory which partition offsets/sizes were actually used in the build.

    Best regards,
    Michael

  • Hi,

    Yes, the first screenshot is correct — the point is that the second screenshot (cpunet) is missing any information about the app_image.

    I would expect to see something like:

    “Partition ‘app_image’ is not included.”

    Currently, if I modify the app memory region in pm_static_CPUNET.yml, the change has no effect.
    However, if I modify the b0n memory region, the change is reflected (e.g., memory overflow errors, etc.).

    Thank you.
    Best Regards,
    Milan

  • Hi, if I remember correctly, the app region is used as a placeholder to place the main application or so... maybe this could be the reason? Please check in the Nordic Academy courses about partitions. Unfortunately, I can't help you with this, as I'm still struggling with some aspects of the build system myself.

    I would suggest to automatically create a net core partitioning file and use it as basis for your pm_static_NETCORE.yml. In this file, there should be a partition for ipc_radio or so which you could move (togther with the app partition... it is a bit confusing with overlapping partition names).

    Best regards,
    Michael

  • Hi Michael,

    Yes, the pm_static_CPUNET file is taken over from the dynamic build, and has correct definitions.

    The point is, since the netcore contains both B0n and the app, the solution you provided works only for the B0n partition on the netcore, but not for the app partition.

    That’s why the second screenshot shows only:
    Partition 'b0n' is not included in the dynamic resolving since it is statically defined.
    Partition 'b0n_container' is not included in the dynamic resolving since it is statically defined.
    Partition 'provision' is not included in the dynamic resolving since it is statically defined.

    But it’s missing:
    Partition 'app_image' is not included in the dynamic resolving since it is statically defined.

    (which is visible in the first screenshot, as the pm_static for the APPCore works correctly).

    => the app region from pm_static_CPUNET.yml is not taken into account — only the b0n region is.

    Sure, no problem.

    Thank you.
    BR.
    Milan

Related