Skip to content

Commit

Permalink
sysbuild: Add missing RAD core to Kconfig.netcore
Browse files Browse the repository at this point in the history
There is a missing entry for nrf54h20 DK that enables SUPPORT_NETCORE
and sets up NETCORE_REMOTE_BOARD_NAME. That breaks the multi-core
builds e.g. BLE samples for nRF54h20 DK.

Signed-off-by: Piotr Pryga <piotr.pryga@nordicsemi.no>
  • Loading branch information
ppryga-nordic authored and tejlmand committed Apr 3, 2024
1 parent 219af6b commit 3334bcd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sysbuild/Kconfig.netcore
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,15 @@ config EXTERNAL_CONFIGURED_NETCORE

config SUPPORT_NETCORE
bool
default y if ($(BOARD) = "nrf5340dk_nrf5340_cpuapp" || $(BOARD) = "nrf5340dk_nrf5340_cpuapp_ns" || $(BOARD) = "thingy53_nrf5340_cpuapp" || $(BOARD) = "thingy53_nrf5340_cpuapp_ns" || $(BOARD) = "nrf7002dk_nrf5340_cpuapp" || $(BOARD) = "nrf7002dk_nrf5340_cpuapp_ns")
default y if ($(BOARD) = "nrf5340dk_nrf5340_cpuapp" || $(BOARD) = "nrf5340dk_nrf5340_cpuapp_ns" || $(BOARD) = "thingy53_nrf5340_cpuapp" || $(BOARD) = "thingy53_nrf5340_cpuapp_ns" || $(BOARD) = "nrf7002dk_nrf5340_cpuapp" || $(BOARD) = "nrf7002dk_nrf5340_cpuapp_ns" || $(BOARD) = "nrf54h20dk_nrf54h20_cpuapp")

config NETCORE_REMOTE_BOARD_NAME
string
default "nrf5340dk_nrf5340_cpunet" if $(BOARD) = "nrf5340dk_nrf5340_cpuapp"
default "nrf5340dk_nrf5340_cpunet" if $(BOARD) = "nrf5340dk_nrf5340_cpuapp_ns"
default "thingy53_nrf5340_cpunet" if $(BOARD) = "thingy53_nrf5340_cpuapp"
default "thingy53_nrf5340_cpunet" if $(BOARD) = "thingy53_nrf5340_cpuapp_ns"
default "nrf54h20dk_nrf54h20_cpurad" if $(BOARD) = "nrf54h20dk_nrf54h20_cpuapp"

config NETCORE_REMOTE_DOMAIN
string
Expand Down

0 comments on commit 3334bcd

Please sign in to comment.