We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05b7bf4 commit b6e17e1Copy full SHA for b6e17e1
boot/zephyr/CMakeLists.txt
@@ -305,11 +305,15 @@ elseif(CONFIG_BOOT_SIGNATURE_TYPE_ED25519 OR CONFIG_BOOT_ENCRYPT_X25519)
305
zephyr_library_sources(
306
${FIAT_DIR}/src/curve25519.c
307
)
308
- else()
+ elseif(NOT CONFIG_BOOT_SIGNATURE_USING_KMU)
309
310
${MBEDTLS_ASN1_DIR}/src/asn1parse.c
311
${BOOT_DIR}/bootutil/src/ed25519_psa.c
312
313
+ else()
314
+ zephyr_library_sources(
315
+ ${BOOT_DIR}/bootutil/src/ed25519_psa_kmu.c
316
+ )
317
endif()
318
319
0 commit comments