summaryrefslogtreecommitdiff
path: root/pkg/machine/qemu/config.go
diff options
context:
space:
mode:
authorBrent Baude <bbaude@redhat.com>2022-03-04 10:51:08 -0600
committerBrent Baude <bbaude@redhat.com>2022-03-07 14:05:06 -0600
commitcdb6deb148f72cad9794dec176e4df1b81d31d08 (patch)
tree63383f75abd5120f8687b66e482ff21c2c73f283 /pkg/machine/qemu/config.go
parente1f00b451234fb673505c54051a97d5748c99d3e (diff)
downloadpodman-cdb6deb148f72cad9794dec176e4df1b81d31d08.tar.gz
podman-cdb6deb148f72cad9794dec176e4df1b81d31d08.tar.bz2
podman-cdb6deb148f72cad9794dec176e4df1b81d31d08.zip
MacOS improvements
* Enable support of virtfs in Podman and darwin. At the time of this writing, it requires a special patch not yet included in upstream qemu. * Prefer to use a specially built qemu to support virtfs. The qemu is installed under libexec/podman. [NO NEW TESTS NEEDED] Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'pkg/machine/qemu/config.go')
-rw-r--r--pkg/machine/qemu/config.go7
1 files changed, 6 insertions, 1 deletions
diff --git a/pkg/machine/qemu/config.go b/pkg/machine/qemu/config.go
index c619b7dd4..b39334be0 100644
--- a/pkg/machine/qemu/config.go
+++ b/pkg/machine/qemu/config.go
@@ -1,8 +1,11 @@
+//go:build (amd64 && !windows) || (arm64 && !windows)
// +build amd64,!windows arm64,!windows
package qemu
-import "time"
+import (
+ "time"
+)
type Provider struct{}
@@ -35,6 +38,8 @@ type MachineVM struct {
RemoteUsername string
// Whether this machine should run in a rootful or rootless manner
Rootful bool
+ // UID is the numerical id of the user that called machine
+ UID int
}
type Mount struct {