From 3f10f7aed1823a40ff9133faab2c100d08267ec4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michal=20Koutn=C3=BD?= Date: Fri, 15 May 2020 19:27:06 +0200 Subject: [PATCH] Add OVMF path to openSUSE qemu-ovmf The OVMF files on openSUSE are in yet another unlisted path. --- mkosi | 1 + 1 file changed, 1 insertion(+) diff --git a/mkosi b/mkosi index 579155d8d..acc24ddc3 100755 --- a/mkosi +++ b/mkosi @@ -4975,6 +4975,7 @@ def run_qemu(args: CommandLineArguments) -> None: if platform.machine() == 'x86_64': FIRMWARE_LOCATIONS.append('/usr/share/ovmf/ovmf_code_x64.bin') FIRMWARE_LOCATIONS.append('/usr/share/ovmf/x64/OVMF_CODE.fd') + FIRMWARE_LOCATIONS.append('/usr/share/qemu/ovmf-x86_64.bin') elif platform.machine() == 'i386': FIRMWARE_LOCATIONS.append('/usr/share/ovmf/ovmf_code_ia32.bin') FIRMWARE_LOCATIONS.append('/usr/share/edk2/ovmf-ia32/OVMF_CODE.fd') -- 2.47.2