From eacf7a8eb0611970782ac617c028b10ba8300d7a Mon Sep 17 00:00:00 2001 From: Jamie McCrae Date: Thu, 6 Jun 2024 10:52:42 +0100 Subject: [PATCH] [nrf noup] scripts: west_commands: build: Add NCS example repo to sysbuild list nrf-squash! [nrf noup] scripts: west: build: Use sysbuild by default if in NCS dir Adds the example NCS project to the list of repos that should build using sysbuild by default Signed-off-by: Jamie McCrae --- scripts/west_commands/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/west_commands/build.py b/scripts/west_commands/build.py index 2e675a72293..2f95a168a5e 100644 --- a/scripts/west_commands/build.py +++ b/scripts/west_commands/build.py @@ -579,7 +579,7 @@ def _run_cmake(self, board, origin, cmake_opts): # Check if this is an ncs-repo directory allow_list = [ 'mcuboot', 'sidewalk', 'find-my', 'nrf', 'matter', 'suit-processor', 'memfault-firmware-sdk', 'zscilib', 'uoscore-uedhoc', 'zcbor', - 'hal_nordic' ] + 'hal_nordic', 'ncs-example-application' ] config_sysbuild = False for module in zephyr_module.parse_modules(ZEPHYR_BASE, self.manifest):