Skip to content

Commit 24b1768

Browse files
committed
crypto: Enable use on non-PSA targets
Move PSA Crypto implementation files outside of a TARGET_PSA folder, enabling use of PSA Crypto APIs on more Mbed OS targets.
1 parent 363ad8a commit 24b1768

File tree

14 files changed

+2
-2
lines changed

14 files changed

+2
-2
lines changed

features/mbedtls/mbed-crypto/importer/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ TLS_SRC := \
4848
# (NSPE). Documentation for each folder as follows:
4949
# COMPONENT_PSA_SRV_IMPL - Include secure service implementation code. For
5050
# example PSA Crypto or PSA Secure Time implementations
51-
TARGET_SRV_IMPL:=$(TARGET_PREFIX)/platform/TARGET_PSA/COMPONENT_PSA_SRV_IMPL
51+
TARGET_SRV_IMPL:=$(TARGET_PREFIX)/platform/COMPONENT_PSA_SRV_IMPL
5252
# COMPONENT_SPE - Include code that compiles ONLY to the SPE image and never
5353
# compiles to the NSPE image
54-
TARGET_SPE:=$(TARGET_PREFIX)/platform/TARGET_PSA/COMPONENT_SPE
54+
TARGET_SPE:=$(TARGET_PREFIX)/platform/COMPONENT_SPE
5555
# COMPONENT_NSPE - Include code that compiles ONLY to the NSPE image and never
5656
# compiles to the SPE image
5757
TARGET_NSPE:=$(TARGET_SRV_IMPL)/COMPONENT_NSPE

0 commit comments

Comments
 (0)