From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:37814) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gpDGG-0000rS-69 for qemu-devel@nongnu.org; Thu, 31 Jan 2019 09:24:14 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gpDGE-0000Ry-RP for qemu-devel@nongnu.org; Thu, 31 Jan 2019 09:24:11 -0500 Received: from mx1.redhat.com ([209.132.183.28]:5327) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gpDGE-0000Ri-Js for qemu-devel@nongnu.org; Thu, 31 Jan 2019 09:24:10 -0500 From: Laszlo Ersek References: <20190124203959.30875-1-lersek@redhat.com> Message-ID: Date: Thu, 31 Jan 2019 15:23:50 +0100 MIME-Version: 1.0 In-Reply-To: <20190124203959.30875-1-lersek@redhat.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH v2 0/5] add the BiosTablesTest UEFI app, build it with the new roms/edk2 submodule List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu devel list Cc: Ard Biesheuvel , "Michael S. Tsirkin" , Shannon Zhao , Gerd Hoffmann , Igor Mammedov , =?UTF-8?Q?Philippe_Mathieu-Daud=c3=a9?= On 01/24/19 21:39, Laszlo Ersek wrote: > Previous version (v1): > http://mid.mail-archive.com/20190118223400.24311-1-lersek@redhat.com >=20 > Updates in v2 have been noted on each patch in the series. ping >=20 > Cc: "Michael S. Tsirkin" > Cc: Ard Biesheuvel > Cc: Gerd Hoffmann > Cc: Igor Mammedov > Cc: Philippe Mathieu-Daud=C3=A9 > Cc: Shannon Zhao >=20 > Thanks > Laszlo >=20 > 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 >=20 > .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 = | 97 +++++++++++++ > tests/uefi-test-tools/UefiTestToolsPkg/BiosTablesTest/BiosTablesTest.c= | 130 ++++++++++++++++++ > tests/uefi-test-tools/UefiTestToolsPkg/BiosTablesTest/BiosTablesTest.i= nf | 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, 619 insertions(+), 8 deletions(-) > create mode 160000 roms/edk2 > create mode 100644 tests/data/uefi-boot-images/bios-tables-test.aarch6= 4.iso.qcow2 > create mode 100644 tests/data/uefi-boot-images/bios-tables-test.arm.is= o.qcow2 > create mode 100644 tests/data/uefi-boot-images/bios-tables-test.i386.i= so.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/BiosTablesTe= st/BiosTablesTest.c > create mode 100644 tests/uefi-test-tools/UefiTestToolsPkg/BiosTablesTe= st/BiosTablesTest.inf > create mode 100644 tests/uefi-test-tools/UefiTestToolsPkg/Include/Guid= /BiosTablesTest.h > create mode 100644 tests/uefi-test-tools/UefiTestToolsPkg/UefiTestTool= sPkg.dec > create mode 100644 tests/uefi-test-tools/UefiTestToolsPkg/UefiTestTool= sPkg.dsc > create mode 100755 tests/uefi-test-tools/build.sh >=20