Configuring sysbuild usage in west
The nRF Connect SDK has sysbuild enabled by default for all types of applications in the SDK repositories.
You can configure your project to not sysbuild by default whenever invoking west build.
You can do this either per-workspace, using the local configuration option, or for all your workspaces, using the global configuration option:
Use the following command to configure west not to use sysbuild by default for building all projects in the current workspace:
west config --local build.sysbuild False
Use the following command to configure west to use sysbuild by default:
west config --local build.sysbuild True
Use the following command to configure west not to use sysbuild by default for building all projects in all workspaces:
west config --global build.sysbuild False
Use the following command to configure west to use sysbuild by default:
west config --global build.sysbuild True
Note
The parameters and options passed in the command line always take precedence over west config settings.
This means that you can pass --no-sysbuild to the build command to disable using sysbuild for a given build even if you configured west to always use sysbuild by default.