File tree 3 files changed +5
-2
lines changed
3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -739,6 +739,9 @@ def main() -> int:
739
739
f"-DSAMPLE_NAME={ options .sample_device_type_name } " )
740
740
nrf_build_cmds .append (
741
741
f"-DCONFIG_CHIP_DEVICE_SOFTWARE_VERSION_STRING='\" { sw_ver_string } \" '" )
742
+ nrf_build_cmds .append (
743
+ f"--sysbuild" )
744
+
742
745
743
746
shell .run_cmd (" " .join (nrf_build_cmds ))
744
747
Original file line number Diff line number Diff line change @@ -197,7 +197,7 @@ def generate(self):
197
197
export ZEPHYR_SDK_INSTALL_DIR={ zephyr_sdk_dir } ;'''
198
198
199
199
cmd += '''
200
- west build --cmake-only -d {outdir} -b {board} {sourcedir}{build_flags}
200
+ west build --cmake-only -d {outdir} -b {board} {sourcedir}{build_flags} --sysbuild
201
201
''' .format (
202
202
outdir = shlex .quote (self .output_dir ),
203
203
board = self .board .GnArgName (),
Original file line number Diff line number Diff line change 51
51
export CCACHE_BASEDIR=" $PWD /$APP /nrfconnect"
52
52
53
53
env
54
- west build -p auto -b " $BOARD " -d " $APP /nrfconnect/build" " $APP /nrfconnect" -- " ${COMMON_CI_FLAGS[@]} " " $@ "
54
+ west build -p auto -b " $BOARD " -d " $APP /nrfconnect/build" " $APP /nrfconnect" -- " ${COMMON_CI_FLAGS[@]} " " $@ " --sysbuild
You can’t perform that action at this time.
0 commit comments