Skip to content

Commit

Permalink
sysbuild: Add missing config that allows to build rpc_host for Rad core
Browse files Browse the repository at this point in the history
There were no simple way to use sysbuild for building BLE samples
with rpc_host running on Radio core. Add required configuration to
sysbuild. Now an application can be targeted to be build with
rpc_host by adding NRF_DEFAULT_RPC_HOST=y to Kconfig.sysbuild.

Signed-off-by: Piotr Pryga <[email protected]>
  • Loading branch information
ppryga-nordic committed Jun 5, 2024
1 parent 2876b5f commit 4845a72
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions sysbuild/Kconfig.netcore
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ config NRF_DEFAULT_EMPTY
config NRF_DEFAULT_BLUETOOTH
bool

config NRF_DEFAULT_RPC_HOST
bool

config NRF_DEFAULT_802154
bool

Expand All @@ -66,6 +69,7 @@ config NRF_DEFAULT_IPC_RADIO
choice NETCORE
prompt "Netcore image"
default NETCORE_HCI_IPC if NRF_DEFAULT_BLUETOOTH && NETCORE_REMOTE_BOARD_NAME != ""
default NETCORE_RPC_HOST if NRF_DEFAULT_RPC_HOST && NETCORE_REMOTE_BOARD_NAME != ""
default NETCORE_802154_RPMSG if NRF_DEFAULT_802154 && NETCORE_REMOTE_BOARD_NAME != ""
default NETCORE_MULTIPROTOCOL_RPMSG if NRF_DEFAULT_MULTIPROTOCOL && NETCORE_REMOTE_BOARD_NAME != ""
default NETCORE_IPC_RADIO if NRF_DEFAULT_IPC_RADIO && NETCORE_REMOTE_BOARD_NAME != ""
Expand Down

0 comments on commit 4845a72

Please sign in to comment.