aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/bazil.org/fuse/options_linux.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/bazil.org/fuse/options_linux.go')
-rw-r--r--vendor/bazil.org/fuse/options_linux.go25
1 files changed, 25 insertions, 0 deletions
diff --git a/vendor/bazil.org/fuse/options_linux.go b/vendor/bazil.org/fuse/options_linux.go
new file mode 100644
index 000000000..13f0896d5
--- /dev/null
+++ b/vendor/bazil.org/fuse/options_linux.go
@@ -0,0 +1,25 @@
+package fuse
+
+func localVolume(conf *mountConfig) error {
+ return nil
+}
+
+func volumeName(name string) MountOption {
+ return dummyOption
+}
+
+func daemonTimeout(name string) MountOption {
+ return dummyOption
+}
+
+func noAppleXattr(conf *mountConfig) error {
+ return nil
+}
+
+func noAppleDouble(conf *mountConfig) error {
+ return nil
+}
+
+func exclCreate(conf *mountConfig) error {
+ return nil
+}