mirror of
https://github.com/containers/podman.git
synced 2025-06-27 13:38:49 +08:00
pkg/machine: Make this build on FreeBSD/arm64
[NO NEW TESTS NEEDED] Signed-off-by: Doug Rabson <dfr@rabson.org>
This commit is contained in:
21
pkg/machine/qemu/options_freebsd_arm64.go
Normal file
21
pkg/machine/qemu/options_freebsd_arm64.go
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
package qemu
|
||||||
|
|
||||||
|
var (
|
||||||
|
QemuCommand = "qemu-system-aarch64"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (v *MachineVM) addArchOptions() []string {
|
||||||
|
opts := []string{
|
||||||
|
"-machine", "virt",
|
||||||
|
"-accel", "tcg",
|
||||||
|
"-cpu", "host"}
|
||||||
|
return opts
|
||||||
|
}
|
||||||
|
|
||||||
|
func (v *MachineVM) prepare() error {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (v *MachineVM) archRemovalFiles() []string {
|
||||||
|
return []string{}
|
||||||
|
}
|
Reference in New Issue
Block a user