Move bootloader to soc/xtensa/intel_adsp making it available for other boards. Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
11 lines
290 B
CMake
11 lines
290 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
zephyr_library()
|
|
zephyr_library_include_directories(${ZEPHYR_BASE}/drivers)
|
|
zephyr_library_sources(adsp.c)
|
|
zephyr_library_sources(soc.c)
|
|
zephyr_library_sources(main_entry.S)
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_SMP soc_mp.c)
|
|
|
|
add_subdirectory(common)
|