From 03d1a443dcdc9ddbcf2bd50052cc8c16ffeab0a6 Mon Sep 17 00:00:00 2001 From: Jamie McCrae Date: Wed, 4 Sep 2024 09:41:25 +0100 Subject: [PATCH] boot: zephyr: board: Fix nrf54l15pdk Kconfig fragment Fixes an issue with this file as it was wrongly disabling QSPI NOR, which the hardware does not support, when it should have been disabling SPI NOR Signed-off-by: Jamie McCrae (cherry picked from commit 651775b550c9212bbfaaf8baeff895aa34e5cab5) --- boot/zephyr/boards/nrf54l15pdk_nrf54l15_cpuapp.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/boot/zephyr/boards/nrf54l15pdk_nrf54l15_cpuapp.conf b/boot/zephyr/boards/nrf54l15pdk_nrf54l15_cpuapp.conf index 33e7e612..43d8cebe 100644 --- a/boot/zephyr/boards/nrf54l15pdk_nrf54l15_cpuapp.conf +++ b/boot/zephyr/boards/nrf54l15pdk_nrf54l15_cpuapp.conf @@ -4,7 +4,7 @@ # CONFIG_BOOT_MAX_IMG_SECTORS=256 -# Ensure that the qspi driver is disabled by default -CONFIG_NORDIC_QSPI_NOR=n +# Ensure that the SPI NOR driver is disabled by default +CONFIG_SPI_NOR=n CONFIG_BOOT_WATCHDOG_FEED=n