genode/repos/dde_rump
Christian Helmuth 11ef8e1ff2 depot: update recipe hashes 2019-11-28 09:06:39 +01:00
..
include dde_rump: eliminate global ctors 2019-11-19 14:23:55 +01:00
lib dde_rump: eliminate global ctors 2019-11-19 14:23:55 +01:00
patches dde_rump: eliminate global ctors 2019-11-19 14:23:55 +01:00
ports dde_rump: eliminate global ctors 2019-11-19 14:23:55 +01:00
recipes/src/rump depot: update recipe hashes 2019-11-28 09:06:39 +01:00
run Remove rump_fs server component 2019-11-19 14:23:56 +01:00
src/lib vfs/rump: offer all files as read-writeable 2019-11-21 14:25:05 +01:00
README rump_fs: support the access of GEMDOS file systems 2019-08-21 12:37:00 +02:00
rump.list rump: reduce size of rump 2017-11-30 11:23:19 +01:00

README

                             ================================
                             Genode's Rump Kernel kernel port
                             ================================

This repository contains the Genode version of the
[http://wiki.netbsd.org/rumpkernel/ - rump kernel].
The kernel is currently used to gain file-system access from within Genode.
In order to achieve that, the rump kernel is integrated into a VFS plugin,
located at _src/lib/vfs/rump_. It can thereby by used directly by libc
applications, or indirectly by using the VFS-server component.


Building instructions
#####################

In order to build the VFS plugin, issue

! ./tool/ports/prepare_port dde_rump

from Genode's toplevel directory.


Add

! REPOSITORIES += $(GENODE_DIR)/repos/dde_rump

to your _etc/build.conf_ file of you build directory.

Finally,

! make lib/vfs/rump

called from your build directory will build the plugin.


Configuration
#############

Here is an example snippet that configures the VFS plugin:

| <rump fs="msdos" ram="7M" writeable="yes"/>"

The VFS plugin obtains a block session. If there is more than one block
session in the system, the block session must be routed to the right
block-session server. The value of the _fs_ attribute can be one of the
following: _ext2fs_ for EXT2, _cd9660_ for ISO-9660, or _msdos_ for FAT
file-system support. When accessing a _msdos_ file system, the optional
attribute 'gemdos="yes"' can be specified to operate in GEMDOS compatibility
mode.

The VFS plugin hands over the specified amount of RAM quota to the rump
kernel. The larger the quota is, the larger the internal block caches of the
rump kernel will be.