File tree 3 files changed +34
-0
lines changed
config/nrfconnect/chip-module
3 files changed +34
-0
lines changed Original file line number Diff line number Diff line change @@ -205,9 +205,18 @@ config CHIP_SPI_NOR
205
205
config BOOT_IMAGE_ACCESS_HOOKS
206
206
default y if SOC_SERIES_NRF53X
207
207
208
+ choice NRF_WIFI_PATCHES_EXT_FLASH_SUPPORT
209
+ default NRF_WIFI_PATCHES_EXT_FLASH_STORE if CHIP_WIFI_PATCHES_EXT_FLASH_STORE
210
+
211
+ endchoice
212
+
208
213
config UPDATEABLE_IMAGE_NUMBER
214
+ default 3 if CHIP_WIFI_PATCHES_EXT_FLASH_STORE
209
215
default 2 if SOC_SERIES_NRF53X
210
216
217
+ config DFU_MULTI_IMAGE_MAX_IMAGE_COUNT
218
+ default 3 if CHIP_WIFI_PATCHES_EXT_FLASH_STORE
219
+
211
220
# ==============================================================================
212
221
# OpenThread configuration
213
222
# ==============================================================================
Original file line number Diff line number Diff line change @@ -207,6 +207,9 @@ config MCUMGR_GRP_ZBASIC
207
207
config MCUMGR_GRP_ZBASIC_STORAGE_ERASE
208
208
default y
209
209
210
+ config NRF_WIFI_FW_PATCH_DFU
211
+ default y if NRF_WIFI_PATCHES_EXT_FLASH_STORE
212
+
210
213
endif # SOC_SERIES_NRF53X
211
214
212
215
endif # CHIP_DFU_OVER_BT_SMP
@@ -290,4 +293,14 @@ config CHIP_LAST_FABRIC_REMOVED_ACTION_DELAY
290
293
an action chosen by the CHIP_LAST_FABRIC_REMOVED_ACTION option. This schedule will allow for
291
294
avoiding race conditions before the device removes non-volatile data.
292
295
296
+ config CHIP_WIFI_PATCHES_EXT_FLASH_STORE
297
+ bool "Store nRF700x FW patches in external memory"
298
+ depends on SHIELD_NRF7002EK
299
+ depends on SOC_SERIES_NRF53X
300
+ depends on !BOARD_NRF7002DK_NRF5340_CPUAPP
301
+ imply NRF_WIFI_FW_PATCH_DFU
302
+ help
303
+ Helper for enabling the 3rd partition in mcuboot image when WiFi firmware patch
304
+ is stored in the external memory
305
+
293
306
endif # CHIP
Original file line number Diff line number Diff line change 16
16
17
17
# The purpose of this file is to define new default values of settings used when building mcuboot child image for Matter samples.
18
18
19
+ config CHIP_WIFI_PATCHES_EXT_FLASH_STORE
20
+ bool "Store nRF700x FW patches in external memory"
21
+ depends on SOC_SERIES_NRF53X
22
+ depends on !BOARD_NRF7002DK_NRF5340_CPUAPP
23
+ help
24
+ Helper for enabling the 3rd partition in mcuboot image when WiFi firmware patch
25
+ is stored in the external memory
26
+
19
27
config MAIN_STACK_SIZE
20
28
default 10240
21
29
@@ -122,8 +130,12 @@ config PCD_APP
122
130
default y
123
131
124
132
config UPDATEABLE_IMAGE_NUMBER
133
+ default 3 if CHIP_WIFI_PATCHES_EXT_FLASH_STORE
125
134
default 2
126
135
136
+ config MCUBOOT_VERIFY_IMG_ADDRESS
137
+ default n if CHIP_WIFI_PATCHES_EXT_FLASH_STORE
138
+
127
139
# Multi-image updates do not support image swapping yet.
128
140
choice BOOT_IMAGE_UPGRADE_MODE
129
141
default BOOT_UPGRADE_ONLY
You can’t perform that action at this time.
0 commit comments