sculpt_manager: increase ram quota of nic driver

When running Sculpt OS on i.MX8 MW EVK or MNT Reform 2 the NIC driver
is far more hangry with respect to memory usage.

Fix genodelabs/genode#4407
This commit is contained in:
Stefan Kalkowski 2022-02-07 15:59:21 +01:00 committed by Norman Feske
parent fcb3e32fee
commit ed1b8fb3f9

View File

@ -17,7 +17,7 @@
void Sculpt::gen_nic_drv_start_content(Xml_generator &xml)
{
gen_common_start_content(xml, "nic_drv",
Cap_quota{300}, Ram_quota{16*1024*1024},
Cap_quota{300}, Ram_quota{20*1024*1024},
Priority::NETWORK);
gen_named_node(xml, "resource", "CPU", [&] () { xml.attribute("quantum", "50"); });