6443c50bd0
Add a new riscv/common directory where to store common code between SoCs, e.g. those implementing the privileged spec. Signed-off-by: Gerard Marull-Paretas <gerard@teslabs.com>
10 lines
161 B
CMake
10 lines
161 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
add_subdirectory(common)
|
|
|
|
if(SOC_FAMILY)
|
|
add_subdirectory(${SOC_FAMILY})
|
|
else()
|
|
add_subdirectory(${SOC_NAME})
|
|
endif()
|