Merge "build(tlkd): add build error when building with FEAT_D128" into integration

This commit is contained in:
Manish V Badarkhe 2025-04-11 18:30:48 +02:00 committed by TrustedFirmware Code Review
commit 0b2f9d725c

View file

@ -1,5 +1,5 @@
#
# Copyright (c) 2024, ARM Limited and Contributors. All rights reserved.
# Copyright (c) 2024-2025, ARM Limited and Contributors. All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
#
@ -8,9 +8,11 @@ ifeq (${ERROR_DEPRECATED},0)
SPD_INCLUDES := -Iinclude/bl32/payloads
endif
ifeq (${ENABLE_FEAT_D128}, 0)
ifneq (${ENABLE_FEAT_D128}, 0)
$(error spd=tlkd will not work with ENABLE_FEAT_D128 enabled.)
endif
SPD_SOURCES := services/spd/tlkd/tlkd_common.c \
services/spd/tlkd/tlkd_helpers.S \
services/spd/tlkd/tlkd_main.c \
services/spd/tlkd/tlkd_pm.c
endif