genode/os/src/server/tar_fs
Norman Feske b43a5f1255 tar_fs: Return correct size of stat'ed dirs
Genode's file system interface returns the number of directories
multiplied by sizeof(Directory_entry) as size of a directory. The
tar_fs server used to return zero. The fix counts the sub nodes of
the given directory.
2014-04-24 14:56:36 +02:00
..
README TAR file system service 2012-08-22 09:51:31 +02:00
directory.h Update copyright headers to 2013 2013-01-10 21:44:47 +01:00
file.h Update copyright headers to 2013 2013-01-10 21:44:47 +01:00
lookup.h Update copyright headers to 2013 2013-01-10 21:44:47 +01:00
main.cc tar_fs: Return correct size of stat'ed dirs 2014-04-24 14:56:36 +02:00
node.h Update copyright headers to 2013 2013-01-10 21:44:47 +01:00
node_handle_registry.h Update copyright headers to 2013 2013-01-10 21:44:47 +01:00
record.h tar_fs: Return correct size of stat'ed dirs 2014-04-24 14:56:36 +02:00
symlink.h Update copyright headers to 2013 2013-01-10 21:44:47 +01:00
target.mk os: Move Genode::Config into 'config' library 2013-09-23 14:25:58 +02:00
util.h Update copyright headers to 2013 2013-01-10 21:44:47 +01:00

README

This directory contains a service that provides the contents of a TAR archive
via the 'File_system::Session' interface.

Configuration:

! <config>
!   <archive name="tar_archive.tar" />
!   <policy label="label_of_client" root="/rootdir/for/client" />
! </config>

For an example, please refer to the 'libports/run/libc_fs_tar_fs.run' script.