mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-29 18:18:54 +00:00
c1ff581fb4
VFS plugin to replicate from one file-system to another. Can be used to seed a mutable file-system with an immutable file-system. The plugin is configure with two paths, a read-only path, and a read-write path. This is an initial implementation that copies files on open. It is not optimized to perform actual copy-on-write, but the result is the same. <vfs> <dir name="immutable"> ... </dir> <dir name="mutable"> ... </dir> <dir name="cow"> <cow ro="/immutable" rw="/mutable"/> </dir> </vfs> Fix #2745 |
||
---|---|---|
.. | ||
include | ||
lib | ||
recipes | ||
run | ||
src | ||
README |
This directory is a source-code repository containing Genode-specific services and applications. In contrast to the components that come with the 'os' repository, programs contained in 'gems' are able to leverage the functionalities provided by higher-level repositories such as 'libports'. To use the 'gems' repository, make sure to also add those repositories to your build configuraion.