From 105464283e2b3b34c822a78045ec26a623b454c0 Mon Sep 17 00:00:00 2001 From: Kamil Kasperczyk <66371704+kkasperczyk-no@users.noreply.github.com> Date: Fri, 20 Jan 2023 18:25:31 +0100 Subject: [PATCH] [nrfconnect] Enabled support for settings erase during DFU (#24548) Currently command that allows for erasing settings partition during DFU is enabled only for the nRF53 family. Enabled support for erasing settings for all nRF platforms. --- config/nrfconnect/chip-module/Kconfig.features | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/nrfconnect/chip-module/Kconfig.features b/config/nrfconnect/chip-module/Kconfig.features index 36f102c1af5399..1a1bf027267601 100644 --- a/config/nrfconnect/chip-module/Kconfig.features +++ b/config/nrfconnect/chip-module/Kconfig.features @@ -83,8 +83,8 @@ config CHIP_DFU_OVER_BT_SMP select MCUMGR_CMD_IMG_MGMT select MCUMGR_CMD_OS_MGMT # Enable custom SMP request to erase settings partition. - select MCUMGR_GRP_ZEPHYR_BASIC if SOC_SERIES_NRF53X - select MCUMGR_GRP_BASIC_CMD_STORAGE_ERASE if SOC_SERIES_NRF53X + select MCUMGR_GRP_ZEPHYR_BASIC + select MCUMGR_GRP_BASIC_CMD_STORAGE_ERASE help Enables Device Firmware Upgrade over Bluetooth LE with SMP and configures the set of options related to that feature.