From 33b65273724733d743a1fe273099ae2fc455f1c2 Mon Sep 17 00:00:00 2001 From: Jean-Christophe Dubois Date: Tue, 8 Oct 2024 17:41:18 +0200 Subject: [PATCH] libplatsupport: Fix driver support for i.MX7 - EPIT is not supported on i.MX7 - We need to allow serial compilation based KernelPlatImx7 instead of KernelPlatformImx7Sabre. Signed-off-by: Jean-Christophe Dubois --- libplatsupport/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libplatsupport/CMakeLists.txt b/libplatsupport/CMakeLists.txt index 0bae33f2..d1432a6d 100644 --- a/libplatsupport/CMakeLists.txt +++ b/libplatsupport/CMakeLists.txt @@ -96,13 +96,13 @@ elseif(KernelPlatformExynos4 OR KernelPlatformExynos5410 OR KernelPlatformExynos list(APPEND deps src/mach/${LibPlatSupportMach}/clock/exynos_common_clock.c) endif() -if(KernelPlatImx6 OR KernelPlatformImx7Sabre) +if(KernelPlatImx6) list(APPEND deps src/mach/${LibPlatSupportMach}/epit/epit.c) endif() if( KernelPlatImx6 - OR KernelPlatformImx7Sabre + OR KernelPlatImx7 OR KernelPlatformImx8mq-evk OR KernelPlatformImx8mm-evk OR KernelPlatformImx8mp-evk