File tree Expand file tree Collapse file tree 1 file changed +5
-13
lines changed
modules/mcuboot/boot/zephyr Expand file tree Collapse file tree 1 file changed +5
-13
lines changed Original file line number Diff line number Diff line change @@ -25,20 +25,12 @@ source "${ZEPHYR_BASE}/../nrf/subsys/partition_manager/Kconfig.template.partitio
25
25
endif
26
26
27
27
config PM_PARTITION_SIZE_MCUBOOT
28
- hex
29
- default 0x3e00
30
- depends on (BOOT_NRF_EXTERNAL_CRYPTO && BOOT_USE_MIN_PARTITION_SIZE)
31
-
32
- config PM_PARTITION_SIZE_MCUBOOT
33
- hex
34
- default FPROTECT_BLOCK_SIZE if SOC_SERIES_NRF91X || SOC_NRF5340_CPUAPP
35
- default 0x7c00
36
- depends on BOOT_USE_MIN_PARTITION_SIZE && !BOOT_NRF_EXTERNAL_CRYPTO
37
-
38
- config PM_PARTITION_SIZE_MCUBOOT
39
- hex "Flash space allocated for the MCUboot partition" if !BOOT_USE_MIN_PARTITION_SIZE
40
- default 0xd800 if SOC_SERIES_NRF54LX && BOOT_SIGNATURE_TYPE_ED25519 && !BOOT_SIGNATURE_USING_KMU
28
+ hex "Flash space allocated for the MCUboot partition"
29
+ default 0x3e00 if (BOOT_USE_MIN_PARTITION_SIZE && BOOT_NRF_EXTERNAL_CRYPTO)
30
+ default FPROTECT_BLOCK_SIZE if (BOOT_USE_MIN_PARTITION_SIZE && !BOOT_NRF_EXTERNAL_CRYPTO) && (SOC_SERIES_NRF91X || SOC_NRF5340_CPUAPP)
31
+ default 0x8800 if (BOOT_USE_MIN_PARTITION_SIZE && !BOOT_NRF_EXTERNAL_CRYPTO) && SOC_SERIES_NRF54LX
41
32
default 0x7c00 if (BOOT_USE_MIN_PARTITION_SIZE && !BOOT_NRF_EXTERNAL_CRYPTO)
33
+ default 0xd800 if SOC_SERIES_NRF54LX && BOOT_SIGNATURE_TYPE_ED25519 && !BOOT_SIGNATURE_USING_KMU
42
34
default 0xb800 if MCUBOOT_MCUBOOT_IMAGE_NUMBER != -1 && SOC_SERIES_NRF54LX
43
35
default 0xbe00 if MCUBOOT_MCUBOOT_IMAGE_NUMBER != -1 && !SOC_SERIES_NRF54LX
44
36
default 0xc000
You can’t perform that action at this time.
0 commit comments