scripts: build-efi: Use a locally built OVMF image

The standard OVMF image does not include mouse support. Use a locally
built release build instead.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass
2025-10-16 12:34:03 +01:00
parent 076ee482f7
commit 935ae7fc6a

View File

@@ -89,7 +89,7 @@ class BuildEfi:
else: # x86
if self.helper.bitness == 64:
qemu_arch = 'x86_64'
bios = 'OVMF_CODE_4M.fd'
bios = 'OVMF-release-x64.fd'
else:
qemu_arch = 'i386'
bios = 'OVMF-pure-efi.i386.fd'