diff options
author | Hans de Goede <hdegoede@redhat.com> | 2019-12-12 15:09:14 +0100 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2020-02-08 17:34:58 -0500 |
commit | 0fd169576648452725fa2949bf391d10883d3991 (patch) | |
tree | 63818a8374ea0c88b010da5a8d5fa376ded42517 /fs/vboxsf/Makefile | |
parent | f35aa2bc809eacc44c3cee41b52cef1c451d4a89 (diff) | |
download | linux-stable-0fd169576648452725fa2949bf391d10883d3991.tar.gz linux-stable-0fd169576648452725fa2949bf391d10883d3991.tar.bz2 linux-stable-0fd169576648452725fa2949bf391d10883d3991.zip |
fs: Add VirtualBox guest shared folder (vboxsf) support
VirtualBox hosts can share folders with guests, this commit adds a
VFS driver implementing the Linux-guest side of this, allowing folders
exported by the host to be mounted under Linux.
This driver depends on the guest <-> host IPC functions exported by
the vboxguest driver.
Acked-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/vboxsf/Makefile')
-rw-r--r-- | fs/vboxsf/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fs/vboxsf/Makefile b/fs/vboxsf/Makefile new file mode 100644 index 000000000000..9e4328e79623 --- /dev/null +++ b/fs/vboxsf/Makefile @@ -0,0 +1,5 @@ +# SPDX-License-Identifier: MIT + +obj-$(CONFIG_VBOXSF_FS) += vboxsf.o + +vboxsf-y := dir.o file.o utils.o vboxsf_wrappers.o super.o |