genode/repos/libports/src/server/fuse_fs
Norman Feske cd3a5852d6 Warn about the use of deprecated headers
This commit enables compile-time warnings displayed whenever a deprecated
API header is included, and adjusts the existing #include directives
accordingly.

Issue #1987
2017-01-31 12:01:18 +01:00
..
exfat Simpify startup of dynamically linked binaries 2017-01-13 13:06:52 +01:00
ext2 Simpify startup of dynamically linked binaries 2017-01-13 13:06:52 +01:00
ntfs-3g Simpify startup of dynamically linked binaries 2017-01-13 13:06:52 +01:00
directory.h base: avoid use of deprecated base/printf.h 2016-08-29 17:27:10 +02:00
file.h base: avoid use of deprecated base/printf.h 2016-08-29 17:27:10 +02:00
fuse_fs_main.cc Warn about the use of deprecated headers 2017-01-31 12:01:18 +01:00
mode_util.h Move repositories to 'repos/' subdirectory 2014-05-14 16:08:00 +02:00
node.h Remove Genode namespace from File_system 2016-01-08 14:48:52 +01:00
README Make label prefixing more strict 2016-11-30 13:37:07 +01:00
symlink.h rump_fs/fuse_fs/lx_fs/ram_fs: symlink fixup 2015-07-21 09:40:19 +02:00
util.h Define Genode::size_t as unsigned long 2016-10-21 12:39:29 +02:00

The fuse_fs server provides access to a FUSE based file system by using a
File_system_session.

The File_system_session component implementation is independent from each
FUSE based file system. fuse_fs only calls the FUSE operation in question
directly. These operations are provided by the FUSE file system and Genode's
libfuse library makes sure, that each operation is executeable, e.g. by using
a dummy function in case it is not provided by the FUSE file system.
Therefore, to utilize a FUSE file system, the FUSE file system is linked
against libfuse as well as the File_system_session component. For each
fuse_fs server there is a binary (.e.g. 'os/src/server/fuse_fs/ext2').

Note: write-support is supported but considered to be experimantal at this
point and for now using it is NOT recommended.


To use the ext2_fuse_fs server in noux the following config snippet may be
used:

!  <start name="ext2_fuse_fs">
!  	<resource name="RAM" quantum="8M"/>
!  	<provides> <service name="File_system"/> </provides>
!  	<config>
!  		<policy label_prefix="noux -> fuse" root="/" writeable="no" />
!  	</config>
!  </start>