save
This commit is contained in:
parent
54d4dfcb33
commit
605cfd38f9
8 changed files with 130 additions and 6 deletions
|
|
@ -54,4 +54,12 @@ module DebianSystem
|
|||
puts "Failed to uninstall some packages."
|
||||
end
|
||||
end
|
||||
|
||||
def qemu_code_fd_path()
|
||||
raise "not supported yet"
|
||||
end
|
||||
|
||||
def qemu_vars_fd_path()
|
||||
raise "not supported yet"
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue