Skip to content

Commit

Permalink
west: Remove sysbuild being enabled by default
Browse files Browse the repository at this point in the history
Signed-off-by: Marek Maškarinec <[email protected]>
  • Loading branch information
marekmaskarinec committed Jan 2, 2025
1 parent 37c7266 commit c7998cd
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions scripts/west_commands/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -595,12 +595,7 @@ def _run_cmake(self, board, origin, cmake_opts):
if user_args:
cmake_opts.extend(shlex.split(user_args))

config_sysbuild = config_getboolean('sysbuild', None)

if config_sysbuild is None:
# If no option is set, then enable sysbuild globally
config_sysbuild = True

config_sysbuild = config_getboolean('sysbuild', False)
if self.args.sysbuild or (config_sysbuild and not self.args.no_sysbuild):
cmake_opts.extend(['-S{}'.format(SYSBUILD_PROJ_DIR),
'-DAPP_DIR:PATH={}'.format(self.source_dir)])
Expand Down

0 comments on commit c7998cd

Please sign in to comment.