summaryrefslogtreecommitdiff
path: root/plat/qemu
diff options
context:
space:
mode:
authorBoyan Karatotev <boyan.karatotev@arm.com>2023-01-13 16:47:07 +0000
committerBoyan Karatotev <boyan.karatotev@arm.com>2023-02-28 10:47:00 +0000
commit90ce8b8718d079b9e906d06bdd6a72da6cc5b636 (patch)
treeb3b1f4344f4190231657b19826f9b73d1347c197 /plat/qemu
parentb4fc04103e6afb0b9593b8e4027c3de73efbd971 (diff)
downloadarm-trusted-firmware-90ce8b8718d079b9e906d06bdd6a72da6cc5b636.tar.gz
fix(pauth): make pauth_helpers linking generic
Pauth is a generic Arm feature that can be enabled on any platform that implements it. It only needs a platform specific key generation hook. As such, the generic Pauth enablement can be included in the generic build. Signed-off-by: Boyan Karatotev <boyan.karatotev@arm.com> Change-Id: Ibf32f79addab3515214594bb8d7168151b450f59
Diffstat (limited to 'plat/qemu')
-rw-r--r--plat/qemu/qemu/platform.mk3
1 files changed, 1 insertions, 2 deletions
diff --git a/plat/qemu/qemu/platform.mk b/plat/qemu/qemu/platform.mk
index 4cbce9d04..d8f300ff7 100644
--- a/plat/qemu/qemu/platform.mk
+++ b/plat/qemu/qemu/platform.mk
@@ -213,8 +213,7 @@ BL31_SOURCES += lib/cpus/aarch64/aem_generic.S \
# Pointer Authentication sources
ifeq (${ENABLE_PAUTH}, 1)
-PLAT_BL_COMMON_SOURCES += plat/arm/common/aarch64/arm_pauth.c \
- lib/extensions/pauth/pauth_helpers.S
+PLAT_BL_COMMON_SOURCES += plat/arm/common/aarch64/arm_pauth.c
endif
ifeq (${SPD},spmd)