mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
e1aab829ca
The 'vfs_block' component will give access to a VFS file through a Block session. For more detailed information please look at its README. (On a technical note, the server currently only allows for one active session and has only one pending back end request but can easily be extended in the future.) Fixes #3781.
16 lines
253 B
Plaintext
16 lines
253 B
Plaintext
<runtime ram="4M" caps="100" binary="vfs_block">
|
|
|
|
<provides> <block/> </provides>
|
|
|
|
<requires> <file_system/> </requires>
|
|
|
|
<config/>
|
|
|
|
<content>
|
|
<rom label="ld.lib.so"/>
|
|
<rom label="vfs.lib.so"/>
|
|
<rom label="vfs_block"/>
|
|
</content>
|
|
|
|
</runtime>
|