From: Igor Mammedov <imammedo@redhat.com> To: Laszlo Ersek <lersek@redhat.com> Cc: berrange@redhat.com, eblake@redhat.com, f4bug@amsat.org, kraxel@redhat.com, mprivozn@redhat.com, mst@redhat.com, peter.maydell@linaro.org, philmd@redhat.com, qemu-devel@nongnu.org Subject: Re: [Qemu-devel] [PATCH for-4.1 v4 00/12] bundle edk2 platform firmware with QEMU Date: Wed, 10 Apr 2019 11:12:41 +0200 [thread overview] Message-ID: <20190410111241.43094201@redhat.com> (raw) In-Reply-To: <20190409230022.6462-1-lersek@redhat.com> On Wed, 10 Apr 2019 01:00:10 +0200 Laszlo Ersek <lersek@redhat.com> wrote: > Repo: https://github.com/lersek/qemu.git > Branch: edk2_build_v4 > > Posting a v4 is necessary because patch #6 needs > - manual conflict resolution against some commits between v4.0.0-rc2 and > v4.0.0-rc3, > - and corresponding commit message updates. > > These are noted in more detail on the patch itself: > > [PATCH for-4.1 v4 06/12] > roms/Makefile: replace the $(EDK2_EFIROM) target with "edk2-basetools" > > Due to this update, I had to drop all previous feedback tags on this > patch. I plan to send a pullreq as soon as 4.0 is released, so please > re-review / retest the above patch (and *only* the above patch) soon. > (The notes on the patch list the tags individually that I've now > dropped.) > > Version 3, that is: > > [Qemu-devel] [PATCH for-4.1 v3 00/12] bundle edk2 platform firmware with QEMU For whole series: Reviewed-by: Igor Mammedov <imammedo@redhat.com> > > was posted at: > > https://lists.gnu.org/archive/html/qemu-devel/2019-03/msg06148.html > http://mid.mail-archive.com/20190321113408.19929-1-lersek@redhat.com > > Thanks, > Laszlo > > Laszlo Ersek (12): > roms: lift "edk2-funcs.sh" from "tests/uefi-test-tools/build.sh" > roms/edk2-funcs.sh: require gcc-4.8+ for building i386 and x86_64 > tests/uefi-test-tools/build.sh: work around TianoCore#1607 > roms/edk2: advance to tag edk2-stable201903 > roms/edk2-funcs.sh: add the qemu_edk2_get_thread_count() function > roms/Makefile: replace the $(EDK2_EFIROM) target with "edk2-basetools" > roms: build edk2 firmware binaries and variable store templates > pc-bios: add edk2 firmware binaries and variable store templates > pc-bios: document the edk2 firmware images; add firmware descriptors > tests: add missing dependency to build QTEST_QEMU_BINARY, round 2 > Makefile: install the edk2 firmware images and their descriptors > MAINTAINERS: add the "EDK2 Firmware" subsystem > > .gitignore | 1 + > MAINTAINERS | 12 + > Makefile | 29 ++- > configure | 1 + > pc-bios/README | 11 + > 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/edk2-aarch64-code.fd.bz2 | Bin 0 -> 1177603 bytes > pc-bios/edk2-arm-code.fd.bz2 | Bin 0 -> 1173662 bytes > pc-bios/edk2-arm-vars.fd.bz2 | Bin 0 -> 263 bytes > pc-bios/edk2-i386-code.fd.bz2 | Bin 0 -> 1688659 bytes > pc-bios/edk2-i386-secure-code.fd.bz2 | Bin 0 -> 1881979 bytes > pc-bios/edk2-i386-vars.fd.bz2 | Bin 0 -> 190 bytes > pc-bios/edk2-licenses.txt | 209 ++++++++++++++++ > pc-bios/edk2-x86_64-code.fd.bz2 | Bin 0 -> 1669280 bytes > pc-bios/edk2-x86_64-secure-code.fd.bz2 | Bin 0 -> 1901210 bytes > roms/Makefile | 9 +- > roms/Makefile.edk2 | 148 ++++++++++++ > roms/edk2 | 2 +- > roms/edk2-build.sh | 55 +++++ > roms/edk2-funcs.sh | 253 ++++++++++++++++++++ > tests/Makefile.include | 2 +- > tests/uefi-test-tools/build.sh | 100 +------- > 27 files changed, 934 insertions(+), 96 deletions(-) > create mode 100644 pc-bios/descriptors/50-edk2-i386-secure.json > create mode 100644 pc-bios/descriptors/50-edk2-x86_64-secure.json > create mode 100644 pc-bios/descriptors/60-edk2-aarch64.json > create mode 100644 pc-bios/descriptors/60-edk2-arm.json > create mode 100644 pc-bios/descriptors/60-edk2-i386.json > create mode 100644 pc-bios/descriptors/60-edk2-x86_64.json > create mode 100644 pc-bios/edk2-aarch64-code.fd.bz2 > create mode 100644 pc-bios/edk2-arm-code.fd.bz2 > create mode 100644 pc-bios/edk2-arm-vars.fd.bz2 > create mode 100644 pc-bios/edk2-i386-code.fd.bz2 > create mode 100644 pc-bios/edk2-i386-secure-code.fd.bz2 > create mode 100644 pc-bios/edk2-i386-vars.fd.bz2 > create mode 100644 pc-bios/edk2-licenses.txt > create mode 100644 pc-bios/edk2-x86_64-code.fd.bz2 > create mode 100644 pc-bios/edk2-x86_64-secure-code.fd.bz2 > create mode 100644 roms/Makefile.edk2 > create mode 100755 roms/edk2-build.sh > create mode 100644 roms/edk2-funcs.sh >
WARNING: multiple messages have this Message-ID (diff)
From: Igor Mammedov <imammedo@redhat.com> To: Laszlo Ersek <lersek@redhat.com> Cc: peter.maydell@linaro.org, mst@redhat.com, qemu-devel@nongnu.org, mprivozn@redhat.com, f4bug@amsat.org, philmd@redhat.com, kraxel@redhat.com Subject: Re: [Qemu-devel] [PATCH for-4.1 v4 00/12] bundle edk2 platform firmware with QEMU Date: Wed, 10 Apr 2019 11:12:41 +0200 [thread overview] Message-ID: <20190410111241.43094201@redhat.com> (raw) Message-ID: <20190410091241.mL3SlvEQMB_8ouUu6XnvfccFrxBQ-OA3gYhYX2VyblE@z> (raw) In-Reply-To: <20190409230022.6462-1-lersek@redhat.com> On Wed, 10 Apr 2019 01:00:10 +0200 Laszlo Ersek <lersek@redhat.com> wrote: > Repo: https://github.com/lersek/qemu.git > Branch: edk2_build_v4 > > Posting a v4 is necessary because patch #6 needs > - manual conflict resolution against some commits between v4.0.0-rc2 and > v4.0.0-rc3, > - and corresponding commit message updates. > > These are noted in more detail on the patch itself: > > [PATCH for-4.1 v4 06/12] > roms/Makefile: replace the $(EDK2_EFIROM) target with "edk2-basetools" > > Due to this update, I had to drop all previous feedback tags on this > patch. I plan to send a pullreq as soon as 4.0 is released, so please > re-review / retest the above patch (and *only* the above patch) soon. > (The notes on the patch list the tags individually that I've now > dropped.) > > Version 3, that is: > > [Qemu-devel] [PATCH for-4.1 v3 00/12] bundle edk2 platform firmware with QEMU For whole series: Reviewed-by: Igor Mammedov <imammedo@redhat.com> > > was posted at: > > https://lists.gnu.org/archive/html/qemu-devel/2019-03/msg06148.html > http://mid.mail-archive.com/20190321113408.19929-1-lersek@redhat.com > > Thanks, > Laszlo > > Laszlo Ersek (12): > roms: lift "edk2-funcs.sh" from "tests/uefi-test-tools/build.sh" > roms/edk2-funcs.sh: require gcc-4.8+ for building i386 and x86_64 > tests/uefi-test-tools/build.sh: work around TianoCore#1607 > roms/edk2: advance to tag edk2-stable201903 > roms/edk2-funcs.sh: add the qemu_edk2_get_thread_count() function > roms/Makefile: replace the $(EDK2_EFIROM) target with "edk2-basetools" > roms: build edk2 firmware binaries and variable store templates > pc-bios: add edk2 firmware binaries and variable store templates > pc-bios: document the edk2 firmware images; add firmware descriptors > tests: add missing dependency to build QTEST_QEMU_BINARY, round 2 > Makefile: install the edk2 firmware images and their descriptors > MAINTAINERS: add the "EDK2 Firmware" subsystem > > .gitignore | 1 + > MAINTAINERS | 12 + > Makefile | 29 ++- > configure | 1 + > pc-bios/README | 11 + > 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/edk2-aarch64-code.fd.bz2 | Bin 0 -> 1177603 bytes > pc-bios/edk2-arm-code.fd.bz2 | Bin 0 -> 1173662 bytes > pc-bios/edk2-arm-vars.fd.bz2 | Bin 0 -> 263 bytes > pc-bios/edk2-i386-code.fd.bz2 | Bin 0 -> 1688659 bytes > pc-bios/edk2-i386-secure-code.fd.bz2 | Bin 0 -> 1881979 bytes > pc-bios/edk2-i386-vars.fd.bz2 | Bin 0 -> 190 bytes > pc-bios/edk2-licenses.txt | 209 ++++++++++++++++ > pc-bios/edk2-x86_64-code.fd.bz2 | Bin 0 -> 1669280 bytes > pc-bios/edk2-x86_64-secure-code.fd.bz2 | Bin 0 -> 1901210 bytes > roms/Makefile | 9 +- > roms/Makefile.edk2 | 148 ++++++++++++ > roms/edk2 | 2 +- > roms/edk2-build.sh | 55 +++++ > roms/edk2-funcs.sh | 253 ++++++++++++++++++++ > tests/Makefile.include | 2 +- > tests/uefi-test-tools/build.sh | 100 +------- > 27 files changed, 934 insertions(+), 96 deletions(-) > create mode 100644 pc-bios/descriptors/50-edk2-i386-secure.json > create mode 100644 pc-bios/descriptors/50-edk2-x86_64-secure.json > create mode 100644 pc-bios/descriptors/60-edk2-aarch64.json > create mode 100644 pc-bios/descriptors/60-edk2-arm.json > create mode 100644 pc-bios/descriptors/60-edk2-i386.json > create mode 100644 pc-bios/descriptors/60-edk2-x86_64.json > create mode 100644 pc-bios/edk2-aarch64-code.fd.bz2 > create mode 100644 pc-bios/edk2-arm-code.fd.bz2 > create mode 100644 pc-bios/edk2-arm-vars.fd.bz2 > create mode 100644 pc-bios/edk2-i386-code.fd.bz2 > create mode 100644 pc-bios/edk2-i386-secure-code.fd.bz2 > create mode 100644 pc-bios/edk2-i386-vars.fd.bz2 > create mode 100644 pc-bios/edk2-licenses.txt > create mode 100644 pc-bios/edk2-x86_64-code.fd.bz2 > create mode 100644 pc-bios/edk2-x86_64-secure-code.fd.bz2 > create mode 100644 roms/Makefile.edk2 > create mode 100755 roms/edk2-build.sh > create mode 100644 roms/edk2-funcs.sh >
next prev parent reply other threads:[~2019-04-10 9:13 UTC|newest] Thread overview: 42+ messages / expand[flat|nested] mbox.gz Atom feed top 2019-04-09 23:00 [Qemu-devel] [PATCH for-4.1 v4 00/12] bundle edk2 platform firmware with QEMU Laszlo Ersek 2019-04-09 23:00 ` Laszlo Ersek 2019-04-09 23:00 ` [Qemu-devel] [PATCH for-4.1 v4 01/12] roms: lift "edk2-funcs.sh" from "tests/uefi-test-tools/build.sh" Laszlo Ersek 2019-04-09 23:00 ` Laszlo Ersek 2019-04-09 23:00 ` [Qemu-devel] [PATCH for-4.1 v4 02/12] roms/edk2-funcs.sh: require gcc-4.8+ for building i386 and x86_64 Laszlo Ersek 2019-04-09 23:00 ` Laszlo Ersek 2019-04-09 23:00 ` [Qemu-devel] [PATCH for-4.1 v4 03/12] tests/uefi-test-tools/build.sh: work around TianoCore#1607 Laszlo Ersek 2019-04-09 23:00 ` Laszlo Ersek 2019-04-09 23:00 ` [Qemu-devel] [PATCH for-4.1 v4 04/12] roms/edk2: advance to tag edk2-stable201903 Laszlo Ersek 2019-04-09 23:00 ` Laszlo Ersek 2019-04-09 23:00 ` [Qemu-devel] [PATCH for-4.1 v4 05/12] roms/edk2-funcs.sh: add the qemu_edk2_get_thread_count() function Laszlo Ersek 2019-04-09 23:00 ` Laszlo Ersek 2019-04-09 23:00 ` [Qemu-devel] [PATCH for-4.1 v4 06/12] roms/Makefile: replace the $(EDK2_EFIROM) target with "edk2-basetools" Laszlo Ersek 2019-04-09 23:00 ` Laszlo Ersek 2019-04-10 5:04 ` Philippe Mathieu-Daudé 2019-04-10 5:04 ` Philippe Mathieu-Daudé 2019-04-09 23:00 ` [Qemu-devel] [PATCH for-4.1 v4 07/12] roms: build edk2 firmware binaries and variable store templates Laszlo Ersek 2019-04-09 23:00 ` Laszlo Ersek 2019-04-10 5:18 ` Philippe Mathieu-Daudé 2019-04-10 5:18 ` Philippe Mathieu-Daudé 2019-04-09 23:00 ` [Qemu-devel] [PATCH for-4.1 v4 08/12] pc-bios: add " Laszlo Ersek 2019-04-09 23:00 ` Laszlo Ersek 2019-04-10 10:19 ` Philippe Mathieu-Daudé 2019-04-10 10:19 ` Philippe Mathieu-Daudé 2019-04-09 23:00 ` [Qemu-devel] [PATCH for-4.1 v4 09/12] pc-bios: document the edk2 firmware images; add firmware descriptors Laszlo Ersek 2019-04-09 23:00 ` Laszlo Ersek 2019-04-10 5:14 ` Philippe Mathieu-Daudé 2019-04-10 5:14 ` Philippe Mathieu-Daudé 2019-04-09 23:00 ` [Qemu-devel] [PATCH for-4.1 v4 10/12] tests: add missing dependency to build QTEST_QEMU_BINARY, round 2 Laszlo Ersek 2019-04-09 23:00 ` Laszlo Ersek 2019-04-10 10:26 ` Philippe Mathieu-Daudé 2019-04-10 10:26 ` Philippe Mathieu-Daudé 2019-04-09 23:00 ` [Qemu-devel] [PATCH for-4.1 v4 11/12] Makefile: install the edk2 firmware images and their descriptors Laszlo Ersek 2019-04-09 23:00 ` Laszlo Ersek 2019-04-10 10:18 ` Philippe Mathieu-Daudé 2019-04-10 10:18 ` Philippe Mathieu-Daudé 2019-04-09 23:00 ` [Qemu-devel] [PATCH for-4.1 v4 12/12] MAINTAINERS: add the "EDK2 Firmware" subsystem Laszlo Ersek 2019-04-09 23:00 ` Laszlo Ersek 2019-04-09 23:15 ` [Qemu-devel] [PATCH for-4.1 v4 00/12] bundle edk2 platform firmware with QEMU Michael S. Tsirkin 2019-04-09 23:15 ` Michael S. Tsirkin 2019-04-10 9:12 ` Igor Mammedov [this message] 2019-04-10 9:12 ` Igor Mammedov
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20190410111241.43094201@redhat.com \ --to=imammedo@redhat.com \ --cc=berrange@redhat.com \ --cc=eblake@redhat.com \ --cc=f4bug@amsat.org \ --cc=kraxel@redhat.com \ --cc=lersek@redhat.com \ --cc=mprivozn@redhat.com \ --cc=mst@redhat.com \ --cc=peter.maydell@linaro.org \ --cc=philmd@redhat.com \ --cc=qemu-devel@nongnu.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: linkBe sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).