f3360265e6
After https://github.com/zephyrproject-rtos/zephyr/pull/70438 got merged simultaneously with https://github.com/zephyrproject-rtos/zephyr/pull/70564 all these tests stopped building properly due to the change of avaliable variables in Kconfig & cmake. Let's fix them. As a bonus, as for kconfig the BOARD_TARGET_STRING is the same for the hwmv1 backwards compatible name, let's just remove the check for the old names. Signed-off-by: Alberto Escolar Piedras <alberto.escolar.piedras@nordicsemi.no>
18 lines
733 B
Plaintext
18 lines
733 B
Plaintext
# Copyright 2023 Nordic Semiconductor ASA
|
|
# Copyright 2023-2024 NXP
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
source "share/sysbuild/Kconfig"
|
|
|
|
config REMOTE_BOARD
|
|
string
|
|
default "nrf5340dk/nrf5340/cpunet" if $(BOARD) = "nrf5340dk"
|
|
default "nrf5340bsim/nrf5340/cpunet" if $(BOARD_TARGET_STRING) = "NRF5340BSIM_NRF5340_CPUAPP"
|
|
default "adp_xc7k/ae350" if $(BOARD) = "adp_xc7k"
|
|
default "mimxrt1170_evkb/mimxrt1176/cm4" if $(BOARD) = "mimxrt1170_evkb"
|
|
default "mimxrt1170_evk/mimxrt1176/cm4" if $(BOARD) = "mimxrt1170_evk"
|
|
default "mimxrt1160_evk/mimxrt1166/cm4" if $(BOARD) = "mimxrt1160_evk"
|
|
default "lpcxpresso55s69/lpc55s69/cpu1" if $(BOARD) = "lpcxpresso55s69"
|
|
default "nrf54h20dk/nrf54h20/cpuppr" if $(BOARD) = "nrf54h20dk"
|