platform_drv: increase RAM config for -O0 builds

This commit is contained in:
Christian Helmuth 2015-11-12 11:00:58 +01:00
parent c47e9751bd
commit a0d92fcdb8
3 changed files with 3 additions and 3 deletions

View File

@ -93,7 +93,7 @@ proc append_platform_drv_config {} {
<start name=\"platform_drv\" [platform_drv_priority]>"
append config {
<resource name="RAM" quantum="3M" constrain_phys="yes"/>
<resource name="RAM" quantum="4M" constrain_phys="yes"/>
<provides>
<service name="Platform"/>}

View File

@ -84,7 +84,7 @@ int main(int argc, char **argv)
* Initialize server entry point
*/
enum {
STACK_SIZE = 4096
STACK_SIZE = 1024*sizeof(Genode::addr_t)
};
static Cap_connection cap;

View File

@ -82,7 +82,7 @@ int main(int argc, char **argv)
*/
enum {
STACK_SIZE = 2 * sizeof(addr_t)*1024,
DEVICE_PD_RAM_QUOTA = 196 * 4096,
DEVICE_PD_RAM_QUOTA = 256 * 4096,
};
static Cap_connection cap;