* Move definition of flexspi_nor_config_t into soc/ dir so it can be shared by all i.MX RT based boards. * Use Kconfig symbol CONFIG_NXP_IMX_RT_BOOT_HEADER instead of HAL define (which is set based on the Kconfig symbol) * Rename board files to flexspi_nor_config.c since they are already namespaced by the board dir. Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
14 lines
364 B
CMake
14 lines
364 B
CMake
#
|
|
# Copyright (c) 2020, Bernhard Kraemer
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
if(CONFIG_PINMUX)
|
|
zephyr_library()
|
|
zephyr_library_sources(pinmux.c)
|
|
zephyr_library_include_directories(${ZEPHYR_BASE}/drivers)
|
|
endif()
|
|
|
|
zephyr_library_sources(flexspi_nor_config.c)
|
|
zephyr_library_sources_ifdef(CONFIG_DEVICE_CONFIGURATION_DATA teensy4_sdram_ini_dcd.c)
|