aboutsummaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAge
* Fix manpage filename for mount.fuse3Gravatar Laszlo Boszormenyi (GCS)2018-07-04
|
* Fix build error on DragonFlyBSD (sync with other *BSD) (#240)Gravatar Tomohiro Kusumi2018-03-28
| | | | | | | | | DragonFlyBSD has no "bsd" in uname, so add 'dragonfly' to conditionals. -- e.g. uname(1) in DragonFlyBSD [root@ ~]# uname DragonFly [root@ ~]# python -c "import sys; print(sys.platform)" dragonfly5
* Spelling (#223)Gravatar Josh Soref2017-11-27
| | | Fix spelling errors
* Don't install manpages under *BSDGravatar Nikolaus Rath2017-10-20
| | | | | Were not installing the corresponding binaries either, since those are provided by the BSD base system.
* Don't use Python mode for meson.buildGravatar Nikolaus Rath2017-10-20
| | | | Emacs now has a proper meson mode :-).
* Include source code in documentation.Gravatar Nikolaus Rath2017-09-17
|
* Added some documentation of fuse internals.Gravatar Nikolaus Rath2017-09-17
|
* Dropped support for building with autotoolsGravatar Nikolaus Rath2017-08-24
| | | | It's just too much pain to keep it working.
* Document that -o auto_unmount implies -o nodev,nosuidGravatar Nikolaus Rath2017-03-16
| | | | See also issue #148.
* Added experimental support for building with Meson+NinjaGravatar Nikolaus Rath2017-01-12
|
* Rename more things from fuse to fuse3Gravatar Przemysław Pawełczyk2016-11-28
|
* Document that FUSE_CAP_POSIX_ACL turns on -o default_permissionsGravatar Nikolaus Rath2016-11-22
|
* Distinguish between mount options and libfuse optionsGravatar Nikolaus Rath2016-11-17
|
* Fixed manpage formatting.Gravatar Nikolaus Rath2016-11-17
|
* Removed reference to developer-notes.rst (was removed earlier)Gravatar Nikolaus Rath2016-11-06
|
* Fixed section names in documentation indexGravatar Nikolaus Rath2016-11-06
|
* Clean-up doxygen documentationGravatar Nikolaus Rath2016-10-28
| | | | Fixes: #81.
* man: Document suid requirementGravatar Mihail Konev2016-10-27
|
* Add max_read to fuse_conn_infoGravatar Nikolaus Rath2016-10-27
| | | | | | | | | | Eventually, this setting should be negotiated in the filesystem's init() handler (like e.g. max_write). However, this requires corresponding changes in the FUSE kernel module. In preparation for this (and to allow a transition period) we already allow (and require) filesystems to set the value in the init() handler in addition to the mount option. The end-goal is tracked in issue #91.
* Recommend when to use -o default_permissions automaticallyGravatar Nikolaus Rath2016-10-27
|
* Describe all mount options in mount.fuse(8).Gravatar Nikolaus Rath2016-10-27
| | | | Also improved manpage in several ways.
* Improve documentation of -o default_permissionsGravatar Nikolaus Rath2016-10-27
|
* Improve man page titleGravatar Nikolaus Rath2016-10-27
|
* Clarify which mount options are intended for file-system internal use.Gravatar Nikolaus Rath2016-10-25
|
* fuse_new(): don't accept options that don't make sense for end-usersGravatar Nikolaus Rath2016-10-20
| | | | | | Several options (use_ino, etc) depend on the file system implementation. Allowing them to be set from the command line makes no sense.
* Document -o remember= mount option.Gravatar Nikolaus Rath2016-10-20
|
* mount.fuse(8): remove max_readahead, max_write, [a]sync_readGravatar Nikolaus Rath2016-10-20
| | | | | | These are not mount options for FUSE file systems, but capabilites that are worked out between libfuse and the fuse kernel module. For that reason, they are also not accepted by fuse_session_new().
* Mention that low-level fs need to set FUSE_CAP_EXPORT_SUPPORTGravatar Nikolaus Rath2016-10-16
|
* Various documentation updatesGravatar Nikolaus Rath2016-10-16
| | | | | | | | Move README.NFS into doc/ Update project URL Remove reference to non-existent INSTALL file Remove outdated/obsolete NEWS and how-fuse-works files. Update references to examples.
* Updated man-pages.Gravatar Nikolaus Rath2016-10-16
| | | | | | | | | * Removed -o nonempty * Added -o noforget * Split into high-level / low-level * Added warning that most options should be chosen by file system internally. * Updated maintainer.
* Fix documentation of -o max_write=Gravatar Nikolaus Rath2016-10-15
| | | | | | | big_writes has been available for some time, and is the default in FUSE 3. So max_write now actually takes effect. (This really should have gone into commit 97f4a9cb4fc69)
* Drop -o large_read mount optionGravatar Nikolaus Rath2016-10-15
| | | | This was only relevant for 2.4 kernels. Fixes #92.
* Turn struct fuse_chan into an implementation detailGravatar Nikolaus Rath2016-10-02
| | | | | | | | | | | | | | | | | | | | | The only struct fuse_chan that's accessible to the user application is the "master" channel that is returned by fuse_mount and stored in struct fuse_session. When using the multi-threaded main loop with the "clone_fd" option, each worker thread gets its own struct fuse_chan. However, none of these are available to the user application, nor do they hold references to struct fuse_session (the pointer is always null). Therefore, any presence of struct fuse_chan can be removed without loss of functionality by relying on struct fuse_session instead. This reduces the number of API functions and removes a potential source of confusion (since the new API no longer looks as if it might be possible to add multiple channels to one session, or to share one channel between multiple sessions). Fixes issue #17.
* Added notes for libfuse hackers.Gravatar Nikolaus Rath2016-09-27
|
* Fixed up permissions.Gravatar Nikolaus Rath2016-09-27
|
* Include documentation in tarball.Gravatar Nikolaus Rath2016-01-28
|
* ulockmgr: strip ulockmgr support from this source packageGravatar Miklos Szeredi2013-07-25
| | | | | | Distribute ulockmgr separately. It is not needed for the building of libfuse, only fusexmp_fh. Check ulockmgr library in ./configure and if not disable remote-lock suport in fusexmp_fh.
* Documentation fixesGravatar Miklos Szeredi2013-07-17
|
* - added a doxygen main pageGravatar Joachim Schiele2013-06-20
| | | | | | - modified all examples to be included in doxygen - modified the API documentation to have more details - added the 490px_FUSE_structure.svg.png (c) wikipedia
* Create doc/.gitignoreGravatar Miklos Szeredi2013-02-05
|
* clean up man pageGravatar Miklos Szeredi2012-01-26
|
* Add doc/Makefile.amGravatar Miklos Szeredi2012-01-26
|
* Add man pages for fusermount, mount.fuse and ulockmgr_serverGravatar Miklos Szeredi2012-01-26
| | | | | Lifted from the Debian package. The man pages were written by Daniel Baumann and Bastien Roucaries
* Add .gitignore filesGravatar Miklos Szeredi2010-06-24
| | | | Add .gitignore files and delete .cvsignore files.
* documentation updateGravatar Miklos Szeredi2009-02-06
|
* doc updatesGravatar Miklos Szeredi2007-10-16
|
* doc update from Evan JonesGravatar Miklos Szeredi2007-10-16
|
* merge to fuse_2_6_merge2Gravatar Miklos Szeredi2007-02-03
|
* bmap supportGravatar Miklos Szeredi2006-09-30
|
* *** empty log message ***Gravatar Miklos Szeredi2006-06-29
|