Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix libplatsupport for Imx7 #187

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
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 <jcd@tribudubois.net>
  • Loading branch information
jcdubois committed Oct 8, 2024
commit 33b65273724733d743a1fe273099ae2fc455f1c2
4 changes: 2 additions & 2 deletions libplatsupport/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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