mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-24 16:25:17 +00:00
Instead of accessing the environment variable ZEPHYR_BASE every time we require accessing the source code root, use an intermediate variable that has OS path separators correctly set to '/' to avoid issues on Windows. Note: This removes the ZEPHYR_SOURCE_DIR CMake variable. External applications using that will need to change to use the new ZEPHYR_BASE variable. Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
8 lines
222 B
CMake
8 lines
222 B
CMake
set_ifndef(BOARD_FLASH_RUNNER nios2)
|
|
set_ifndef(BOARD_DEBUG_RUNNER nios2)
|
|
|
|
board_finalize_runner_args(nios2
|
|
# TODO: merge this script into nios2.py
|
|
"--quartus-flash=${ZEPHYR_BASE}/scripts/support/quartus-flash.py"
|
|
)
|