1# nRF5340 DK board configuration 2 3# Copyright (c) 2019 - 2021 Nordic Semiconductor ASA 4# SPDX-License-Identifier: Apache-2.0 5 6if BOARD_NRF5340DK_NRF5340_CPUAPP || BOARD_NRF5340DK_NRF5340_CPUAPP_NS 7 8config DOMAIN_CPUNET_BOARD 9 string 10 default "nrf5340dk/nrf5340/cpunet" 11 help 12 The board which will be used for CPUNET domain when creating a multi 13 image application where one or more images should be located on 14 another board. For example hci_ipc on the nRF5340_cpunet for 15 Bluetooth applications. 16 17endif # BOARD_NRF5340DK_NRF5340_CPUAPP || BOARD_NRF5340DK_NRF5340_CPUAPP_NS 18 19config DOMAIN_CPUAPP_BOARD 20 string 21 default "nrf5340dk/nrf5340/cpuapp" 22 depends on BOARD_NRF5340DK_NRF5340_CPUNET 23 help 24 The board which will be used for CPUAPP domain when creating a multi 25 image application where one or more images should be located on 26 another board. 27