From patchwork Thu Dec 9 19:22:58 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Abdellatif El Khlifi X-Patchwork-Id: 1082 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 97CF7C433EF for ; Thu, 9 Dec 2021 19:23:19 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web10.16288.1639077798693198069 for ; Thu, 09 Dec 2021 11:23:18 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: abdellatif.elkhlifi@arm.com) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 675EC11B3; Thu, 9 Dec 2021 11:23:18 -0800 (PST) Received: from e121910.arm.com (unknown [10.57.6.225]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 76DDB3F73B; Thu, 9 Dec 2021 11:23:17 -0800 (PST) From: abdellatif.elkhlifi@arm.com To: meta-arm@lists.yoctoproject.org, Ross.Burton@arm.com Cc: nd@arm.com, Vishnu Banavath Subject: [PATCH][HONISTER 6/8] arm/secure-partitions: pass TS_PLATFORM in the configure task Date: Thu, 9 Dec 2021 19:22:58 +0000 Message-Id: <20211209192300.29211-7-abdellatif.elkhlifi@arm.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20211209192300.29211-1-abdellatif.elkhlifi@arm.com> References: <20211209192300.29211-1-abdellatif.elkhlifi@arm.com> List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Thu, 09 Dec 2021 19:23:19 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arm/message/2605 From: Vishnu Banavath This commit passes the platform name to CMake through the configure task. Change-Id: I7aaf10e3709507c65dd81c31e0301df57bbdf4fc Signed-off-by: Vishnu Banavath --- .../recipes-security/trusted-services/secure-partitions_git.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-arm/recipes-security/trusted-services/secure-partitions_git.bb b/meta-arm/recipes-security/trusted-services/secure-partitions_git.bb index ca7ff81..b8b02e0 100644 --- a/meta-arm/recipes-security/trusted-services/secure-partitions_git.bb +++ b/meta-arm/recipes-security/trusted-services/secure-partitions_git.bb @@ -56,6 +56,7 @@ do_configure() { -DCMAKE_INSTALL_PREFIX=${D}/firmware/sp \ -DSP_DEV_KIT_DIR=${SP_DEV_KIT_DIR} \ -DSP_PACKAGING_METHOD=${SP_PACKAGING_METHOD} \ + -DTS_PLATFORM="${TS_PLATFORM}" \ -S ${S}/$TS_DEPLOYMENT -B "${B}/$TS_DEPLOYMENT" done }