mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +00:00
20df224b19
With the increase of MAXPHYS, the rump kernel requests a contiguous allocation of 2101248 bytes, which exceeds the allocator's block size of 2 MiB. Error: backend allocator: Unable to allocate memory (size: 2101248 align: 12) The patch avoids this corner case by increasing the allocator's block size to 4 MiB. Fixes #4613
17 lines
342 B
Plaintext
17 lines
342 B
Plaintext
set mkfs_cmd [installed_command mke2fs]
|
|
set mkfs_opts "-F"
|
|
|
|
set test_build_components "lib/vfs_rump"
|
|
|
|
set test_vfs_config "<rump fs=\"ext2fs\" ram=\"10M\" writeable=\"yes\"/>"
|
|
|
|
set test_boot_modules {
|
|
rump_fs.lib.so
|
|
rump.lib.so
|
|
vfs_rump.lib.so
|
|
}
|
|
|
|
set use_vfs_server 0
|
|
|
|
source ${genode_dir}/repos/libports/run/libc_vfs_filesystem_test.inc
|