From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:47560) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hE5Yw-0007dp-4o for qemu-devel@nongnu.org; Wed, 10 Apr 2019 01:14:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hE5Yu-00041X-Ep for qemu-devel@nongnu.org; Wed, 10 Apr 2019 01:14:18 -0400 Received: from mail-wm1-f68.google.com ([209.85.128.68]:52762) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hE5Yu-00040R-36 for qemu-devel@nongnu.org; Wed, 10 Apr 2019 01:14:16 -0400 Received: by mail-wm1-f68.google.com with SMTP id a184so1040227wma.2 for ; Tue, 09 Apr 2019 22:14:15 -0700 (PDT) References: <20190409230022.6462-1-lersek@redhat.com> <20190409230022.6462-10-lersek@redhat.com> From: =?UTF-8?Q?Philippe_Mathieu-Daud=c3=a9?= Message-ID: <50a7fd7f-295e-d396-1f1e-e8fce874b3b2@redhat.com> Date: Wed, 10 Apr 2019 07:14:11 +0200 MIME-Version: 1.0 In-Reply-To: <20190409230022.6462-10-lersek@redhat.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 8bit Subject: Re: [Qemu-devel] [PATCH for-4.1 v4 09/12] pc-bios: document the edk2 firmware images; add firmware descriptors List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Laszlo Ersek , berrange@redhat.com, eblake@redhat.com, f4bug@amsat.org, imammedo@redhat.com, kraxel@redhat.com, mprivozn@redhat.com, mst@redhat.com, peter.maydell@linaro.org, qemu-devel@nongnu.org, Markus Armbruster On 4/10/19 1:00 AM, Laszlo Ersek wrote: > Update the README file with information on the images added previously, > and provide firmware descriptor documents that conform to > "docs/interop/firmware.json". > > Signed-off-by: Laszlo Ersek > Reviewed-by: Michal Privoznik > Reviewed-by: Michael S. Tsirkin > Tested-by: Igor Mammedov Reviewed-by: Philippe Mathieu-Daudé > --- > > Notes: > v4: > > - no change > > v3: > > - refer to "edk2-*.fd.bz2" rather than "edk2-*.fd.xz" in the README > [Peter] > > - pick up Igor's T-b still > > v2: > > - refer to "edk2-*.fd.xz" rather than "edk2-*.fd" in the README hunk > [Dan, Michael, Phil] > > - pick up Michal's and Michael's R-b's > > pc-bios/descriptors/50-edk2-i386-secure.json | 34 +++++++++++++++++++ > pc-bios/descriptors/50-edk2-x86_64-secure.json | 35 ++++++++++++++++++++ > pc-bios/descriptors/60-edk2-aarch64.json | 31 +++++++++++++++++ > pc-bios/descriptors/60-edk2-arm.json | 31 +++++++++++++++++ > pc-bios/descriptors/60-edk2-i386.json | 33 ++++++++++++++++++ > pc-bios/descriptors/60-edk2-x86_64.json | 34 +++++++++++++++++++ > pc-bios/README | 11 ++++++ > 7 files changed, 209 insertions(+) > > diff --git a/pc-bios/descriptors/50-edk2-i386-secure.json b/pc-bios/descriptors/50-edk2-i386-secure.json > new file mode 100644 > index 000000000000..d7108c1da05a > --- /dev/null > +++ b/pc-bios/descriptors/50-edk2-i386-secure.json > @@ -0,0 +1,34 @@ > +{ > + "description": "UEFI firmware for i386, with Secure Boot and SMM", > + "interface-types": [ > + "uefi" > + ], > + "mapping": { > + "device": "flash", > + "executable": { > + "filename": "@DATADIR@/edk2-i386-secure-code.fd", > + "format": "raw" > + }, > + "nvram-template": { > + "filename": "@DATADIR@/edk2-i386-vars.fd", > + "format": "raw" > + } > + }, > + "targets": [ > + { > + "architecture": "i386", > + "machines": [ > + "pc-q35-*" > + ] > + } > + ], > + "features": [ > + "acpi-s3", > + "requires-smm", > + "secure-boot", > + "verbose-dynamic" > + ], > + "tags": [ > + > + ] > +} > diff --git a/pc-bios/descriptors/50-edk2-x86_64-secure.json b/pc-bios/descriptors/50-edk2-x86_64-secure.json > new file mode 100644 > index 000000000000..387eb356236b > --- /dev/null > +++ b/pc-bios/descriptors/50-edk2-x86_64-secure.json > @@ -0,0 +1,35 @@ > +{ > + "description": "UEFI firmware for x86_64, with Secure Boot and SMM", > + "interface-types": [ > + "uefi" > + ], > + "mapping": { > + "device": "flash", > + "executable": { > + "filename": "@DATADIR@/edk2-x86_64-secure-code.fd", > + "format": "raw" > + }, > + "nvram-template": { > + "filename": "@DATADIR@/edk2-i386-vars.fd", > + "format": "raw" > + } > + }, > + "targets": [ > + { > + "architecture": "x86_64", > + "machines": [ > + "pc-q35-*" > + ] > + } > + ], > + "features": [ > + "acpi-s3", > + "amd-sev", > + "requires-smm", > + "secure-boot", > + "verbose-dynamic" > + ], > + "tags": [ > + > + ] > +} > diff --git a/pc-bios/descriptors/60-edk2-aarch64.json b/pc-bios/descriptors/60-edk2-aarch64.json > new file mode 100644 > index 000000000000..800a21bda691 > --- /dev/null > +++ b/pc-bios/descriptors/60-edk2-aarch64.json > @@ -0,0 +1,31 @@ > +{ > + "description": "UEFI firmware for aarch64", > + "interface-types": [ > + "uefi" > + ], > + "mapping": { > + "device": "flash", > + "executable": { > + "filename": "@DATADIR@/edk2-aarch64-code.fd", > + "format": "raw" > + }, > + "nvram-template": { > + "filename": "@DATADIR@/edk2-arm-vars.fd", > + "format": "raw" > + } > + }, > + "targets": [ > + { > + "architecture": "aarch64", > + "machines": [ > + "virt-*" > + ] > + } > + ], > + "features": [ > + "verbose-static" > + ], > + "tags": [ > + > + ] > +} > diff --git a/pc-bios/descriptors/60-edk2-arm.json b/pc-bios/descriptors/60-edk2-arm.json > new file mode 100644 > index 000000000000..d5f1bba6cc82 > --- /dev/null > +++ b/pc-bios/descriptors/60-edk2-arm.json > @@ -0,0 +1,31 @@ > +{ > + "description": "UEFI firmware for arm", > + "interface-types": [ > + "uefi" > + ], > + "mapping": { > + "device": "flash", > + "executable": { > + "filename": "@DATADIR@/edk2-arm-code.fd", > + "format": "raw" > + }, > + "nvram-template": { > + "filename": "@DATADIR@/edk2-arm-vars.fd", > + "format": "raw" > + } > + }, > + "targets": [ > + { > + "architecture": "arm", > + "machines": [ > + "virt-*" > + ] > + } > + ], > + "features": [ > + "verbose-static" > + ], > + "tags": [ > + > + ] > +} > diff --git a/pc-bios/descriptors/60-edk2-i386.json b/pc-bios/descriptors/60-edk2-i386.json > new file mode 100644 > index 000000000000..2f8dec74fecb > --- /dev/null > +++ b/pc-bios/descriptors/60-edk2-i386.json > @@ -0,0 +1,33 @@ > +{ > + "description": "UEFI firmware for i386", > + "interface-types": [ > + "uefi" > + ], > + "mapping": { > + "device": "flash", > + "executable": { > + "filename": "@DATADIR@/edk2-i386-code.fd", > + "format": "raw" > + }, > + "nvram-template": { > + "filename": "@DATADIR@/edk2-i386-vars.fd", > + "format": "raw" > + } > + }, > + "targets": [ > + { > + "architecture": "i386", > + "machines": [ > + "pc-i440fx-*", > + "pc-q35-*" > + ] > + } > + ], > + "features": [ > + "acpi-s3", > + "verbose-dynamic" > + ], > + "tags": [ > + > + ] > +} > diff --git a/pc-bios/descriptors/60-edk2-x86_64.json b/pc-bios/descriptors/60-edk2-x86_64.json > new file mode 100644 > index 000000000000..968cb65cf973 > --- /dev/null > +++ b/pc-bios/descriptors/60-edk2-x86_64.json > @@ -0,0 +1,34 @@ > +{ > + "description": "UEFI firmware for x86_64", > + "interface-types": [ > + "uefi" > + ], > + "mapping": { > + "device": "flash", > + "executable": { > + "filename": "@DATADIR@/edk2-x86_64-code.fd", > + "format": "raw" > + }, > + "nvram-template": { > + "filename": "@DATADIR@/edk2-i386-vars.fd", > + "format": "raw" > + } > + }, > + "targets": [ > + { > + "architecture": "x86_64", > + "machines": [ > + "pc-i440fx-*", > + "pc-q35-*" > + ] > + } > + ], > + "features": [ > + "acpi-s3", > + "amd-sev", > + "verbose-dynamic" > + ], > + "tags": [ > + > + ] > +} > diff --git a/pc-bios/README b/pc-bios/README > index d421cb3f1f97..807d95dd5418 100644 > --- a/pc-bios/README > +++ b/pc-bios/README > @@ -50,3 +50,14 @@ > > - QemuMacDrivers (https://github.com/ozbenh/QemuMacDrivers) is a project to > provide virtualised drivers for PPC MacOS guests. > + > +- The "edk2-*.fd.bz2" images are platform firmware binaries and matching UEFI > + variable store templates built from the TianoCore community's EFI Development > + Kit II project > + . The images > + were built at git tag "edk2-stable201903". The firmware binaries bundle parts > + of the OpenSSL project, at git tag "OpenSSL_1_1_0j" (the OpenSSL tag is a > + function of the edk2 tag). Licensing information is given in > + "edk2-licenses.txt". The image files are described by the JSON documents in > + the "pc-bios/descriptors" directory, which conform to the > + "docs/interop/firmware.json" schema. > From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-11.9 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, MENTIONS_GIT_HOSTING,SIGNED_OFF_BY,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 8D697C10F11 for ; Wed, 10 Apr 2019 05:15:08 +0000 (UTC) Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 4DBDF20854 for ; Wed, 10 Apr 2019 05:15:08 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 4DBDF20854 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Received: from localhost ([127.0.0.1]:53618 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hE5Zj-0007wo-Hi for qemu-devel@archiver.kernel.org; Wed, 10 Apr 2019 01:15:07 -0400 Received: from eggs.gnu.org ([209.51.188.92]:47560) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hE5Yw-0007dp-4o for qemu-devel@nongnu.org; Wed, 10 Apr 2019 01:14:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hE5Yu-00041X-Ep for qemu-devel@nongnu.org; Wed, 10 Apr 2019 01:14:18 -0400 Received: from mail-wm1-f68.google.com ([209.85.128.68]:52762) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hE5Yu-00040R-36 for qemu-devel@nongnu.org; Wed, 10 Apr 2019 01:14:16 -0400 Received: by mail-wm1-f68.google.com with SMTP id a184so1040227wma.2 for ; Tue, 09 Apr 2019 22:14:15 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:to:references:from:openpgp:message-id :date:user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=1+8DSZwkSTfgz0H391SbuQAfxjmtA1PwRPsJLyFEB3U=; b=n0/3p409jT1FgJibpzotw3nnfnQ4MgoV3GzpoKoYPB9YWScLqLjFmUhvjQg8XBYWQ+ wyOfwJ1QjObJ+V1cO1/7DLKsNi9aK7wnwRsZRZPGWylltXHmbr37ienYjwgLhpyHYjdh aPREIUGbT3mbhDydh8ov62HXOUKmFjKVQfn8P0xqDM0XD78BhfMJZ88NgNfk0ivojdrt GnlDQRY08TquGg+1H3/HreSzQ2V5DUOgpfKO+y+ony91TQiS1xZlY3LZsX5uJs48T0Cr wSz1h/XNU0mqlcptZhG3Rx3Ek9kKFwIxeIBELbLQW4z9nLR4jw8HAEI6HC7HvwpU1fOa pfQQ== X-Gm-Message-State: APjAAAUiIyqr4nVgXcqJ64N3Jn0hQa/I6j3ponaavi+vmIhp21oFmp4w ZPqSeQmhi3wrsOm/bmqHetWFmQ== X-Google-Smtp-Source: APXvYqxBdyQfqybFNJmATa8IlNVEcrwSoCILVmflgE96WfjFLZLkQknG4WDxDDqjKvlmWIIBXiH2eQ== X-Received: by 2002:a1c:7a03:: with SMTP id v3mr1331376wmc.58.1554873254718; Tue, 09 Apr 2019 22:14:14 -0700 (PDT) Received: from [192.168.1.37] (193.red-88-21-103.staticip.rima-tde.net. [88.21.103.193]) by smtp.gmail.com with ESMTPSA id a10sm37835865wrs.19.2019.04.09.22.14.12 (version=TLS1_3 cipher=AEAD-AES128-GCM-SHA256 bits=128/128); Tue, 09 Apr 2019 22:14:14 -0700 (PDT) To: Laszlo Ersek , berrange@redhat.com, eblake@redhat.com, f4bug@amsat.org, imammedo@redhat.com, kraxel@redhat.com, mprivozn@redhat.com, mst@redhat.com, peter.maydell@linaro.org, qemu-devel@nongnu.org, Markus Armbruster References: <20190409230022.6462-1-lersek@redhat.com> <20190409230022.6462-10-lersek@redhat.com> From: =?UTF-8?Q?Philippe_Mathieu-Daud=c3=a9?= Openpgp: id=89C1E78F601EE86C867495CBA2A3FD6EDEADC0DE; url=http://pgp.mit.edu/pks/lookup?op=get&search=0xA2A3FD6EDEADC0DE Message-ID: <50a7fd7f-295e-d396-1f1e-e8fce874b3b2@redhat.com> Date: Wed, 10 Apr 2019 07:14:11 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.6.1 MIME-Version: 1.0 In-Reply-To: <20190409230022.6462-10-lersek@redhat.com> Content-Type: text/plain; charset="UTF-8" Content-Language: en-US Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 209.85.128.68 Subject: Re: [Qemu-devel] [PATCH for-4.1 v4 09/12] pc-bios: document the edk2 firmware images; add firmware descriptors X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Sender: "Qemu-devel" Message-ID: <20190410051411.D2vNWBkyRq9zbX7Ac5a0qCn1lg1tH2TspotwleonwQI@z> On 4/10/19 1:00 AM, Laszlo Ersek wrote: > Update the README file with information on the images added previously, > and provide firmware descriptor documents that conform to > "docs/interop/firmware.json". > > Signed-off-by: Laszlo Ersek > Reviewed-by: Michal Privoznik > Reviewed-by: Michael S. Tsirkin > Tested-by: Igor Mammedov Reviewed-by: Philippe Mathieu-Daudé > --- > > Notes: > v4: > > - no change > > v3: > > - refer to "edk2-*.fd.bz2" rather than "edk2-*.fd.xz" in the README > [Peter] > > - pick up Igor's T-b still > > v2: > > - refer to "edk2-*.fd.xz" rather than "edk2-*.fd" in the README hunk > [Dan, Michael, Phil] > > - pick up Michal's and Michael's R-b's > > pc-bios/descriptors/50-edk2-i386-secure.json | 34 +++++++++++++++++++ > pc-bios/descriptors/50-edk2-x86_64-secure.json | 35 ++++++++++++++++++++ > pc-bios/descriptors/60-edk2-aarch64.json | 31 +++++++++++++++++ > pc-bios/descriptors/60-edk2-arm.json | 31 +++++++++++++++++ > pc-bios/descriptors/60-edk2-i386.json | 33 ++++++++++++++++++ > pc-bios/descriptors/60-edk2-x86_64.json | 34 +++++++++++++++++++ > pc-bios/README | 11 ++++++ > 7 files changed, 209 insertions(+) > > diff --git a/pc-bios/descriptors/50-edk2-i386-secure.json b/pc-bios/descriptors/50-edk2-i386-secure.json > new file mode 100644 > index 000000000000..d7108c1da05a > --- /dev/null > +++ b/pc-bios/descriptors/50-edk2-i386-secure.json > @@ -0,0 +1,34 @@ > +{ > + "description": "UEFI firmware for i386, with Secure Boot and SMM", > + "interface-types": [ > + "uefi" > + ], > + "mapping": { > + "device": "flash", > + "executable": { > + "filename": "@DATADIR@/edk2-i386-secure-code.fd", > + "format": "raw" > + }, > + "nvram-template": { > + "filename": "@DATADIR@/edk2-i386-vars.fd", > + "format": "raw" > + } > + }, > + "targets": [ > + { > + "architecture": "i386", > + "machines": [ > + "pc-q35-*" > + ] > + } > + ], > + "features": [ > + "acpi-s3", > + "requires-smm", > + "secure-boot", > + "verbose-dynamic" > + ], > + "tags": [ > + > + ] > +} > diff --git a/pc-bios/descriptors/50-edk2-x86_64-secure.json b/pc-bios/descriptors/50-edk2-x86_64-secure.json > new file mode 100644 > index 000000000000..387eb356236b > --- /dev/null > +++ b/pc-bios/descriptors/50-edk2-x86_64-secure.json > @@ -0,0 +1,35 @@ > +{ > + "description": "UEFI firmware for x86_64, with Secure Boot and SMM", > + "interface-types": [ > + "uefi" > + ], > + "mapping": { > + "device": "flash", > + "executable": { > + "filename": "@DATADIR@/edk2-x86_64-secure-code.fd", > + "format": "raw" > + }, > + "nvram-template": { > + "filename": "@DATADIR@/edk2-i386-vars.fd", > + "format": "raw" > + } > + }, > + "targets": [ > + { > + "architecture": "x86_64", > + "machines": [ > + "pc-q35-*" > + ] > + } > + ], > + "features": [ > + "acpi-s3", > + "amd-sev", > + "requires-smm", > + "secure-boot", > + "verbose-dynamic" > + ], > + "tags": [ > + > + ] > +} > diff --git a/pc-bios/descriptors/60-edk2-aarch64.json b/pc-bios/descriptors/60-edk2-aarch64.json > new file mode 100644 > index 000000000000..800a21bda691 > --- /dev/null > +++ b/pc-bios/descriptors/60-edk2-aarch64.json > @@ -0,0 +1,31 @@ > +{ > + "description": "UEFI firmware for aarch64", > + "interface-types": [ > + "uefi" > + ], > + "mapping": { > + "device": "flash", > + "executable": { > + "filename": "@DATADIR@/edk2-aarch64-code.fd", > + "format": "raw" > + }, > + "nvram-template": { > + "filename": "@DATADIR@/edk2-arm-vars.fd", > + "format": "raw" > + } > + }, > + "targets": [ > + { > + "architecture": "aarch64", > + "machines": [ > + "virt-*" > + ] > + } > + ], > + "features": [ > + "verbose-static" > + ], > + "tags": [ > + > + ] > +} > diff --git a/pc-bios/descriptors/60-edk2-arm.json b/pc-bios/descriptors/60-edk2-arm.json > new file mode 100644 > index 000000000000..d5f1bba6cc82 > --- /dev/null > +++ b/pc-bios/descriptors/60-edk2-arm.json > @@ -0,0 +1,31 @@ > +{ > + "description": "UEFI firmware for arm", > + "interface-types": [ > + "uefi" > + ], > + "mapping": { > + "device": "flash", > + "executable": { > + "filename": "@DATADIR@/edk2-arm-code.fd", > + "format": "raw" > + }, > + "nvram-template": { > + "filename": "@DATADIR@/edk2-arm-vars.fd", > + "format": "raw" > + } > + }, > + "targets": [ > + { > + "architecture": "arm", > + "machines": [ > + "virt-*" > + ] > + } > + ], > + "features": [ > + "verbose-static" > + ], > + "tags": [ > + > + ] > +} > diff --git a/pc-bios/descriptors/60-edk2-i386.json b/pc-bios/descriptors/60-edk2-i386.json > new file mode 100644 > index 000000000000..2f8dec74fecb > --- /dev/null > +++ b/pc-bios/descriptors/60-edk2-i386.json > @@ -0,0 +1,33 @@ > +{ > + "description": "UEFI firmware for i386", > + "interface-types": [ > + "uefi" > + ], > + "mapping": { > + "device": "flash", > + "executable": { > + "filename": "@DATADIR@/edk2-i386-code.fd", > + "format": "raw" > + }, > + "nvram-template": { > + "filename": "@DATADIR@/edk2-i386-vars.fd", > + "format": "raw" > + } > + }, > + "targets": [ > + { > + "architecture": "i386", > + "machines": [ > + "pc-i440fx-*", > + "pc-q35-*" > + ] > + } > + ], > + "features": [ > + "acpi-s3", > + "verbose-dynamic" > + ], > + "tags": [ > + > + ] > +} > diff --git a/pc-bios/descriptors/60-edk2-x86_64.json b/pc-bios/descriptors/60-edk2-x86_64.json > new file mode 100644 > index 000000000000..968cb65cf973 > --- /dev/null > +++ b/pc-bios/descriptors/60-edk2-x86_64.json > @@ -0,0 +1,34 @@ > +{ > + "description": "UEFI firmware for x86_64", > + "interface-types": [ > + "uefi" > + ], > + "mapping": { > + "device": "flash", > + "executable": { > + "filename": "@DATADIR@/edk2-x86_64-code.fd", > + "format": "raw" > + }, > + "nvram-template": { > + "filename": "@DATADIR@/edk2-i386-vars.fd", > + "format": "raw" > + } > + }, > + "targets": [ > + { > + "architecture": "x86_64", > + "machines": [ > + "pc-i440fx-*", > + "pc-q35-*" > + ] > + } > + ], > + "features": [ > + "acpi-s3", > + "amd-sev", > + "verbose-dynamic" > + ], > + "tags": [ > + > + ] > +} > diff --git a/pc-bios/README b/pc-bios/README > index d421cb3f1f97..807d95dd5418 100644 > --- a/pc-bios/README > +++ b/pc-bios/README > @@ -50,3 +50,14 @@ > > - QemuMacDrivers (https://github.com/ozbenh/QemuMacDrivers) is a project to > provide virtualised drivers for PPC MacOS guests. > + > +- The "edk2-*.fd.bz2" images are platform firmware binaries and matching UEFI > + variable store templates built from the TianoCore community's EFI Development > + Kit II project > + . The images > + were built at git tag "edk2-stable201903". The firmware binaries bundle parts > + of the OpenSSL project, at git tag "OpenSSL_1_1_0j" (the OpenSSL tag is a > + function of the edk2 tag). Licensing information is given in > + "edk2-licenses.txt". The image files are described by the JSON documents in > + the "pc-bios/descriptors" directory, which conform to the > + "docs/interop/firmware.json" schema. >