base: increase linker area size

Fixes #3856
This commit is contained in:
Christian Prochaska 2020-08-20 18:51:01 +02:00 committed by Norman Feske
parent dd8777093d
commit 31397d67ae
2 changed files with 2 additions and 2 deletions

View File

@ -180,7 +180,7 @@ struct Genode::Pd_session : Session, Ram_allocator
** Virtual address-space management **
**************************************/
enum { LINKER_AREA_SIZE = 160*1024*1024UL };
enum { LINKER_AREA_SIZE = 256*1024*1024UL };
/**
* Return region map of the PD's virtual address space

View File

@ -32,7 +32,7 @@ using namespace Genode;
***********/
enum {
MANAGED_ADDR = 0x10000000,
MANAGED_ADDR = 0x18000000,
STOP_TEST = 0xdead,
READ_TEST = 0x12345,
WRITE_TEST = READ_TEST - 1,