mirror of
https://github.com/containers/podman.git
synced 2025-06-19 08:09:12 +08:00
Merge pull request #11453 from jonpspri/qemu-apple-silicon-bios-fd
QEMU Apple Silicon: Find BIOS FD wherever
This commit is contained in:
@ -1,6 +1,7 @@
|
||||
package qemu
|
||||
|
||||
import (
|
||||
"os"
|
||||
"os/exec"
|
||||
"path/filepath"
|
||||
)
|
||||
@ -16,7 +17,7 @@ func (v *MachineVM) addArchOptions() []string {
|
||||
"-accel", "tcg",
|
||||
"-cpu", "cortex-a57",
|
||||
"-M", "virt,highmem=off",
|
||||
"-drive", "file=/usr/local/share/qemu/edk2-aarch64-code.fd,if=pflash,format=raw,readonly=on",
|
||||
"-drive", "file=" + getEdk2CodeFd("edk2-aarch64-code.fd") + ",if=pflash,format=raw,readonly=on",
|
||||
"-drive", "file=" + ovmfDir + ",if=pflash,format=raw"}
|
||||
return opts
|
||||
}
|
||||
@ -35,3 +36,23 @@ func (v *MachineVM) archRemovalFiles() []string {
|
||||
func getOvmfDir(imagePath, vmName string) string {
|
||||
return filepath.Join(filepath.Dir(imagePath), vmName+"_ovmf_vars.fd")
|
||||
}
|
||||
|
||||
/*
|
||||
* QEmu can be installed in multiple locations on MacOS, especially on
|
||||
* Apple Silicon systems. A build from source will likely install it in
|
||||
* /usr/local/bin, whereas Homebrew package management standard is to
|
||||
* install in /opt/homebrew
|
||||
*/
|
||||
func getEdk2CodeFd(name string) string {
|
||||
dirs := []string{
|
||||
"/usr/local/share/qemu",
|
||||
"/opt/homebrew/share/qemu",
|
||||
}
|
||||
for _, dir := range dirs {
|
||||
fullpath := filepath.Join(dir, name)
|
||||
if _, err := os.Stat(fullpath); err == nil {
|
||||
return fullpath
|
||||
}
|
||||
}
|
||||
return name
|
||||
}
|
||||
|
Reference in New Issue
Block a user