Skip to content

Commit e576b87

Browse files
committed
doc: nrf: app_dev: bootloaders_dfu: mcuboot_nsib: Fix Kconfigs
Fixes using the wrong Kconfigs, that do not exist Signed-off-by: Jamie McCrae <[email protected]>
1 parent f0b41c0 commit e576b87

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

doc/nrf/app_dev/bootloaders_dfu/mcuboot_nsib/bootloader_main_config.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ The choice of mode determines the specific scheme of the bootloader's operations
4848
* - Swap using move
4949
- Executes a dual-bank image swapping algorithm by moving sectors, offering greater efficiency than scratch-based swaps, suitable only for memories with consistent erase block sizes.
5050
- ``CONFIG_BOOT_SWAP_USING_MOVE``
51-
- :kconfig:option:`SB_CONFIG_BOOT_SWAP_USING_MOVE`
51+
- :kconfig:option:`SB_CONFIG_MCUBOOT_MODE_SWAP_USING_MOVE`
5252
- Yes
5353
* - Swap using offset
5454
- Introduces a new dual-bank image swapping algorithm that moves sectors with optimizations for enhanced speed, applicable to memories with uniform erase block sizes.
@@ -58,26 +58,26 @@ The choice of mode determines the specific scheme of the bootloader's operations
5858
* - Overwrite
5959
- Employs a straightforward dual-bank image overwrite algorithm that directly replaces the image.
6060
- ``CONFIG_BOOT_UPGRADE_ONLY``
61-
- :kconfig:option:`SB_CONFIG_BOOT_UPGRADE_ONLY`
61+
- :kconfig:option:`SB_CONFIG_MCUBOOT_MODE_OVERWRITE_ONLY`
6262
- Yes
6363
* - Direct-XIP
6464
- Facilitates dual-bank image execution directly from storage, updating by uploading a new image to an alternate bank, eliminating the need for swapping or overwriting NVM.
6565
- ``CONFIG_BOOT_DIRECT_XIP``
66-
- :kconfig:option:`SB_CONFIG_BOOT_DIRECT_XIP`
66+
- :kconfig:option:`SB_CONFIG_MCUBOOT_MODE_DIRECT_XIP`
6767
- Yes
6868
* - Direct-XIP with revert
6969
- Enables dual-bank image execution directly from storage with additional support for reverting to a previous image if necessary, enhancing system reliability.
70-
- ``CONFIG_MCUBOOT_MODE_DIRECT_XIP_WITH_REVERT``
70+
- ``CONFIG_BOOT_DIRECT_XIP`` and ``CONFIG_BOOT_DIRECT_XIP_REVERT``
7171
- :kconfig:option:`SB_CONFIG_MCUBOOT_MODE_DIRECT_XIP_WITH_REVERT`
7272
- Yes
7373
* - Firmware loader
7474
- Provides a dual-bank image firmware loading mode that allows dynamic selection of the image bank for booting the application, accommodating banks of different sizes.
75-
- ``SB_CONFIG_MCUBOOT_MODE_FIRMWARE_LOADER``
75+
- ``CONFIG_BOOT_FIRMWARE_LOADER``
7676
- :kconfig:option:`SB_CONFIG_MCUBOOT_MODE_FIRMWARE_UPDATER`
7777
- No
7878
* - Single application
7979
- Supports a single application image mode, utilized when only one application image is necessary and dual-bank operations are not required.
80-
- ``CONFIG_MCUBOOT_MODE_SINGLE_APP``
80+
- ``CONFIG_SINGLE_APPLICATION_SLOT``
8181
- :kconfig:option:`SB_CONFIG_MCUBOOT_MODE_SINGLE_APP`
8282
- No
8383

0 commit comments

Comments
 (0)