I'm trying to add a static partition that lies between the mcuboot and mcuboot_pad/app ones, but even though my solution builds correctly, mcuboot is stuck in a loop. This is how my static partition yaml looks like:
mcuboot: address: 0x0 region: flash_primary size: 0x10000 my_partition: address: 0x10000 region: flash_primary size: 0x200 mcuboot_pad: address: 0x10200 region: flash_primary size: 0x800 app: address: 0x10A00 region: flash_primary size: 0x144600 mcuboot_primary: orig_span: &id001 - mcuboot_pad - app span: *id001 address: 0x10200 region: flash_primary size: 0x144600 mcuboot_primary_app: orig_span: &id002 - app span: *id002 address: 0x10A00 region: flash_primary size: 0x144600 settings_storage: address: 0x173000 region: flash_primary size: 0xa000
It seems like mcuboot is trying to jump to 'my_partition' instead of to 'mcuboot_pad'. I tried adding partition ids, but it didn't change. Can't find it in the documentation or similar examples. How do I achieve this using static partitions?
I'm configuring mcuboot via sysbuild, if that's important.