Skip to content

Commit af2d83b

Browse files
committed
Make it working on Apple Silicon
Signed-off-by: Tarik02 <[email protected]>
1 parent 605e062 commit af2d83b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/qemu/qemu.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ func Cmdline(cfg Config) (string, []string, error) {
103103
args = append(args, "-machine", "q35,accel="+accel)
104104
case limayaml.AARCH64:
105105
args = append(args, "-cpu", "cortex-a72")
106-
args = append(args, "-machine", "virt,accel="+accel)
106+
args = append(args, "-machine", "virt,accel="+accel+",highmem=off")
107107
}
108108

109109
// SMP

0 commit comments

Comments
 (0)