The following changes since commit 8b088d3f8ab5642020d28fa0c2a8d938bc5f3592:
Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20190315' into staging (2019-03-15 11:39:42 +0000) are available in the Git repository at: https://github.com/philmd/qemu.git tags/edk2_build-pull-request for you to fetch changes up to e487994c19ddca0e6340f72ddafc5b410877bbed: MAINTAINERS: add the "EDK2 Firmware" subsystem (2019-03-16 16:09:29 +0100) ---------------------------------------------------------------- Advance the roms/edk2 submodule to the "edk2-stable201903" release, build and capture platform firmware binaries from that release. ---------------------------------------------------------------- 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 $(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 +++ .../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.xz | Bin 0 -> 1146804 bytes pc-bios/edk2-arm-code.fd.xz | Bin 0 -> 1147852 bytes pc-bios/edk2-arm-vars.fd.xz | Bin 0 -> 10008 bytes pc-bios/edk2-i386-code.fd.xz | Bin 0 -> 1674764 bytes pc-bios/edk2-i386-secure-code.fd.xz | Bin 0 -> 1870024 bytes pc-bios/edk2-i386-vars.fd.xz | Bin 0 -> 320 bytes pc-bios/edk2-licenses.txt | 208 ++++++++++++++ pc-bios/edk2-x86_64-code.fd.xz | Bin 0 -> 1655276 bytes pc-bios/edk2-x86_64-secure-code.fd.xz | Bin 0 -> 1889024 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, 933 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.xz create mode 100644 pc-bios/edk2-arm-code.fd.xz create mode 100644 pc-bios/edk2-arm-vars.fd.xz create mode 100644 pc-bios/edk2-i386-code.fd.xz create mode 100644 pc-bios/edk2-i386-secure-code.fd.xz create mode 100644 pc-bios/edk2-i386-vars.fd.xz create mode 100644 pc-bios/edk2-licenses.txt create mode 100644 pc-bios/edk2-x86_64-code.fd.xz create mode 100644 pc-bios/edk2-x86_64-secure-code.fd.xz create mode 100644 roms/Makefile.edk2 create mode 100755 roms/edk2-build.sh create mode 100644 roms/edk2-funcs.sh -- 2.20.1