1
0
mirror of https://git.yoctoproject.org/meta-ti synced 2026-04-20 11:42:57 +00:00

ti-img-rogue-driver: port generic toolchain support from SGX

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
This commit is contained in:
Denys Dmytriyenko
2019-09-12 01:23:53 +00:00
parent 7ed7595f4f
commit 7f2ab381b8
2 changed files with 59 additions and 1 deletions

View File

@@ -0,0 +1,56 @@
From dbdbd9309a58ee723fc827ef5fd45c28347cf61f Mon Sep 17 00:00:00 2001
From: Eric Ruei <e-ruei1@ti.com>
Date: Tue, 7 May 2019 17:06:09 -0400
Subject: [PATCH] km: support general toolchain
This is a patch from IMG to support general toolchains such as
aarch64-oe-linux-gnu, aarch64-poky-linux-gnu, arm-none-linux-gnueabi
per IMG ticket 122059
Signed-off-by: Eric Ruei <e-ruei1@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
build/linux/config/compiler.mk | 12 +++++++++++-
.../build/linux/config/compilers/arm-linux-gnueabi.mk | 6 ++++++
2 files changed, 17 insertions(+), 1 deletion(-)
create mode 100644 build/linux/config/compilers/arm-linux-gnueabi.mk
diff --git a/build/linux/config/compiler.mk b/build/linux/config/compiler.mk
index 82c9d44..dead2f9 100644
--- a/build/linux/config/compiler.mk
+++ b/build/linux/config/compiler.mk
@@ -48,13 +48,14 @@ define calculate-compiler-preferred-target
ifeq ($(2),qcc)
$(1)_compiler_preferred_target := qcc
else
- $(1)_compiler_preferred_target := $$(subst --,-,$$(shell $(2) -dumpmachine))
+ $(1)_compiler_preferred_target := $$(subst --,-,$$(subst unknown,,$$(shell $(2) -dumpmachine)))
ifeq ($$($(1)_compiler_preferred_target),)
$$(warning No output from '$(2) -dumpmachine')
$$(warning Check that the compiler is in your PATH and CROSS_COMPILE is)
$$(warning set correctly.)
$$(error Unable to run compiler '$(2)')
endif
+ $$(warning $(1) $(2))
ifneq ($$(filter %-w64-mingw32,$$($(1)_compiler_preferred_target)),)
# Use the compiler target name.
else
@@ -64,6 +65,15 @@ define calculate-compiler-preferred-target
ifneq ($$(filter arm-linux-android,$$($(1)_compiler_preferred_target)),)
$(1)_compiler_preferred_target := arm-linux-androideabi
endif
+ ifneq ($$(filter aarch64-%,$$($(1)_compiler_preferred_target)),)
+ $(1)_compiler_preferred_target := aarch64-linux-gnu
+ endif
+ ifneq ($$(filter arm-%-gnueabi armv7a-cros-linux-gnueabi armv7hl-redhat-linux-gnueabi,$$($(1)_compiler_preferred_target)),)
+ $(1)_compiler_preferred_target := arm-linux-gnueabi
+ endif
+ ifneq ($$(filter arm-%-gnueabihf,$$($(1)_compiler_preferred_target)),)
+ $(1)_compiler_preferred_target := arm-linux-gnueabihf
+ endif
ifneq ($$(filter clang%,$(2)),)
ifeq ($(1),target)
ifeq (arm-linux-gnueabihf,$$(CROSS_TRIPLE))
--
2.7.4

View File

@@ -17,7 +17,9 @@ PROVIDES = "virtual/gpudriver"
BRANCH = "linuxws/thud/k4.19/${PV}"
SRC_URI = "git://git.ti.com/graphics/ti-img-rogue-driver.git;branch=${BRANCH}"
SRC_URI = "git://git.ti.com/graphics/ti-img-rogue-driver.git;branch=${BRANCH} \
file://0001-km-support-general-toolchain.patch \
"
S = "${WORKDIR}/git"
SRCREV = "12594852f8a46ead75b5ce3309372e4a1054be05"