mirror of
https://git.yoctoproject.org/meta-arm
synced 2026-05-07 04:58:57 +00:00
arm/optee: version uplift 3.11.0 -> 3.14.0
Brief description of changes: - Version uplift 3.11.0 -> 3.14.0. - Removed OP-TEE patches that has already been accepted upstream. - Added support for tee-supplicant plugin framework testing. Tested on qemuarm64_secureboot: $ xtest -l 15 $ optee-examples_* Signed-off-by: Sumit Garg <sumit.garg@linaro.org> Signed-off-by: Jon Mason <jon.mason@arm.com>
This commit is contained in:
@@ -1,3 +0,0 @@
|
||||
require optee-client.inc
|
||||
|
||||
SRCREV = "c0c925384c1d7e3558d27d2708857482952d7907"
|
||||
@@ -0,0 +1,3 @@
|
||||
require optee-client.inc
|
||||
|
||||
SRCREV = "06e1b32f6a7028e039c625b07cfc25fda0c17d53"
|
||||
@@ -12,7 +12,8 @@ inherit python3native
|
||||
require optee.inc
|
||||
|
||||
SRC_URI = "git://github.com/linaro-swg/optee_examples.git \
|
||||
file://0001-make-Pass-ldflags-during-link.patch \
|
||||
file://0001-plugins-Honour-default-cross-compiler-environment-se.patch \
|
||||
file://0002-Makefile-Enable-plugins-installation-in-rootfs.patch \
|
||||
"
|
||||
|
||||
EXTRA_OEMAKE += "TA_DEV_KIT_DIR=${TA_DEV_KIT_DIR} \
|
||||
@@ -32,11 +33,15 @@ do_compile[cleandirs] = "${B}"
|
||||
do_install () {
|
||||
mkdir -p ${D}${nonarch_base_libdir}/optee_armtz
|
||||
mkdir -p ${D}${bindir}
|
||||
mkdir -p ${D}${libdir}/tee-supplicant/plugins
|
||||
install -D -p -m0755 ${B}/ca/* ${D}${bindir}
|
||||
install -D -p -m0444 ${B}/ta/* ${D}${nonarch_base_libdir}/optee_armtz
|
||||
install -D -p -m0444 ${B}/plugins/* ${D}${libdir}/tee-supplicant/plugins
|
||||
}
|
||||
|
||||
FILES_${PN} += "${nonarch_base_libdir}/optee_armtz/"
|
||||
FILES_${PN} += "${nonarch_base_libdir}/optee_armtz/ \
|
||||
${libdir}/tee-supplicant/plugins/ \
|
||||
"
|
||||
|
||||
# Imports machine specific configs from staging to build
|
||||
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
||||
|
||||
-103
@@ -1,103 +0,0 @@
|
||||
From 29ae21de41f2fbab6dbecbbf408826b28de82df1 Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Tue, 1 Sep 2020 21:09:56 -0700
|
||||
Subject: [PATCH] make: Pass ldflags during link
|
||||
|
||||
OpenEmbeeded needs to pass essential linker flags to set correct flags
|
||||
for gnu_hash among others which sets the linking straight
|
||||
using LDFLAGS varible here means, we can affect the linker flags
|
||||
from build environment
|
||||
|
||||
Upstream-Status: Submitted [https://github.com/linaro-swg/optee_examples/pull/85]
|
||||
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
acipher/host/Makefile | 2 +-
|
||||
aes/host/Makefile | 2 +-
|
||||
hello_world/host/Makefile | 2 +-
|
||||
hotp/host/Makefile | 2 +-
|
||||
random/host/Makefile | 2 +-
|
||||
secure_storage/host/Makefile | 2 +-
|
||||
6 files changed, 6 insertions(+), 6 deletions(-)
|
||||
|
||||
diff --git a/acipher/host/Makefile b/acipher/host/Makefile
|
||||
index 8f4bc8a..c2cabef 100644
|
||||
--- a/acipher/host/Makefile
|
||||
+++ b/acipher/host/Makefile
|
||||
@@ -18,7 +18,7 @@ BINARY = optee_example_acipher
|
||||
all: $(BINARY)
|
||||
|
||||
$(BINARY): $(OBJS)
|
||||
- $(CC) -o $@ $< $(LDADD)
|
||||
+ $(CC) -o $@ $< $(LDFLAGS) $(LDADD)
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
diff --git a/aes/host/Makefile b/aes/host/Makefile
|
||||
index dfeb4e8..f61c71b 100644
|
||||
--- a/aes/host/Makefile
|
||||
+++ b/aes/host/Makefile
|
||||
@@ -18,7 +18,7 @@ BINARY = optee_example_aes
|
||||
all: $(BINARY)
|
||||
|
||||
$(BINARY): $(OBJS)
|
||||
- $(CC) -o $@ $< $(LDADD)
|
||||
+ $(CC) -o $@ $< $(LDFLAGS) $(LDADD)
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
diff --git a/hello_world/host/Makefile b/hello_world/host/Makefile
|
||||
index c4c8239..69cf42c 100644
|
||||
--- a/hello_world/host/Makefile
|
||||
+++ b/hello_world/host/Makefile
|
||||
@@ -18,7 +18,7 @@ BINARY = optee_example_hello_world
|
||||
all: $(BINARY)
|
||||
|
||||
$(BINARY): $(OBJS)
|
||||
- $(CC) -o $@ $< $(LDADD)
|
||||
+ $(CC) -o $@ $< $(LDFLAGS) $(LDADD)
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
diff --git a/hotp/host/Makefile b/hotp/host/Makefile
|
||||
index cb7fd19..e7f013f 100644
|
||||
--- a/hotp/host/Makefile
|
||||
+++ b/hotp/host/Makefile
|
||||
@@ -18,7 +18,7 @@ BINARY = optee_example_hotp
|
||||
all: $(BINARY)
|
||||
|
||||
$(BINARY): $(OBJS)
|
||||
- $(CC) -o $@ $< $(LDADD)
|
||||
+ $(CC) -o $@ $< $(LDFLAGS) $(LDADD)
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
diff --git a/random/host/Makefile b/random/host/Makefile
|
||||
index fd407d9..9377f7a 100644
|
||||
--- a/random/host/Makefile
|
||||
+++ b/random/host/Makefile
|
||||
@@ -18,7 +18,7 @@ BINARY = optee_example_random
|
||||
all: $(BINARY)
|
||||
|
||||
$(BINARY): $(OBJS)
|
||||
- $(CC) -o $@ $< $(LDADD)
|
||||
+ $(CC) -o $@ $< $(LDFLAGS) $(LDADD)
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
diff --git a/secure_storage/host/Makefile b/secure_storage/host/Makefile
|
||||
index 29bfb87..b3265ae 100644
|
||||
--- a/secure_storage/host/Makefile
|
||||
+++ b/secure_storage/host/Makefile
|
||||
@@ -18,7 +18,7 @@ BINARY = optee_example_secure_storage
|
||||
all: $(BINARY)
|
||||
|
||||
$(BINARY): $(OBJS)
|
||||
- $(CC) -o $@ $< $(LDADD)
|
||||
+ $(CC) -o $@ $< $(LDFLAGS) $(LDADD)
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
--
|
||||
2.28.0
|
||||
|
||||
+84
@@ -0,0 +1,84 @@
|
||||
From 79c826c249001700007a6dffe80c3d61ff4428ef Mon Sep 17 00:00:00 2001
|
||||
From: Sumit Garg <sumit.garg@linaro.org>
|
||||
Date: Tue, 20 Jul 2021 13:54:30 +0530
|
||||
Subject: [PATCH 1/2] plugins: Honour default cross compiler environment setup
|
||||
|
||||
Honour default $(CC), $(CFLAGS) and $(LDFLAGS) variables. Without this
|
||||
plugins example fails to build for OE/Yocto.
|
||||
|
||||
Upstream-Status: Submitted [https://github.com/linaro-swg/optee_examples/pull/87]
|
||||
|
||||
Signed-off-by: Sumit Garg <sumit.garg@linaro.org>
|
||||
---
|
||||
plugins/Makefile | 2 +-
|
||||
plugins/host/Makefile | 2 +-
|
||||
plugins/syslog/Makefile | 16 ++++++++++++----
|
||||
3 files changed, 14 insertions(+), 6 deletions(-)
|
||||
|
||||
diff --git a/plugins/Makefile b/plugins/Makefile
|
||||
index 2372b38..ea472b4 100644
|
||||
--- a/plugins/Makefile
|
||||
+++ b/plugins/Makefile
|
||||
@@ -8,7 +8,7 @@ TA_CROSS_COMPILE ?= $(CROSS_COMPILE)
|
||||
all:
|
||||
$(MAKE) -C host CROSS_COMPILE="$(HOST_CROSS_COMPILE)" --no-builtin-variables
|
||||
$(MAKE) -C ta CROSS_COMPILE="$(TA_CROSS_COMPILE)" LDFLAGS=""
|
||||
- $(MAKE) -C syslog CROSS_COMPILE="$(HOST_CROSS_COMPILE)"
|
||||
+ $(MAKE) -C syslog CROSS_COMPILE="$(HOST_CROSS_COMPILE)" --no-builtin-variables
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
diff --git a/plugins/host/Makefile b/plugins/host/Makefile
|
||||
index 7285104..76244c7 100644
|
||||
--- a/plugins/host/Makefile
|
||||
+++ b/plugins/host/Makefile
|
||||
@@ -20,7 +20,7 @@ BINARY = optee_example_plugins
|
||||
all: $(BINARY)
|
||||
|
||||
$(BINARY): $(OBJS)
|
||||
- $(CC) -o $@ $< $(LDADD)
|
||||
+ $(CC) $(LDFLAGS) -o $@ $< $(LDADD)
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
diff --git a/plugins/syslog/Makefile b/plugins/syslog/Makefile
|
||||
index 62d916a..71f5f92 100644
|
||||
--- a/plugins/syslog/Makefile
|
||||
+++ b/plugins/syslog/Makefile
|
||||
@@ -1,3 +1,11 @@
|
||||
+CC ?= $(CROSS_COMPILE)gcc
|
||||
+LD ?= $(CROSS_COMPILE)ld
|
||||
+AR ?= $(CROSS_COMPILE)ar
|
||||
+NM ?= $(CROSS_COMPILE)nm
|
||||
+OBJCOPY ?= $(CROSS_COMPILE)objcopy
|
||||
+OBJDUMP ?= $(CROSS_COMPILE)objdump
|
||||
+READELF ?= $(CROSS_COMPILE)readelf
|
||||
+
|
||||
PLUGIN_UUID = 96bcf744-4f72-4866-bf1d-8634fd9c65e5
|
||||
|
||||
PLUGIN = $(PLUGIN_UUID).plugin
|
||||
@@ -6,17 +14,17 @@ PLUGIN_OBJ = $(patsubst %.c, %.o, $(PLUGIN_SRS))
|
||||
PLUGIN_INCLUDES_DIR = $(CURDIR) $(TEEC_EXPORT)/include
|
||||
|
||||
PLUGIN_INCLUDES = $(addprefix -I, $(PLUGIN_INCLUDES_DIR))
|
||||
-PLUGIN_CCFLAGS = -Wall -fPIC
|
||||
-PLUGIN_LDFLAGS = -shared
|
||||
+PLUGIN_CCFLAGS = $(CFLAGS) -Wall -fPIC
|
||||
+PLUGIN_LDFLAGS = $(LDFLAGS) -shared
|
||||
|
||||
.PHONY: all
|
||||
all: $(PLUGIN)
|
||||
|
||||
$(PLUGIN): $(PLUGIN_OBJ)
|
||||
- $(CROSS_COMPILE)gcc $(PLUGIN_LDFLAGS) $(PLUGIN_OBJ) -o $@
|
||||
+ $(CC) $(PLUGIN_LDFLAGS) $(PLUGIN_OBJ) -o $@
|
||||
|
||||
%.o: %.c
|
||||
- $(CROSS_COMPILE)gcc $(PLUGIN_CCFLAGS) $(PLUGIN_INCLUDES) -c $*.c -o $*.o
|
||||
+ $(CC) $(PLUGIN_CCFLAGS) $(PLUGIN_INCLUDES) -c $*.c -o $*.o
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
--
|
||||
2.25.1
|
||||
|
||||
+37
@@ -0,0 +1,37 @@
|
||||
From f4e5e74548d92258855434b550c58fe44993c148 Mon Sep 17 00:00:00 2001
|
||||
From: Sumit Garg <sumit.garg@linaro.org>
|
||||
Date: Tue, 20 Jul 2021 14:20:10 +0530
|
||||
Subject: [PATCH] Makefile: Enable plugins installation in rootfs
|
||||
|
||||
Upstream-Status: Submitted [https://github.com/linaro-swg/optee_examples/pull/87]
|
||||
|
||||
Signed-off-by: Sumit Garg <sumit.garg@linaro.org>
|
||||
|
||||
---
|
||||
Makefile | 5 +++++
|
||||
1 file changed, 5 insertions(+)
|
||||
|
||||
diff --git a/Makefile b/Makefile
|
||||
index a275842..9359d95 100644
|
||||
--- a/Makefile
|
||||
+++ b/Makefile
|
||||
@@ -25,14 +25,19 @@ prepare-for-rootfs: examples
|
||||
@mkdir -p $(OUTPUT_DIR)
|
||||
@mkdir -p $(OUTPUT_DIR)/ta
|
||||
@mkdir -p $(OUTPUT_DIR)/ca
|
||||
+ @mkdir -p $(OUTPUT_DIR)/plugins
|
||||
@for example in $(EXAMPLE_LIST); do \
|
||||
if [ -e $$example/host/optee_example_$$example ]; then \
|
||||
cp -p $$example/host/optee_example_$$example $(OUTPUT_DIR)/ca/; \
|
||||
fi; \
|
||||
cp -pr $$example/ta/*.ta $(OUTPUT_DIR)/ta/; \
|
||||
+ if [ $$example = plugins ]; then \
|
||||
+ cp -p plugins/syslog/*.plugin $(OUTPUT_DIR)/plugins/; \
|
||||
+ fi; \
|
||||
done
|
||||
|
||||
prepare-for-rootfs-clean:
|
||||
@rm -rf $(OUTPUT_DIR)/ta
|
||||
@rm -rf $(OUTPUT_DIR)/ca
|
||||
+ @rm -rf $(OUTPUT_DIR)/plugins
|
||||
@rmdir --ignore-fail-on-non-empty $(OUTPUT_DIR) || test ! -e $(OUTPUT_DIR)
|
||||
@@ -1,4 +0,0 @@
|
||||
require optee-examples.inc
|
||||
|
||||
SRCREV = "9a7dc598591990349d88b4dba3a37aadd6851295"
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
require optee-examples.inc
|
||||
|
||||
SRCREV = "e9c870525af8f7e7fccf575a0ca5394ce55adcec"
|
||||
|
||||
-62
@@ -1,62 +0,0 @@
|
||||
Upstream-Status: Backport
|
||||
Signed-off-by: Ross Burton <ross.burton@arm.com>
|
||||
|
||||
From 36e784f621bf5d5be9183beba35f39426277c110 Mon Sep 17 00:00:00 2001
|
||||
From: Volodymyr Babchuk <volodymyr_babchuk@epam.com>
|
||||
Date: Tue, 13 Oct 2020 22:45:39 +0300
|
||||
Subject: [PATCH 1/3] libutils: provide empty __getauxval() implementation
|
||||
|
||||
Never version of libgcc are built with LSE implementation in mind. To
|
||||
determine if LSE is available on platform it calls __getauxval(), so in
|
||||
some cases we can get undefined reference to __getauxval() error.
|
||||
|
||||
Prominent case is libgcc_eh.a library, which is used by C++ TAs. Exception
|
||||
handler depends on atomic operations, so it tries to call
|
||||
init_have_lse_atomics() first. This function in turn calls __getauxval(),
|
||||
which causes linking error.
|
||||
|
||||
In the future we can make __getauxval() to return actual platform
|
||||
capabilities.
|
||||
|
||||
Signed-off-by: Volodymyr Babchuk <volodymyr_babchuk@epam.com>
|
||||
Reviewed-by: Jens Wiklander <jens.wiklander@linaro.org>
|
||||
Reviewed-by: Jerome Forissier <jerome@forissier.org>
|
||||
---
|
||||
lib/libutils/ext/arch/arm/auxval.c | 12 ++++++++++++
|
||||
lib/libutils/ext/arch/arm/sub.mk | 1 +
|
||||
2 files changed, 13 insertions(+)
|
||||
create mode 100644 lib/libutils/ext/arch/arm/auxval.c
|
||||
|
||||
diff --git a/lib/libutils/ext/arch/arm/auxval.c b/lib/libutils/ext/arch/arm/auxval.c
|
||||
new file mode 100644
|
||||
index 00000000..98bca850
|
||||
--- /dev/null
|
||||
+++ b/lib/libutils/ext/arch/arm/auxval.c
|
||||
@@ -0,0 +1,12 @@
|
||||
+// SPDX-License-Identifier: BSD-2-Clause
|
||||
+/*
|
||||
+ * Copyright (c) 2020, EPAM Systems
|
||||
+ */
|
||||
+
|
||||
+#include <compiler.h>
|
||||
+
|
||||
+unsigned long int __getauxval (unsigned long int type);
|
||||
+unsigned long int __getauxval (unsigned long int type __unused)
|
||||
+{
|
||||
+ return 0;
|
||||
+}
|
||||
diff --git a/lib/libutils/ext/arch/arm/sub.mk b/lib/libutils/ext/arch/arm/sub.mk
|
||||
index dc5eed67..2e779066 100644
|
||||
--- a/lib/libutils/ext/arch/arm/sub.mk
|
||||
+++ b/lib/libutils/ext/arch/arm/sub.mk
|
||||
@@ -3,6 +3,7 @@ srcs-$(CFG_ARM32_$(sm)) += aeabi_unwind.c
|
||||
endif
|
||||
srcs-$(CFG_ARM32_$(sm)) += atomic_a32.S
|
||||
srcs-$(CFG_ARM64_$(sm)) += atomic_a64.S
|
||||
+srcs-y += auxval.c
|
||||
ifneq ($(sm),ldelf) # TA, core
|
||||
srcs-$(CFG_ARM32_$(sm)) += mcount_a32.S
|
||||
srcs-$(CFG_ARM64_$(sm)) += mcount_a64.S
|
||||
--
|
||||
2.25.1
|
||||
|
||||
-55
@@ -1,55 +0,0 @@
|
||||
Upstream-Status: Backport
|
||||
Signed-off-by: Ross Burton <ross.burton@arm.com>
|
||||
|
||||
From 73196b58ea6978ffa5e581738030f51c5789ef73 Mon Sep 17 00:00:00 2001
|
||||
From: Volodymyr Babchuk <volodymyr_babchuk@epam.com>
|
||||
Date: Tue, 13 Oct 2020 22:54:13 +0300
|
||||
Subject: [PATCH 2/3] link.mk: implement support for libnames-after-libgcc
|
||||
variable
|
||||
|
||||
Newer versions of libgcc depend on external __getauxval() symbol, which is
|
||||
now provided by libutils. But libgcc is linked after libutils, so linker
|
||||
can't resolve that symbol. We can't include libgcc into linking group with
|
||||
libtutils, because libgcc provides symbols that conflict with libutil's
|
||||
ones, like __aeabi_idiv with friends for instance.
|
||||
|
||||
So, to resolve libgcc dependency on libutils we need to link with libutils
|
||||
second time. To make things more generic, we will introduce
|
||||
$(libnames-after-libgcc) variable for libraries that should be linked after
|
||||
libgcc.
|
||||
|
||||
Signed-off-by: Volodymyr Babchuk <volodymyr_babchuk@epam.com>
|
||||
Reviewed-by: Jens Wiklander <jens.wiklander@linaro.org>
|
||||
Reviewed-by: Jerome Forissier <jerome@forissier.org>
|
||||
---
|
||||
ta/arch/arm/link.mk | 6 +++++-
|
||||
1 file changed, 5 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/ta/arch/arm/link.mk b/ta/arch/arm/link.mk
|
||||
index 445c285d..3025acb1 100644
|
||||
--- a/ta/arch/arm/link.mk
|
||||
+++ b/ta/arch/arm/link.mk
|
||||
@@ -55,8 +55,11 @@ link-ldflags += --eh-frame-hdr
|
||||
link-ldadd += $(libstdc++$(sm)) $(libgcc_eh$(sm))
|
||||
endif
|
||||
link-ldadd += --end-group
|
||||
-ldargs-$(user-ta-uuid).elf := $(link-ldflags) $(objs) $(link-ldadd) $(libgcc$(sm))
|
||||
|
||||
+link-ldadd-after-libgcc += $(addprefix -l,$(libnames-after-libgcc))
|
||||
+
|
||||
+ldargs-$(user-ta-uuid).elf := $(link-ldflags) $(objs) $(link-ldadd) \
|
||||
+ $(libgcc$(sm)) $(link-ldadd-after-libgcc)
|
||||
|
||||
link-script-cppflags-$(sm) := \
|
||||
$(filter-out $(CPPFLAGS_REMOVE) $(cppflags-remove), \
|
||||
@@ -76,6 +79,7 @@ $(link-script-pp$(sm)): $(link-script$(sm)) $(conf-file) $(link-script-pp-makefi
|
||||
$(link-script-cppflags-$(sm)) $$< -o $$@
|
||||
|
||||
$(link-out-dir$(sm))/$(user-ta-uuid).elf: $(objs) $(libdeps) \
|
||||
+ $(libdeps-after-libgcc) \
|
||||
$(link-script-pp$(sm)) \
|
||||
$(dynlistdep) \
|
||||
$(additional-link-deps)
|
||||
--
|
||||
2.25.1
|
||||
|
||||
-44
@@ -1,44 +0,0 @@
|
||||
Upstream-Status: Backport
|
||||
Signed-off-by: Ross Burton <ross.burton@arm.com>
|
||||
|
||||
From f50962e3f56f0932662b2ffa10afe53339a335dd Mon Sep 17 00:00:00 2001
|
||||
From: Volodymyr Babchuk <volodymyr_babchuk@epam.com>
|
||||
Date: Fri, 16 Oct 2020 16:36:08 +0300
|
||||
Subject: [PATCH 3/3] ta_dev_kit.mk: make sure that libutils is linked second
|
||||
time
|
||||
|
||||
libgcc depends on __getauxval symbol from libuils. As, generally libutils
|
||||
is linked before libgcc, we will get "unresolved symbol" error. To resolve
|
||||
this dependency we need to link libutils second time - after libgcc.
|
||||
|
||||
Signed-off-by: Volodymyr Babchuk <volodymyr_babchuk@epam.com>
|
||||
Reviewed-by: Jens Wiklander <jens.wiklander@linaro.org>
|
||||
Reviewed-by: Jerome Forissier <jerome@forissier.org>
|
||||
---
|
||||
ta/mk/ta_dev_kit.mk | 10 ++++++++++
|
||||
1 file changed, 10 insertions(+)
|
||||
|
||||
diff --git a/ta/mk/ta_dev_kit.mk b/ta/mk/ta_dev_kit.mk
|
||||
index e28be677..d0e66317 100644
|
||||
--- a/ta/mk/ta_dev_kit.mk
|
||||
+++ b/ta/mk/ta_dev_kit.mk
|
||||
@@ -78,6 +78,16 @@ endif
|
||||
libnames += dl
|
||||
libdeps += $(ta-dev-kit-dir$(sm))/lib/libdl.a
|
||||
|
||||
+# libutils provides __getauxval symbol which is needed by libgcc 10.x. We can't
|
||||
+# link libutils after libgcc, because libgcc will replace some symbols provided
|
||||
+# by libutils, which will cause further linking issues.
|
||||
+#
|
||||
+# But if we place libutils before libgcc, linker will not be able to resolve
|
||||
+# __getauxval. So we need to link with libutils twice: before and after libgcc.
|
||||
+# Hence it included both in $(libnames) and in $(libnames-after-libgcc)
|
||||
+libnames-after-libgcc += utils
|
||||
+libdeps-after-libgcc += $(ta-dev-kit-dir$(sm))/lib/libutils.a
|
||||
+
|
||||
# Pass config variable (CFG_) from conf.mk on the command line
|
||||
cppflags$(sm) += $(strip \
|
||||
$(foreach var, $(filter CFG_%,$(.VARIABLES)), \
|
||||
--
|
||||
2.25.1
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
require optee-os.inc
|
||||
|
||||
SRCREV = "c4def2a8262a03244d9a88461699b9b8e43c6b55"
|
||||
|
||||
SRC_URI_append = " \
|
||||
file://0006-allow-setting-sysroot-for-libgcc-lookup.patch \
|
||||
file://0007-allow-setting-sysroot-for-clang.patch \
|
||||
file://0001-libutils-provide-empty-__getauxval-implementation.patch \
|
||||
file://0002-link.mk-implement-support-for-libnames-after-libgcc-.patch \
|
||||
file://0003-ta_dev_kit.mk-make-sure-that-libutils-is-linked-seco.patch \
|
||||
"
|
||||
@@ -0,0 +1,8 @@
|
||||
require optee-os.inc
|
||||
|
||||
SRCREV = "d21befa5e53eae9db469eba1685f5aa5c6f92c2f"
|
||||
|
||||
SRC_URI_append = " \
|
||||
file://0006-allow-setting-sysroot-for-libgcc-lookup.patch \
|
||||
file://0007-allow-setting-sysroot-for-clang.patch \
|
||||
"
|
||||
@@ -8,17 +8,9 @@ LIC_FILES_CHKSUM = "file://${S}/LICENSE.md;md5=daa2bcccc666345ab8940aab1315a4fa"
|
||||
inherit python3native ptest
|
||||
require optee.inc
|
||||
|
||||
# Linking fails on musl due to C++/threads
|
||||
# https://github.com/OP-TEE/optee_test/issues/458#issuecomment-720540834
|
||||
# When upgraded we should be able to remove this limitation
|
||||
COMPATIBLE_HOST_libc-musl = 'null'
|
||||
|
||||
DEPENDS = "optee-client optee-os python3-pycryptodome-native"
|
||||
|
||||
SRC_URI = "git://github.com/OP-TEE/optee_test.git \
|
||||
file://0001-host-xtest-Adjust-order-of-including-compiler.h.patch \
|
||||
file://0002-make-remove-Wno-unsafe-loop-for-clang.patch \
|
||||
file://0003-make-remove-Wmissing-noreturn-for-clang.patch \
|
||||
file://run-ptest \
|
||||
"
|
||||
|
||||
@@ -36,6 +28,7 @@ do_compile() {
|
||||
# Top level makefile doesn't seem to handle parallel make gracefully
|
||||
oe_runmake xtest
|
||||
oe_runmake ta
|
||||
oe_runmake test_plugin
|
||||
}
|
||||
do_compile[cleandirs] = "${B}"
|
||||
|
||||
@@ -46,9 +39,13 @@ do_install () {
|
||||
# default TEEC_LOAD_PATH is /lib
|
||||
mkdir -p ${D}${nonarch_base_libdir}/optee_armtz/
|
||||
install -D -p -m0444 ${B}/ta/*/*.ta ${D}${nonarch_base_libdir}/optee_armtz/
|
||||
mkdir -p ${D}${libdir}/tee-supplicant/plugins
|
||||
install -D -p -m0444 ${B}/supp_plugin/*.plugin ${D}${libdir}/tee-supplicant/plugins/
|
||||
}
|
||||
|
||||
FILES_${PN} += "${nonarch_base_libdir}/optee_armtz/"
|
||||
FILES_${PN} += "${nonarch_base_libdir}/optee_armtz/ \
|
||||
${libdir}/tee-supplicant/plugins/ \
|
||||
"
|
||||
|
||||
# Imports machine specific configs from staging to build
|
||||
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
||||
|
||||
-64
@@ -1,64 +0,0 @@
|
||||
From fc95b3ccbbfd336797ae2cfd6dd4dc58644e146f Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Sat, 30 May 2020 17:52:18 -0700
|
||||
Subject: [PATCH] host/xtest: Adjust order of including compiler.h
|
||||
|
||||
compiler.h defines some defines which violate libc namespace e.g.
|
||||
__unused, this works ok with glibc but fails in awkward ways with musl
|
||||
the reason is musl uses __unused in its internal structures and this
|
||||
define in compiler.h conflicts with system headers causing errors like
|
||||
|
||||
recipe-sysroot/usr/include/bits/stat.h:17:19: error: expected identifier or '(' before '[' token unsigned __unused[2];
|
||||
^
|
||||
including compiler.h afer sys/stat.h fixes the problem.
|
||||
|
||||
Upstream-Status: Pending [https://github.com/OP-TEE/optee_test/issues/453]
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
host/xtest/install_ta.c | 2 +-
|
||||
host/xtest/stats.c | 2 +-
|
||||
2 files changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/host/xtest/install_ta.c b/host/xtest/install_ta.c
|
||||
index 09a4c6d..6f7bb5c 100644
|
||||
--- a/host/xtest/install_ta.c
|
||||
+++ b/host/xtest/install_ta.c
|
||||
@@ -4,7 +4,6 @@
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
-#include <compiler.h>
|
||||
#include <dirent.h>
|
||||
#include <err.h>
|
||||
#include <errno.h>
|
||||
@@ -20,6 +19,7 @@
|
||||
#include <sys/types.h>
|
||||
#include <tee_client_api.h>
|
||||
#include <unistd.h>
|
||||
+#include <compiler.h>
|
||||
|
||||
#include "install_ta.h"
|
||||
#include "xtest_helpers.h"
|
||||
diff --git a/host/xtest/stats.c b/host/xtest/stats.c
|
||||
index 96b0b5f..db9bf25 100644
|
||||
--- a/host/xtest/stats.c
|
||||
+++ b/host/xtest/stats.c
|
||||
@@ -3,7 +3,6 @@
|
||||
* Copyright (c) 2019, Linaro Limited
|
||||
*/
|
||||
|
||||
-#include <compiler.h>
|
||||
#include <dirent.h>
|
||||
#include <err.h>
|
||||
#include <errno.h>
|
||||
@@ -18,6 +17,7 @@
|
||||
#include <sys/types.h>
|
||||
#include <tee_client_api.h>
|
||||
#include <unistd.h>
|
||||
+#include <compiler.h>
|
||||
#include "xtest_test.h"
|
||||
#include "stats.h"
|
||||
|
||||
--
|
||||
2.26.2
|
||||
|
||||
-31
@@ -1,31 +0,0 @@
|
||||
From 438533ce9da1df0b7c7914e64b39ffdc1da1ab79 Mon Sep 17 00:00:00 2001
|
||||
From: Brett Warren <brett.warran@arm.com>
|
||||
Date: Thu, 8 Oct 2020 10:03:25 +0100
|
||||
Subject: [PATCH] make: remove -Wmissing-noreturn for clang
|
||||
|
||||
When compiling when clang, -Wmissing-noreturn causes an error because
|
||||
of non-compliant code. This option is removed to workaround this.
|
||||
|
||||
Upstream-Status: Pending [https://github.com/OP-TEE/optee_test/issues/452]
|
||||
Changed-Id: 71cb511904547d790d1ea98f93bf8e5a6afcb36d
|
||||
Signed-off-by: Brett Warren <brett.warren@arm.com>
|
||||
---
|
||||
host/xtest/Makefile | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/host/xtest/Makefile b/host/xtest/Makefile
|
||||
index 3c206b0..96746de 100644
|
||||
--- a/host/xtest/Makefile
|
||||
+++ b/host/xtest/Makefile
|
||||
@@ -169,7 +169,7 @@ CFLAGS += -Wall -Wcast-align -Werror \
|
||||
-Werror-implicit-function-declaration -Wextra -Wfloat-equal \
|
||||
-Wformat-nonliteral -Wformat-security -Wformat=2 -Winit-self \
|
||||
-Wmissing-declarations -Wmissing-format-attribute \
|
||||
- -Wmissing-include-dirs -Wmissing-noreturn \
|
||||
+ -Wmissing-include-dirs \
|
||||
-Wmissing-prototypes -Wnested-externs -Wpointer-arith \
|
||||
-Wshadow -Wstrict-prototypes -Wswitch-default \
|
||||
-Wwrite-strings \
|
||||
--
|
||||
2.17.1
|
||||
|
||||
-31
@@ -1,31 +0,0 @@
|
||||
From ed5a9d9f7a3e9e14ca0e8aea59008124ee0e5f96 Mon Sep 17 00:00:00 2001
|
||||
From: Brett Warren <brett.warren@arm.com>
|
||||
Date: Thu, 8 Oct 2020 10:20:52 +0100
|
||||
Subject: [PATCH] make: remove -Wno-unsafe-loop for clang
|
||||
|
||||
When compiling with clang, the -Wno-unsafe-loop-optimizations option
|
||||
throws an error because clang doesn't recognise it. This option is
|
||||
removed to workaround this.
|
||||
|
||||
Upstream-Status: Pending [https://github.com/OP-TEE/optee_test/issues/452]
|
||||
Change-Id: 5fe0892c73208aaffac8c9995cb3275936fb1ba6
|
||||
Signed-off-by: Brett Warren <brett.warren@arm.com>
|
||||
---
|
||||
host/xtest/Makefile | 1 -
|
||||
1 file changed, 1 deletion(-)
|
||||
|
||||
diff --git a/host/xtest/Makefile b/host/xtest/Makefile
|
||||
index 96746de..73731d0 100644
|
||||
--- a/host/xtest/Makefile
|
||||
+++ b/host/xtest/Makefile
|
||||
@@ -174,7 +174,6 @@ CFLAGS += -Wall -Wcast-align -Werror \
|
||||
-Wshadow -Wstrict-prototypes -Wswitch-default \
|
||||
-Wwrite-strings \
|
||||
-Wno-declaration-after-statement \
|
||||
- -Wno-unsafe-loop-optimizations \
|
||||
-Wno-missing-field-initializers -Wno-format-zero-length
|
||||
endif
|
||||
|
||||
--
|
||||
2.17.1
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
require optee-test.inc
|
||||
|
||||
SRCREV = "159e295d5cc3ad2275ab15fe544620f6604d4ba4"
|
||||
@@ -0,0 +1,3 @@
|
||||
require optee-test.inc
|
||||
|
||||
SRCREV = "f2eb88affbb7f028561b4fd5cbd049d5d704f741"
|
||||
Reference in New Issue
Block a user