This commit is contained in:
Artur Gurgul 2025-08-26 17:50:38 +02:00
parent 54d4dfcb33
commit 605cfd38f9
8 changed files with 130 additions and 6 deletions

View file

@ -54,4 +54,23 @@ module MacOSSystem
puts "Failed to uninstall some packages."
end
end
def qemu_code_fd_path()
case arch_to_symbol(arch)
when :arm64
"/opt/homebrew/share/qemu/edk2-aarch64-code.fd"
else
raise "not supported yet"
end
end
def qemu_vars_fd_path()
case arch_to_symbol(arch)
when :arm64
"/opt/homebrew/share/qemu/edk2-arm-vars.fd"
else
raise "not supported yet"
end
end
end