For all samples which handle the nrf5340bsim in some special way (for example in sysbuild files, or by checking what samples are supported) handle also building with the hwmv2 names. Also, let's fix the cmake info message in these respective samples which tells the user which board target is used for which part of the app. Signed-off-by: Alberto Escolar Piedras <alberto.escolar.piedras@nordicsemi.no>
16 lines
584 B
Text
16 lines
584 B
Text
# Copyright 2023 Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
source "share/sysbuild/Kconfig"
|
|
|
|
config NET_CORE_BOARD
|
|
string
|
|
default "nrf5340dk/nrf5340/cpunet" if "$(BOARD)" = "nrf5340dk"
|
|
default "nrf5340_audio_dk/nrf5340/cpunet" if "$(BOARD)" = "nrf5340_audio_dk"
|
|
default "nrf5340bsim_nrf5340_cpunet" if "$(BOARD)" = "nrf5340bsim_nrf5340_cpuapp"
|
|
default "nrf5340bsim/nrf5340/cpunet" if "$(BOARD)$(BOARD_IDENTIFIER)" = "nrf5340bsim/nrf5340/cpuapp"
|
|
|
|
config NET_CORE_IMAGE_HCI_IPC
|
|
bool "HCI IPC image on network core"
|
|
default y
|
|
depends on NET_CORE_BOARD != ""
|