[Concept,06/24] scripts: build-efi: Use a locally built OVMF image

Message ID 20251018084117.1798704-7-sjg@u-boot.org
State New
Headers
Series bootctl: Expand bootctl to include a new UI |

Commit Message

Simon Glass Oct. 18, 2025, 8:40 a.m. UTC
  From: Simon Glass <sjg@chromium.org>

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

Signed-off-by: Simon Glass <sjg@chromium.org>
---

 scripts/build-efi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

diff --git a/scripts/build-efi b/scripts/build-efi
index 032b9f7b1ab..fffe699e80a 100755
--- a/scripts/build-efi
+++ b/scripts/build-efi
@@ -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'