15 lines
359 B
CMake
15 lines
359 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
zephyr_sources_ifdef(CONFIG_KINETIS_FLASH_CONFIG flash_configuration.c)
|
|
|
|
add_subdirectory(${SOC_SERIES})
|
|
|
|
# This is for access to pinctrl macros
|
|
zephyr_include_directories(common)
|
|
|
|
zephyr_linker_sources_ifdef(CONFIG_KINETIS_FLASH_CONFIG
|
|
ROM_START
|
|
SORT_KEY ${CONFIG_KINETIS_FLASH_CONFIG_OFFSET}
|
|
flash_config.ld
|
|
)
|