options_linux.go 386 B

1234567891011121314151617181920212223242526
  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 dummyOption
  10. }
  11. func noAppleXattr(conf *mountConfig) error {
  12. return nil
  13. }
  14. func noAppleDouble(conf *mountConfig) error {
  15. return nil
  16. }
  17. func exclCreate(conf *mountConfig) error {
  18. return nil
  19. }