From 5c13f69814fb6107c04454b7bd985f230f9f30e8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ricardo=20Catalinas=20Jim=C3=A9nez?= Date: Sat, 17 Nov 2018 17:59:24 +0000 Subject: [PATCH] mkosi: Add back again the ovmf firmware path from Arch Linux Currently works fine in Arch Linux. --- mkosi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkosi b/mkosi index 80b83e674..7048c3f3b 100755 --- a/mkosi +++ b/mkosi @@ -3813,7 +3813,7 @@ def run_qemu(args: CommandLineArguments) -> None: # if they exist, they’re almost certainly correct. 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') # Arch `ovmf` package, but apparently broken + FIRMWARE_LOCATIONS.append('/usr/share/ovmf/x64/OVMF_CODE.fd') 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