Bump TEE driver version
Update the TEE driver external component to refer to the new v2 branch.
Also, remove the temporary TEE implemenation ID define from the Linux
RPC caller since now we can get it from the driver's header file again.
Signed-off-by: Balint Dobszay <balint.dobszay@arm.com>
Change-Id: I1d9bf640932769e52822606fa3af01e192b16cd5
diff --git a/components/rpc/ts_rpc/caller/linux/component.cmake b/components/rpc/ts_rpc/caller/linux/component.cmake
index 2df09d1..c9f439e 100644
--- a/components/rpc/ts_rpc/caller/linux/component.cmake
+++ b/components/rpc/ts_rpc/caller/linux/component.cmake
@@ -8,6 +8,7 @@
message(FATAL_ERROR "mandatory parameter TGT is not defined.")
endif()
+include(${TS_ROOT}/external/LinuxFfaTeeDriver/LinuxFfaTeeDriver.cmake)
set_property(TARGET ${TGT} APPEND PROPERTY PUBLIC_HEADER
"${CMAKE_CURRENT_LIST_DIR}/ts_rpc_caller_linux.h"
@@ -16,3 +17,7 @@
target_sources(${TGT} PRIVATE
"${CMAKE_CURRENT_LIST_DIR}/ts_rpc_caller_linux.c"
)
+
+target_include_directories(${TGT} PRIVATE
+ "${LINUX_FFA_TEE_DRIVER_INCLUDE_DIR}"
+ )