File tree 3 files changed +19
-4
lines changed
config/nrfconnect/chip-module
3 files changed +19
-4
lines changed Original file line number Diff line number Diff line change 17
17
rsource "../../zephyr/Kconfig"
18
18
19
19
config CHIP
20
- imply NVS_LOOKUP_CACHE
21
- imply NVS_LOOKUP_CACHE_FOR_SETTINGS
20
+ imply NVS if !SOC_FLASH_NRF_RRAM
21
+ imply NVS_LOOKUP_CACHE if !SOC_FLASH_NRF_RRAM
22
+ imply NVS_LOOKUP_CACHE_FOR_SETTINGS if !SOC_FLASH_NRF_RRAM
23
+ imply ZMS if SOC_FLASH_NRF_RRAM
24
+ imply ZMS_LOOKUP_CACHE if SOC_FLASH_NRF_RRAM
25
+ imply ZMS_LOOKUP_CACHE_FOR_SETTINGS if SOC_FLASH_NRF_RRAM
22
26
23
27
if CHIP
24
28
@@ -325,8 +329,16 @@ endif # CHIP_FACTORY_DATA_BUILD
325
329
config CHIP_FACTORY_RESET_ERASE_NVS
326
330
bool
327
331
default y
332
+ depends on NVS
328
333
depends on !CHIP_CRYPTO_PSA_MIGRATE_DAC_PRIV_KEY
329
334
335
+ config CHIP_FACTORY_RESET_ERASE_ZMS
336
+ bool
337
+ default y
338
+ depends on ZMS
339
+ depends on !CHIP_CRYPTO_PSA_MIGRATE_DAC_PRIV_KEY
340
+
341
+
330
342
config CHIP_LOG_SIZE_OPTIMIZATION
331
343
bool "Disable some detailed logs to decrease flash usage"
332
344
help
Original file line number Diff line number Diff line change @@ -65,7 +65,10 @@ config COMMON_LIBC_MALLOC_ARENA_SIZE
65
65
default -1
66
66
67
67
config NVS_LOOKUP_CACHE_SIZE
68
- default 512
68
+ default 512 if NVS
69
+
70
+ config ZMS_LOOKUP_CACHE_SIZE
71
+ default 512 if ZMS
69
72
70
73
# ==============================================================================
71
74
# Zephyr networking configuration
Original file line number Diff line number Diff line change @@ -204,7 +204,7 @@ void ConfigurationManagerImpl::DoFactoryReset(intptr_t arg)
204
204
205
205
if (status == 0 )
206
206
{
207
- #ifdef ( CONFIG_CHIP_FACTORY_RESET_ERASE_NVS)
207
+ #ifdef CONFIG_CHIP_FACTORY_RESET_ERASE_NVS
208
208
status = nvs_clear (static_cast <nvs_fs *>(storage));
209
209
#elif CONFIG_CHIP_FACTORY_RESET_ERASE_ZMS
210
210
status = zms_clear (static_cast <zms_fs *>(storage));
You can’t perform that action at this time.
0 commit comments