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>
This commit is contained in:
Sudan Landge
2026-01-20 11:30:27 +00:00
committed by Henrik Brix Andersen
parent c30ab4e404
commit 6891d57c01

View File

@@ -1,8 +1,15 @@
#
# 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()