perkeep/third_party/bazil.org/fuse
Bill Thiede ba447185d4 third_party: Update bazil.org/fuse and set VolumeName.
import bazil.org/fuse at 1c23ef5845002b8878f67e7959b29d1e0ea41fe3

On Mac OS X, fuse.VolumeName keeps the directory name in Finder from
becoming 'OSXFUSE Volume #0 (mount_osxfusefs)', it is a nop on all
other platforms.

Change-Id: Ic9e248ea1921f6dfb6b04107a5f0ae8c51687c82
2014-11-29 19:06:54 -08:00
..
doc third_party: Update bazil.org/fuse 2014-06-09 02:47:29 +00:00
fs third_party: Update bazil.org/fuse and set VolumeName. 2014-11-29 19:06:54 -08:00
fuseutil third_party: Switch FUSE library to bazil.org/fuse 2014-01-24 13:28:08 -08:00
hellofs third_party: Update bazil.org/fuse and set VolumeName. 2014-11-29 19:06:54 -08:00
syscallx third_party: Update bazil.org/fuse and set VolumeName. 2014-11-29 19:06:54 -08:00
.gitattributes third_party: Switch FUSE library to bazil.org/fuse 2014-01-24 13:28:08 -08:00
.gitignore third_party: Switch FUSE library to bazil.org/fuse 2014-01-24 13:28:08 -08:00
LICENSE third_party: Update bazil.org/fuse 2014-06-09 02:47:29 +00:00
README.md third_party: Switch FUSE library to bazil.org/fuse 2014-01-24 13:28:08 -08:00
debug.go third_party: Update bazil.org/fuse and set VolumeName. 2014-11-29 19:06:54 -08:00
error_darwin.go third_party: Update bazil.org/fuse 2014-06-09 02:47:29 +00:00
error_std.go third_party: Switch FUSE library to bazil.org/fuse 2014-01-24 13:28:08 -08:00
fuse.go third_party: Update bazil.org/fuse and set VolumeName. 2014-11-29 19:06:54 -08:00
fuse_kernel.go third_party: Update bazil.org/fuse and set VolumeName. 2014-11-29 19:06:54 -08:00
fuse_kernel_darwin.go third_party: Switch FUSE library to bazil.org/fuse 2014-01-24 13:28:08 -08:00
fuse_kernel_linux.go third_party: Switch FUSE library to bazil.org/fuse 2014-01-24 13:28:08 -08:00
fuse_kernel_std.go third_party: Switch FUSE library to bazil.org/fuse 2014-01-24 13:28:08 -08:00
fuse_kernel_test.go third_party: Update bazil.org/fuse and set VolumeName. 2014-11-29 19:06:54 -08:00
mount_darwin.go third_party: Update bazil.org/fuse and set VolumeName. 2014-11-29 19:06:54 -08:00
mount_linux.go third_party: Update bazil.org/fuse and set VolumeName. 2014-11-29 19:06:54 -08:00
options.go third_party: Update bazil.org/fuse and set VolumeName. 2014-11-29 19:06:54 -08:00
options_darwin.go third_party: Update bazil.org/fuse and set VolumeName. 2014-11-29 19:06:54 -08:00
options_darwin_test.go third_party: Update bazil.org/fuse and set VolumeName. 2014-11-29 19:06:54 -08:00
options_linux.go third_party: Update bazil.org/fuse and set VolumeName. 2014-11-29 19:06:54 -08:00
options_test.go third_party: Update bazil.org/fuse and set VolumeName. 2014-11-29 19:06:54 -08:00
unmount.go third_party: Update bazil.org/fuse 2014-06-09 02:47:29 +00:00
unmount_linux.go third_party: Update bazil.org/fuse 2014-06-09 02:47:29 +00:00
unmount_std.go third_party: Update bazil.org/fuse 2014-06-09 02:47:29 +00:00

README.md

bazil.org/fuse -- Filesystems in Go

bazil.org/fuse is a Go library for writing FUSE userspace filesystems.

It is a from-scratch implementation of the kernel-userspace communication protocol, and does not use the C library from the project called FUSE. bazil.org/fuse embraces Go fully for safety and ease of programming.

Heres how to get going:

go get bazil.org/fuse

Website: http://bazil.org/fuse/

Github repository: https://github.com/bazillion/fuse

API docs: http://godoc.org/bazil.org/fuse

Our thanks to Russ Cox for his fuse library, which this project is based on.