Files
zephyr/boards/arm/v2m_musca_s1/CMakeLists.txt
Sudan Landge 6891d57c01 boards: arm: musca_s1: disable crypto HW acceleration
Disable HW acceleration to fix CI failures caused by -Werror triggered
by prototype mismatches in the crypto accelerator path between TF-M and
Mbed TLS.

Signed-off-by: Sudan Landge <sudan.landge@arm.com>
2026-01-21 17:08:08 +01:00

16 lines
368 B
CMake

#
# Copyright (c) 2019-2020 Linaro Limited
# Copyright 2026 Arm Limited and/or its affiliates <open-source-office@arm.com>
#
# SPDX-License-Identifier: Apache-2.0
#
zephyr_library()
zephyr_library_sources(pinmux.c)
if(CONFIG_BUILD_WITH_TFM)
set_property(TARGET zephyr_property_target
APPEND PROPERTY TFM_CMAKE_OPTIONS -DCRYPTO_HW_ACCELERATOR=OFF
)
endif()