From 412271bcd8665810677aab39fe181385e065b7eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damian=20Kr=C3=B3lik?= <66667989+Damian-Nordic@users.noreply.github.com> Date: Fri, 15 Nov 2024 20:10:50 +0100 Subject: [PATCH] [nrfconnect] Fix all-clusters-app settings size (#36501) After switching to building with sysbuild, the source of the settings partition size has changed from the DTS to the partition manager. Make sure the settings partition is 32kB even when building all-clusters-apps without DFU support. Signed-off-by: Damian Krolik --- examples/all-clusters-app/nrfconnect/prj.conf | 3 +++ examples/all-clusters-minimal-app/nrfconnect/prj.conf | 3 +++ 2 files changed, 6 insertions(+) diff --git a/examples/all-clusters-app/nrfconnect/prj.conf b/examples/all-clusters-app/nrfconnect/prj.conf index 5917c3a9c7a17e..075fdd8e9d8d19 100644 --- a/examples/all-clusters-app/nrfconnect/prj.conf +++ b/examples/all-clusters-app/nrfconnect/prj.conf @@ -54,3 +54,6 @@ CONFIG_CHIP_QSPI_NOR=n # Enable the Read Client for binding purposes CONFIG_CHIP_ENABLE_READ_CLIENT=y + +# Increase the settings partition +CONFIG_PM_PARTITION_SIZE_SETTINGS_STORAGE=0x8000 diff --git a/examples/all-clusters-minimal-app/nrfconnect/prj.conf b/examples/all-clusters-minimal-app/nrfconnect/prj.conf index 58dae15804fe81..9e738ba64d1431 100644 --- a/examples/all-clusters-minimal-app/nrfconnect/prj.conf +++ b/examples/all-clusters-minimal-app/nrfconnect/prj.conf @@ -55,3 +55,6 @@ CONFIG_CHIP_QSPI_NOR=n # Enable Factory Data feature CONFIG_CHIP_FACTORY_DATA=y CONFIG_CHIP_FACTORY_DATA_BUILD=y + +# Increase the settings partition +CONFIG_PM_PARTITION_SIZE_SETTINGS_STORAGE=0x8000