From 549e05e486cb55697adf2fd068e6cc22dd194942 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Fri, 29 Sep 2023 16:21:23 +0100 Subject: [PATCH] arm/trusted-services/ts-sp-env-test: add missing DEPENDS This recipe won't pass configure without the jsonschema and jinja2 Python modules. Signed-off-by: Ross Burton Signed-off-by: Jon Mason --- .../recipes-security/trusted-services/ts-sp-env-test_git.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-arm/recipes-security/trusted-services/ts-sp-env-test_git.bb b/meta-arm/recipes-security/trusted-services/ts-sp-env-test_git.bb index 5551a4de..cda43e6e 100644 --- a/meta-arm/recipes-security/trusted-services/ts-sp-env-test_git.bb +++ b/meta-arm/recipes-security/trusted-services/ts-sp-env-test_git.bb @@ -8,4 +8,6 @@ COMPATIBLE_MACHINE ?= "invalid" SP_UUID = "${ENV_TEST_UUID}" TS_SP_ENVTEST_CONFIG ?= "baremetal-fvp_base_revc" +DEPENDS += "python3-jsonschema-native python3-jinja2-native" + OECMAKE_SOURCEPATH="${S}/deployments/env-test/config/${TS_SP_ENVTEST_CONFIG}-${TS_ENV}"