mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
1d6d6966a1
By now, rump would query its available RAM quota to determine the memory limit minus some RAM reserved for Genode meta-data. This does not work when the VFS rump plugin is used as the available quota belongs to the VFS server. In this case the memlimit should be set by specifing the RAM in the plugin's config, e.g.: ! <vfs> ! <rump fs="ext2fs" ram="64M" writeabl="yes"/> ! </vfs> Fixes #2783.
17 lines
339 B
Plaintext
17 lines
339 B
Plaintext
set mkfs_cmd [check_installed mke2fs]
|
|
set mkfs_opts "-F"
|
|
|
|
set test_build_components "lib/vfs/rump"
|
|
|
|
set test_vfs_config "<rump fs=\"ext2fs\" ram=\"7M\" writeable=\"yes\"/>"
|
|
|
|
set test_boot_modules {
|
|
rump_fs.lib.so
|
|
rump.lib.so
|
|
vfs_rump.lib.so
|
|
}
|
|
|
|
set use_vfs_server 1
|
|
|
|
source ${genode_dir}/repos/libports/run/libc_vfs_filesystem_test.inc
|