From 6d41f18c698bba09da04e00b3a7c872c6e750bf2 Mon Sep 17 00:00:00 2001 From: Devaraj Ranganna Date: Mon, 10 Feb 2020 15:46:39 +0000 Subject: [PATCH] Fix dependency (`requires` attribute) issue The folder restructuring needed to support TF-M in Mbed OS caused Mbed PSA services to be moved one folder under `FEATURE_PSA` but the `requires` attribute was missing which is needed to include Mbed PSA services. This was causing build issue while building Mbed OS in baremetal mode. Signed-off-by: Devaraj Ranganna --- TESTS/configs/baremetal.json | 1 + 1 file changed, 1 insertion(+) diff --git a/TESTS/configs/baremetal.json b/TESTS/configs/baremetal.json index 9d6963cac6..5bbe466f32 100644 --- a/TESTS/configs/baremetal.json +++ b/TESTS/configs/baremetal.json @@ -6,6 +6,7 @@ "utest", "unity", "psa", + "psa-services", "mbed-crypto", "mbedtls", "psa-compliance-framework",