From 1a2c728f63f97cdf5b130c919e4d5bc7d33be48a Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Mon, 27 Jul 2020 15:55:18 +0100 Subject: [PATCH] arm/trusted-firmware-m: no need to run parse_manifest_list This is part of the test instrumentation that we don't currently build. A future recipe or patch can enable this properly and ensure it is tested. Change-Id: I02584920b00085dfe4efbff166684c5717f6cdf5 Signed-off-by: Ross Burton --- .../trusted-firmware-m/trusted-firmware-m_1.0.bb | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/meta-arm/recipes-bsp/trusted-firmware-m/trusted-firmware-m_1.0.bb b/meta-arm/recipes-bsp/trusted-firmware-m/trusted-firmware-m_1.0.bb index 814529ae..f3a8724e 100644 --- a/meta-arm/recipes-bsp/trusted-firmware-m/trusted-firmware-m_1.0.bb +++ b/meta-arm/recipes-bsp/trusted-firmware-m/trusted-firmware-m_1.0.bb @@ -41,7 +41,7 @@ TFM_DEPENDS ?= "" DEPENDS += "${TFM_DEPENDS}" DEPENDS += "cmake-native" DEPENDS += "python3-cryptography-native python3-pyasn1-native" -DEPENDS += "python3-jinja2-native python3-cbor-native python3-pyyaml-native" +DEPENDS += "python3-cbor-native" S = "${WORKDIR}/git/tfm" B = "${WORKDIR}/build" @@ -96,10 +96,6 @@ do_check_config() { do_configure[cleandirs] = "${B}" do_configure() { - cd ${S} - python3 tools/tfm_parse_manifest_list.py - cd - - cmake -G"Unix Makefiles" --build ${S} ${EXTRA_OECMAKE} }