From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:49768) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gqh2E-0007O9-47 for qemu-devel@nongnu.org; Mon, 04 Feb 2019 11:23:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gqgsK-0004rQ-4y for qemu-devel@nongnu.org; Mon, 04 Feb 2019 11:13:37 -0500 Received: from mx1.redhat.com ([209.132.183.28]:45430) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gqgsJ-0004fG-QP for qemu-devel@nongnu.org; Mon, 04 Feb 2019 11:13:35 -0500 From: Laszlo Ersek Date: Mon, 4 Feb 2019 17:03:20 +0100 Message-Id: <20190204160325.4914-1-lersek@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH v3 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: "Michael S. Tsirkin" , Ard Biesheuvel , Gerd Hoffmann , Igor Mammedov , =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= , 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" Cc: Ard Biesheuvel Cc: Gerd Hoffmann Cc: Igor Mammedov Cc: Philippe Mathieu-Daud=C3=A9 Cc: Shannon Zhao 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.i= so.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/B= iosTablesTest.h create mode 100644 tests/uefi-test-tools/UefiTestToolsPkg/UefiTestToolsP= kg.dec create mode 100644 tests/uefi-test-tools/UefiTestToolsPkg/UefiTestToolsP= kg.dsc create mode 100755 tests/uefi-test-tools/build.sh --=20 2.19.1.3.g30247aa5d201