From 72b9598bc791b054bd27c51ad14a93600111dc37 Mon Sep 17 00:00:00 2001 From: Sudeep Holla Date: Mon, 2 Sep 2024 13:18:00 +0100 Subject: [PATCH] configs: Drop dummy DEPENDS_ON_PARAM paramter from ffa-hafnium-optee The dummy DEPENDS_ON_PARAM paramter is not used by TF-A but was added just to ensure OPTEE is built before TF-A as it is used indirectly via SP_LAYOUT_FILE. However, this is not needed as the prebuild section that generates the SP_LAYOUT_FILE already has the dependency built. This was added during the development before the prebuild section gained the generation of the SP_LAYOUT_FILE instead was using the static file. Drop the dummy DEPENDS_ON_PARAM paramter from ffa-hafnium-optee as it is no longer needed. Signed-off-by: Sudeep Holla --- config/ffa-hafnium-optee.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/config/ffa-hafnium-optee.yaml b/config/ffa-hafnium-optee.yaml index 30627b1..82170cd 100644 --- a/config/ffa-hafnium-optee.yaml +++ b/config/ffa-hafnium-optee.yaml @@ -41,10 +41,6 @@ build: - "}" - EOF params: - # This DEPENDS_ON_PARAM is not used by TF-A but just to ensure OPTEE is - # built before TF-A though it is not used by TF-A directly but - # indirectly via SP_LAYOUT_FILE - DEPENDS_ON_PARAM: ${artifact:OPTEE_PAGER_BIN} ARM_SPMC_MANIFEST_DTS: ${param:sourcedir}/plat/arm/board/fvp/fdts/fvp_spmc_optee_sp_manifest.dts SP_LAYOUT_FILE: ${param:builddir}/sp_layout.json BL32: ${artifact:HAFNIUM} -- GitLab