qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v3 0/5] add the BiosTablesTest UEFI app, build it with the new roms/edk2 submodule
@ 2019-02-04 16:03 Laszlo Ersek
  2019-02-04 16:03 ` [Qemu-devel] [PATCH v3 1/5] roms: add the edk2 project as a git submodule Laszlo Ersek
                   ` (6 more replies)
  0 siblings, 7 replies; 23+ messages in thread
From: Laszlo Ersek @ 2019-02-04 16:03 UTC (permalink / raw)
  To: qemu devel list
  Cc: Michael S. Tsirkin, Ard Biesheuvel, Gerd Hoffmann, Igor Mammedov,
	Philippe Mathieu-Daudé, Shannon Zhao

Previous version (v2):
http://mid.mail-archive.com/20190124203959.30875-1-lersek@redhat.com

Updates in v3 have been noted on each patch in the series.

Cc: "Michael S. Tsirkin" <mst@redhat.com>
Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Cc: Gerd Hoffmann <kraxel@redhat.com>
Cc: Igor Mammedov <imammedo@redhat.com>
Cc: Philippe Mathieu-Daudé <philmd@redhat.com>
Cc: Shannon Zhao <shannon.zhaosl@gmail.com>

Thanks
Laszlo

Laszlo Ersek (5):
  roms: add the edk2 project as a git submodule
  roms: build the EfiRom utility from the roms/edk2 submodule
  tests: introduce "uefi-test-tools" with the BiosTablesTest UEFI app
  tests/uefi-test-tools: add build scripts
  tests/data: introduce "uefi-boot-images" with the "bios-tables-test"
    ISOs

 .gitmodules                                                              |   3 +
 Makefile                                                                 |   6 +-
 roms/Makefile                                                            |  13 +-
 roms/edk2                                                                |   1 +
 tests/data/uefi-boot-images/bios-tables-test.aarch64.iso.qcow2           | Bin 0 -> 11776 bytes
 tests/data/uefi-boot-images/bios-tables-test.arm.iso.qcow2               | Bin 0 -> 11776 bytes
 tests/data/uefi-boot-images/bios-tables-test.i386.iso.qcow2              | Bin 0 -> 12800 bytes
 tests/data/uefi-boot-images/bios-tables-test.x86_64.iso.qcow2            | Bin 0 -> 13312 bytes
 tests/uefi-test-tools/.gitignore                                         |   3 +
 tests/uefi-test-tools/LICENSE                                            |  25 ++++
 tests/uefi-test-tools/Makefile                                           | 106 ++++++++++++++
 tests/uefi-test-tools/UefiTestToolsPkg/BiosTablesTest/BiosTablesTest.c   | 130 ++++++++++++++++++
 tests/uefi-test-tools/UefiTestToolsPkg/BiosTablesTest/BiosTablesTest.inf |  41 ++++++
 tests/uefi-test-tools/UefiTestToolsPkg/Include/Guid/BiosTablesTest.h     |  67 +++++++++
 tests/uefi-test-tools/UefiTestToolsPkg/UefiTestToolsPkg.dec              |  27 ++++
 tests/uefi-test-tools/UefiTestToolsPkg/UefiTestToolsPkg.dsc              |  69 ++++++++++
 tests/uefi-test-tools/build.sh                                           | 145 ++++++++++++++++++++
 17 files changed, 628 insertions(+), 8 deletions(-)
 create mode 160000 roms/edk2
 create mode 100644 tests/data/uefi-boot-images/bios-tables-test.aarch64.iso.qcow2
 create mode 100644 tests/data/uefi-boot-images/bios-tables-test.arm.iso.qcow2
 create mode 100644 tests/data/uefi-boot-images/bios-tables-test.i386.iso.qcow2
 create mode 100644 tests/data/uefi-boot-images/bios-tables-test.x86_64.iso.qcow2
 create mode 100644 tests/uefi-test-tools/.gitignore
 create mode 100644 tests/uefi-test-tools/LICENSE
 create mode 100644 tests/uefi-test-tools/Makefile
 create mode 100644 tests/uefi-test-tools/UefiTestToolsPkg/BiosTablesTest/BiosTablesTest.c
 create mode 100644 tests/uefi-test-tools/UefiTestToolsPkg/BiosTablesTest/BiosTablesTest.inf
 create mode 100644 tests/uefi-test-tools/UefiTestToolsPkg/Include/Guid/BiosTablesTest.h
 create mode 100644 tests/uefi-test-tools/UefiTestToolsPkg/UefiTestToolsPkg.dec
 create mode 100644 tests/uefi-test-tools/UefiTestToolsPkg/UefiTestToolsPkg.dsc
 create mode 100755 tests/uefi-test-tools/build.sh

-- 
2.19.1.3.g30247aa5d201

^ permalink raw reply	[flat|nested] 23+ messages in thread

end of thread, other threads:[~2019-02-12 18:34 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-04 16:03 [Qemu-devel] [PATCH v3 0/5] add the BiosTablesTest UEFI app, build it with the new roms/edk2 submodule Laszlo Ersek
2019-02-04 16:03 ` [Qemu-devel] [PATCH v3 1/5] roms: add the edk2 project as a git submodule Laszlo Ersek
2019-02-04 16:50   ` Philippe Mathieu-Daudé
2019-02-04 17:29     ` Laszlo Ersek
2019-02-04 16:03 ` [Qemu-devel] [PATCH v3 2/5] roms: build the EfiRom utility from the roms/edk2 submodule Laszlo Ersek
2019-02-04 16:03 ` [Qemu-devel] [PATCH v3 3/5] tests: introduce "uefi-test-tools" with the BiosTablesTest UEFI app Laszlo Ersek
2019-02-04 16:57   ` Philippe Mathieu-Daudé
2019-02-04 16:03 ` [Qemu-devel] [PATCH v3 4/5] tests/uefi-test-tools: add build scripts Laszlo Ersek
2019-02-04 17:00   ` Philippe Mathieu-Daudé
2019-02-04 17:47   ` Michael S. Tsirkin
2019-02-04 18:41     ` Laszlo Ersek
2019-02-04 19:32       ` Michael S. Tsirkin
2019-02-04 19:46         ` Philippe Mathieu-Daudé
2019-02-04 21:55           ` Michael S. Tsirkin
2019-02-05  0:23             ` Philippe Mathieu-Daudé
2019-02-05  8:49             ` Laszlo Ersek
2019-02-05 16:36               ` Michael S. Tsirkin
2019-02-04 16:03 ` [Qemu-devel] [PATCH v3 5/5] tests/data: introduce "uefi-boot-images" with the "bios-tables-test" ISOs Laszlo Ersek
2019-02-05 15:07 ` [Qemu-devel] [PATCH v3 0/5] add the BiosTablesTest UEFI app, build it with the new roms/edk2 submodule Igor Mammedov
2019-02-05 15:19   ` Laszlo Ersek
2019-02-06 10:30     ` Igor Mammedov
2019-02-12 18:34       ` Michael S. Tsirkin
2019-02-06 10:14 ` Igor Mammedov

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).