[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 10/11] 9p: darwin: meson: Allow VirtFS on Darwin
From: |
Will Cohen |
Subject: |
[PATCH v3 10/11] 9p: darwin: meson: Allow VirtFS on Darwin |
Date: |
Thu, 27 Jan 2022 19:56:10 -0500 |
From: Keno Fischer <keno@juliacomputing.com>
Signed-off-by: Keno Fischer <keno@juliacomputing.com>
[Michael Roitzsch: - Rebase for NixOS]
Signed-off-by: Michael Roitzsch <reactorcontrol@icloud.com>
[Will Cohen: - Rebase to master]
Signed-off-by: Will Cohen <wwcohen@gmail.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
---
fsdev/meson.build | 1 +
meson.build | 12 ++++++++----
2 files changed, 9 insertions(+), 4 deletions(-)
diff --git a/fsdev/meson.build b/fsdev/meson.build
index adf57cc43e..b632b66348 100644
--- a/fsdev/meson.build
+++ b/fsdev/meson.build
@@ -7,6 +7,7 @@ fsdev_ss.add(when: ['CONFIG_FSDEV_9P'], if_true: files(
'qemu-fsdev.c',
), if_false: files('qemu-fsdev-dummy.c'))
softmmu_ss.add_all(when: 'CONFIG_LINUX', if_true: fsdev_ss)
+softmmu_ss.add_all(when: 'CONFIG_DARWIN', if_true: fsdev_ss)
if have_virtfs_proxy_helper
executable('virtfs-proxy-helper',
diff --git a/meson.build b/meson.build
index e0cfafe8d9..726c618982 100644
--- a/meson.build
+++ b/meson.build
@@ -1420,17 +1420,21 @@ if not get_option('dbus_display').disabled()
endif
endif
-have_virtfs = (targetos == 'linux' and
+if targetos == 'darwin'
+ have_virtfs = have_system
+else
+ have_virtfs = (targetos == 'linux' and
have_system and
libattr.found() and
libcap_ng.found())
+endif
-have_virtfs_proxy_helper = have_virtfs and have_tools
+have_virtfs_proxy_helper = targetos == 'linux' and have_virtfs and have_tools
if get_option('virtfs').enabled()
if not have_virtfs
- if targetos != 'linux'
- error('virtio-9p (virtfs) requires Linux')
+ if targetos != 'linux' and targetos != 'darwin'
+ error('virtio-9p (virtfs) requires Linux or Darwin')
elif not libcap_ng.found() or not libattr.found()
error('virtio-9p (virtfs) requires libcap-ng-devel and libattr-devel')
elif not have_system
--
2.34.1
- [PATCH v3 00/11] This is a followup to https://lists.gnu.org/archive/html/qemu-devel/2021-11/msg04325.html,, Will Cohen, 2022/01/27
- [PATCH v3 05/11] 9p: darwin: Ignore O_{NOATIME, DIRECT}, Will Cohen, 2022/01/27
- [PATCH v3 07/11] 9p: darwin: *xattr_nofollow implementations, Will Cohen, 2022/01/27
- [PATCH v3 01/11] 9p: linux: Fix a couple Linux assumptions, Will Cohen, 2022/01/27
- [PATCH v3 08/11] 9p: darwin: Compatibility for f/l*xattr, Will Cohen, 2022/01/27
- [PATCH v3 06/11] 9p: darwin: Compatibility defn for XATTR_SIZE_MAX, Will Cohen, 2022/01/27
- [PATCH v3 02/11] 9p: Rename 9p-util -> 9p-util-linux, Will Cohen, 2022/01/27
- [PATCH v3 09/11] 9p: darwin: Implement compatibility for mknodat, Will Cohen, 2022/01/27
- [PATCH v3 04/11] 9p: darwin: Handle struct dirent differences, Will Cohen, 2022/01/27
- [PATCH v3 10/11] 9p: darwin: meson: Allow VirtFS on Darwin,
Will Cohen <=
- [PATCH v3 03/11] 9p: darwin: Handle struct stat(fs) differences, Will Cohen, 2022/01/27
- [PATCH v3 11/11] 9p: darwin: adjust assumption on virtio-9p-test, Will Cohen, 2022/01/27