mirror of
https://github.com/containers/podman.git
synced 2025-08-06 19:44:14 +08:00

This is prep for using virtiofsd; it has no real impact otherwise. Signed-off-by: Colin Walters <walters@verbum.org>
17 lines
263 B
Go
17 lines
263 B
Go
//go:build linux && amd64
|
|
|
|
package qemu
|
|
|
|
var (
|
|
QemuCommand = "qemu-system-x86_64"
|
|
)
|
|
|
|
func (q *QEMUStubber) addArchOptions(_ *setNewMachineCMDOpts) []string {
|
|
opts := []string{
|
|
"-accel", "kvm",
|
|
"-cpu", "host",
|
|
"-M", "memory-backend=mem",
|
|
}
|
|
return opts
|
|
}
|