1# Copyright (c) 2023-2024 Nordic Semiconductor ASA 2# SPDX-License-Identifier: Apache-2.0 3 4source "share/sysbuild/Kconfig" 5 6config NET_CORE_BOARD 7 string 8 default "nrf5340dk/nrf5340/cpunet" if "$(BOARD)" = "nrf5340dk" 9 default "nrf5340_audio_dk/nrf5340/cpunet" if "$(BOARD)" = "nrf5340_audio_dk" 10 default "nrf5340bsim/nrf5340/cpunet" if $(BOARD_TARGET_STRING) = "NRF5340BSIM_NRF5340_CPUAPP" 11 12config NET_CORE_IMAGE_HCI_IPC 13 bool "HCI IPC image on network core" 14 default y 15 depends on NET_CORE_BOARD != "" 16 17 18config NATIVE_SIMULATOR_PRIMARY_MCU_INDEX 19 int 20 # Let's pass the test arguments to the application MCU test 21 # otherwise by default they would have gone to the net core. 22 default 0 if $(BOARD_TARGET_STRING) = "NRF5340BSIM_NRF5340_CPUAPP" 23