OS: Windows 10
NCS: 2.0.0
In a single image setup (no DFU) NVS (https://developer.nordicsemi.com/nRF_Connect_SDK/doc/2.0.0/zephyr/samples/subsys/nvs/README.html) uses the device tree storage_partition in the device tree file.
That is working perfectly to store some gazell parameters.
Now we are moving to a BLE DFU multi-image setup. The partition manager
takes control of the flash partitioning and ignores the device tree mapping. I have added the \child_image\mcuboot\boards\nrf52833dk_nrf52833.conf
to my project (see attached) for the child image.
west build -t partition_manager_report
+-----------------------------------------------------------------------+
| 0x0: mcuboot (0x6000 - 24kB) |
+---0x6000: mcuboot_primary (0x3a000 - 232kB)-------+
| 0x6000: mcuboot_pad (0x200 - 512B) |
+---0x6200: mcuboot_primary_app (0x39e00 - 231kB)-+
| 0x6200: app (0x39e00 - 231kB) |
+-----------------------------------------------------------------------+
| 0x40000: mcuboot_secondary (0x3a000 - 232kB) |
| 0x7a000: nvs_storage (0x6000 - 24kB) |
+-----------------------------------------------------------------------+
We only need about 512 bytes of nvs_storage and I want to free up more space for the application.
How do I change the nvs_storage size?