depot_download_mgr: raise chroot quota for sel4

Give chroot 32K more to satisfy Sel4 on x86 64-bit.

Issue #2781
This commit is contained in:
Martin Stein 2018-04-19 15:05:19 +02:00 committed by Christian Helmuth
parent 341de74d83
commit e8d17af1d0

View File

@ -17,7 +17,7 @@ void Depot_download_manager::gen_chroot_start_content(Xml_generator &xml,
Archive::User const &user)
{
gen_common_start_content(xml, Path("/depot/", user),
Cap_quota{100}, Ram_quota{1*1024*1024});
Cap_quota{100}, Ram_quota{1*1024*1024 + 32*1024});
xml.node("binary", [&] () { xml.attribute("name", "chroot"); });