From nobody Sat Apr 27 19:14:35 2024 Delivered-To: importer@patchew.org Received-SPF: none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) client-ip=192.237.175.120; envelope-from=xen-devel-bounces@lists.xenproject.org; helo=lists.xenproject.org; Authentication-Results: mx.zohomail.com; spf=none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org ARC-Seal: i=1; a=rsa-sha256; t=1556551691; cv=none; d=zoho.com; s=zohoarc; b=bMkgtXEKU6EXANZ3r6O0uteNlY9OadE0V0ROUKlTNk17D4YiWzaD6WlPA3UUQPbBYWPNhGIxpU91zwmqccknfPwddyGOqYmTfe0hgB7WjruE5rxIFhbPiJEG7L/0sWKFjBe0gFvMcxxPDMQB2vMc7eT2NPZQSavNwuxf1iG3mM8= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1556551691; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:List-Subscribe:List-Post:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Sender:Subject:To:ARC-Authentication-Results; bh=s9RknxsF5uvtDVhIbkhFU2y1TzwKb6RDKkBViHoWBHs=; b=aeuTCZ4GfEh2P8YhsuzeJRPtFvZjYFdp1U+fmxxvMuRnM8Kb35LZ80VYmHB892Uyvx86hhvomi6j0VR4px0yY5bgP1Y+Wr1zTtnthYZO98rSXvdE9vDXGx28zPO8/s80giVV0WolkTvG2DS29+Bcsmh9AGcgjzP81ziYPG7rXBg= ARC-Authentication-Results: i=1; mx.zoho.com; spf=none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org Return-Path: Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) by mx.zohomail.com with SMTPS id 1556551691312312.78705914200884; Mon, 29 Apr 2019 08:28:11 -0700 (PDT) Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1hL8B2-0006nl-0g; Mon, 29 Apr 2019 15:26:44 +0000 Received: from us1-rack-dfw2.inumbo.com ([104.130.134.6]) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1hL8B0-0006nd-QW for xen-devel@lists.xenproject.org; Mon, 29 Apr 2019 15:26:42 +0000 Received: from SMTP03.CITRIX.COM (unknown [162.221.156.55]) by us1-rack-dfw2.inumbo.com (Halon) with ESMTPS id 3051fcff-6a93-11e9-843c-bc764e045a96; Mon, 29 Apr 2019 15:26:41 +0000 (UTC) X-Inumbo-ID: 3051fcff-6a93-11e9-843c-bc764e045a96 X-IronPort-AV: E=Sophos;i="5.60,409,1549929600"; d="scan'208";a="84662000" From: Ian Jackson MIME-Version: 1.0 Message-ID: <23751.6062.590245.436664@mariner.uk.xensource.com> Date: Mon, 29 Apr 2019 16:26:38 +0100 To: Wei Liu , Anthony PERARD , Olaf Hering , Juergen Gross , Jan Beulich X-Mailer: VM 8.2.0b under 24.5.1 (i686-pc-linux-gnu) Subject: [Xen-devel] [PATCH STABLE] tools/firmware: update OVMF Makefile, when necessary X-BeenThere: xen-devel@lists.xenproject.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Cc: xen-devel@lists.xenproject.org Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Errors-To: xen-devel-bounces@lists.xenproject.org Sender: "Xen-devel" On advice from Wei, I am about to push this squashed backport to the stable trees. We think this will help fix osstest on those branches following the upgrade to Debian stretch. Ian. From e983e8ae84efd5e43045a3d20a820f13cb4a75bf Mon Sep 17 00:00:00 2001 From: Wei Liu Date: Wed, 28 Nov 2018 17:43:33 +0000 Subject: [PATCH] tools/firmware: update OVMF Makefile, when necessary [ This is two commits from master aka staging-4.12: ] OVMF has become dependent on OpenSSL, which is included as a submodule. Initialise submodules before building. Signed-off-by: Wei Liu Reviewed-by: Anthony PERARD (cherry picked from commit b16281870e06f5f526029a4e69634a16dc38e8e4) tools: only call git when necessary in OVMF Makefile Users may choose to export a snapshot of OVMF and build it with xen.git supplied ovmf-makefile. In that case we don't need to call `git submodule`. Fixes b16281870e. Reported-by: Olaf Hering Signed-off-by: Wei Liu Reviewed-by: Anthony PERARD Release-acked-by: Juergen Gross (cherry picked from commit 68292c94a60eab24514ab4a8e4772af24dead807) --- tools/firmware/ovmf-makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/firmware/ovmf-makefile b/tools/firmware/ovmf-makefile index 2838744461..55f9992145 100644 --- a/tools/firmware/ovmf-makefile +++ b/tools/firmware/ovmf-makefile @@ -16,6 +16,7 @@ all: build =20 .PHONY: build build: + if test -e .git ; then $(GIT) submodule update --init --recursive ; fi OvmfPkg/build.sh -a X64 -b $(TARGET) -n 4 cp Build/OvmfX64/$(TARGET)_GCC*/FV/OVMF.fd ovmf.bin =20 --=20 2.11.0 _______________________________________________ Xen-devel mailing list Xen-devel@lists.xenproject.org https://lists.xenproject.org/mailman/listinfo/xen-devel