Skip to content

Commit 35ab6b8

Browse files
[nrfconnect] Fixed mcuboot default configuration
Removed the defaults from Kconfig.mcuboot.defaults configuration that should not be set there: * BOOT_ENCRYPT_X - are configs without a prompt, so it should not be modified outside of the mcuboot module * SPI_NOR and NORDIC_QSPI_NOR - are set based on the device tree configuration, so we should not set it, as it may lead to configuration and dts mismatch. Signed-off-by: Kamil Kasperczyk <kamil.kasperczyk@nordicsemi.no>
1 parent b602aa6 commit 35ab6b8

File tree

4 files changed

+7
-24
lines changed

4 files changed

+7
-24
lines changed

config/nrfconnect/chip-module/Kconfig.defaults

+4-4
Original file line numberDiff line numberDiff line change
@@ -322,13 +322,13 @@ if PSA_CRYPTO_DRIVER_CC3XX && PSA_CRYPTO_DRIVER_OBERON
322322
config PSA_USE_CC3XX_HASH_DRIVER
323323
default n
324324

325-
endif
325+
endif # PSA_CRYPTO_DRIVER_CC3XX && PSA_CRYPTO_DRIVER_OBERON
326326

327327
# Spake2+ support
328328
config MBEDTLS_MD_C
329329
default y
330330

331-
endif
331+
endif # CHIP_CRYPTO_PSA
332332

333333
if !CHIP_CRYPTO_PSA
334334

@@ -371,7 +371,7 @@ config MBEDTLS_ECP_C
371371
config MBEDTLS_ECP_DP_SECP256R1_ENABLED
372372
default y
373373

374-
endif
374+
endif # !CHIP_CRYPTO_PSA
375375

376376
config MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG
377377
default n if CHIP_WIFI
@@ -491,4 +491,4 @@ config OPENTHREAD_SHELL
491491

492492
endif # SHELL
493493

494-
endif
494+
endif # CHIP

config/nrfconnect/chip-module/Kconfig.features

+1-3
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,13 @@ config CHIP_WIFI
4242

4343
config CHIP_QSPI_NOR
4444
bool "Enable QSPI NOR feature set"
45+
imply NORDIC_QSPI_NOR
4546
help
4647
Enables QSPI NOR flash with a set of options for configuring pages and
4748
buffer sizes.
4849

4950
if CHIP_QSPI_NOR
5051

51-
config NORDIC_QSPI_NOR
52-
default y
53-
5452
config NORDIC_QSPI_NOR_STACK_WRITE_BUFFER_SIZE
5553
default 16
5654

config/nrfconnect/chip-module/Kconfig.mcuboot.defaults

+1-16
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,7 @@
1919
config MAIN_STACK_SIZE
2020
default 10240
2121

22-
config BOOT_SWAP_SAVE_ENCTLV
23-
default n
24-
25-
config BOOT_ENCRYPT_RSA
26-
default n
27-
28-
config BOOT_ENCRYPT_EC256
29-
default n
30-
31-
config BOOT_ENCRYPT_X25519
22+
config BOOT_ENCRYPT_IMAGE
3223
default n
3324

3425
config BOOT_BOOTSTRAP
@@ -53,9 +44,6 @@ if BOARD_NRF7002DK_NRF5340_CPUAPP
5344
config SPI
5445
default y
5546

56-
config SPI_NOR
57-
default y
58-
5947
choice SPI_NOR_SFDP
6048
default SPI_NOR_SFDP_DEVICETREE
6149
endchoice
@@ -74,9 +62,6 @@ endif
7462
# All boards beside nRF7002DK use QSPI NOR external flash
7563
if BOARD_NRF5340DK_NRF5340_CPUAPP || BOARD_NRF52840DK_NRF52840
7664

77-
config NORDIC_QSPI_NOR
78-
default y
79-
8065
config NORDIC_QSPI_NOR_FLASH_LAYOUT_PAGE_SIZE
8166
default 4096
8267

src/platform/Zephyr/ConfigurationManagerImpl.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242

4343
#ifdef CONFIG_NET_L2_OPENTHREAD
4444
#include <platform/ThreadStackManager.h>
45-
#endif
45+
#endif
4646

4747
namespace chip {
4848
namespace DeviceLayer {

0 commit comments

Comments
 (0)