Skip to content

Commit ea0c933

Browse files
mstasiaknordiccarlescufi
authored andcommitted
[nrf noup] boot: zephyr: remove Eng A naming from nRF54L devices
Aligned to chanes upcoming with MDK. Signed-off-by: Michał Stasiak <michal.stasiak@nordicsemi.no>
1 parent e4acee9 commit ea0c933

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

boot/zephyr/Kconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -508,8 +508,8 @@ config MCUBOOT_CLEANUP_RAM
508508
config NCS_MCUBOOT_DISABLE_SELF_RWX_SUPPORTED
509509
bool
510510
default y if SOC_NRF54L15_CPUAPP || SOC_NRF54L10_CPUAPP || SOC_NRF54L05_CPUAPP
511-
default y if SOC_NRF54LV10A_ENGA_CPUAPP
512-
default y if SOC_NRF54LM20A_ENGA_CPUAPP
511+
default y if SOC_NRF54LV10A_CPUAPP
512+
default y if SOC_NRF54LM20A_CPUAPP
513513

514514
config NCS_MCUBOOT_DISABLE_SELF_RWX
515515
bool "Disable read and execution on self NVM"

boot/zephyr/main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,9 +184,9 @@ K_SEM_DEFINE(boot_log_sem, 1, 1);
184184
#if defined(CONFIG_SOC_NRF54L15_CPUAPP) || defined(CONFIG_SOC_NRF54L05_CPUAPP) || \
185185
defined(CONFIG_SOC_NRF54L10_CPUAPP)
186186
#define MAX_PROTECTED_REGION_SIZE (31 * 1024)
187-
#elif defined(CONFIG_SOC_NRF54LV10A_ENGA_CPUAPP) || defined(CONFIG_SOC_NRF54LM20A_ENGA_CPUAPP)
187+
#elif defined(CONFIG_SOC_NRF54LV10A_CPUAPP) || defined(CONFIG_SOC_NRF54LM20A_CPUAPP)
188188
#define MAX_PROTECTED_REGION_SIZE (127 * 1024)
189-
#elif defined(CONFIG_SOC_NRF54LS05B_ENGA_CPUAPP)
189+
#elif defined(CONFIG_SOC_NRF54LS05B_CPUAPP)
190190
#define MAX_PROTECTED_REGION_SIZE (1023 * 1024)
191191
#endif
192192

0 commit comments

Comments
 (0)