Skip to content

Commit a9e5f54

Browse files
committed
treewide: Remove references to pre-release ICs
The nRF54H20 EngB and the nRF54L15 EngA have been removed. Signed-off-by: Carles Cufi <[email protected]>
1 parent b3f964a commit a9e5f54

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

common.cmake

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,12 @@ function(nrfxlib_calculate_lib_path lib_path)
4848
set(arch_soc_dir ${arch_soc_dir}_cpuapp)
4949
elseif(DEFINED CONFIG_SOC_NRF5340_CPUNET)
5050
set(arch_soc_dir ${arch_soc_dir}_cpunet)
51-
elseif(DEFINED CONFIG_SOC_NRF54L15_CPUAPP OR DEFINED CONFIG_SOC_NRF54L15_ENGA_CPUAPP
52-
OR DEFINED CONFIG_SOC_NRF54L20_ENGA_CPUAPP)
51+
elseif(DEFINED CONFIG_SOC_NRF54L15_CPUAPP OR DEFINED CONFIG_SOC_NRF54L20_ENGA_CPUAPP)
5352
set(arch_soc_dir ${arch_soc_dir}_cpuapp)
5453
if(DEFINED CONFIG_TRUSTED_EXECUTION_NONSECURE AND ${CALC_LIB_PATH_NS_PROVIDED})
5554
set(arch_soc_dir ${arch_soc_dir}_ns)
5655
endif()
57-
elseif(DEFINED CONFIG_SOC_NRF54H20_CPURAD OR DEFINED CONFIG_SOC_NRF54H20_ENGB_CPURAD)
56+
elseif(DEFINED CONFIG_SOC_NRF54H20_CPURAD)
5857
set(arch_soc_dir ${arch_soc_dir}_cpurad)
5958
endif()
6059
elseif(CONFIG_SOC_SERIES_BSIM_NRF52X)

mpsl/Kconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ config MPSL
1111
select NRF_802154_MULTIPROTOCOL_SUPPORT if NRF_802154_RADIO_DRIVER
1212
select MULTITHREADING_LOCK
1313
depends on (SOC_SERIES_BSIM_NRFXX || SOC_SERIES_NRF52X || SOC_NRF5340_CPUNET ||\
14-
SOC_NRF54H20_CPURAD || SOC_NRF54H20_ENGB_CPURAD || SOC_SERIES_NRF54LX)
14+
SOC_NRF54H20_CPURAD || SOC_SERIES_NRF54LX)
1515
help
1616
Use Nordic Multi Protocol Service Layer (MPSL) implementation,
1717
providing services for single and multi-protocol implementations.
@@ -32,7 +32,7 @@ config MPSL_LIB_DIR
3232
string
3333
default "nrf52" if SOC_SERIES_NRF52X
3434
default "nrf53" if SOC_NRF5340_CPUNET
35-
default "nrf54h" if SOC_NRF54H20_CPURAD || SOC_NRF54H20_ENGB_CPURAD
35+
default "nrf54h" if SOC_NRF54H20_CPURAD
3636
default "nrf54l_ns" if SOC_SERIES_NRF54LX && TRUSTED_EXECUTION_NONSECURE
3737
default "nrf54l" if SOC_SERIES_NRF54LX && !TRUSTED_EXECUTION_NONSECURE
3838
default "bsim_nrf52" if SOC_SERIES_BSIM_NRF52X

0 commit comments

Comments
 (0)