16 lines
516 B
CMake
16 lines
516 B
CMake
# Copyright (c) 2021 IoT.bzh
|
|
# Copyright (c) 2023 EPAM Systems
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if(CONFIG_ARM)
|
|
zephyr_sources(r7/soc.c)
|
|
zephyr_include_directories(r7)
|
|
|
|
set(SOC_LINKER_SCRIPT ${ZEPHYR_BASE}/include/zephyr/arch/arm/cortex_a_r/scripts/linker.ld CACHE INTERNAL "")
|
|
elseif(CONFIG_ARM64)
|
|
zephyr_include_directories(a57)
|
|
zephyr_library_sources_ifdef(CONFIG_ARM_MMU mmu_regions.c)
|
|
|
|
set(SOC_LINKER_SCRIPT ${ZEPHYR_BASE}/include/zephyr/arch/arm64/scripts/linker.ld CACHE INTERNAL "")
|
|
endif()
|