mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-28 14:05:22 +00:00
Add CONFIG_SECOND_CORE_MCUX_LAUNCHER. This Kconfig is only enabled when using sysbuild targeting the Cortex-M4 core on the RT11xx series, and results in loading a minimal application to the Cortex-M7 core that boots the Cortex-M4 core. This makes developing on the M4 core simpler, as the user can now simply target the core with sysbuild enabled and flashing the application will work as expected. Signed-off-by: Daniel DeGrasse <daniel@degrasse.com>
8 lines
247 B
CMake
8 lines
247 B
CMake
# Copyright 2024 Daniel DeGrasse <daniel@degrasse.com>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if(SB_CONFIG_SOC_SERIES_IMXRT11XX)
|
|
# Include RT11XX specific sysbuild
|
|
include(${SOC_${SB_CONFIG_SOC}_DIR}/imxrt11xx/sysbuild.cmake OPTIONAL)
|
|
endif()
|