We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08d0b8e commit 1dfd358Copy full SHA for 1dfd358
lib/fprotect/Kconfig
@@ -47,6 +47,7 @@ config FPROTECT_BLOCK_SIZE
47
menuconfig FPROTECT
48
bool "Enable FPROTECT"
49
depends on SOC_FAMILY_NORDIC_NRF
50
+ depends on !(SOC_SERIES_NRF54LX && IS_SECURE_BOOTLOADER)
51
select NRFX_RRAMC if SOC_SERIES_NRF54LX
52
help
53
Enable the software library FPROTECT that may or may not be used
samples/bootloader/src/main.c
@@ -12,8 +12,10 @@
12
#if defined(CONFIG_FPROTECT)
13
#include <fprotect.h>
14
#else
15
+#ifndef CONFIG_SOC_SERIES_NRF54LX
16
#warning "FPROTECT not enabled, the bootloader will be unprotected."
17
#endif
18
+#endif
19
#include <bl_storage.h>
20
#include <bl_boot.h>
21
#include <bl_validation.h>
0 commit comments