options_freebsd.go 455 B

1234567891011121314151617181920212223242526272829
  1. package fuse
  2. func localVolume(conf *mountConfig) error {
  3. return nil
  4. }
  5. func volumeName(name string) MountOption {
  6. return dummyOption
  7. }
  8. func daemonTimeout(name string) MountOption {
  9. return func(conf *mountConfig) error {
  10. conf.options["timeout"] = name
  11. return nil
  12. }
  13. }
  14. func noAppleXattr(conf *mountConfig) error {
  15. return nil
  16. }
  17. func noAppleDouble(conf *mountConfig) error {
  18. return nil
  19. }
  20. func exclCreate(conf *mountConfig) error {
  21. return nil
  22. }