base-tukija: Increased stack area. This was necessary because after increasing the number of supported CPUs from 64 to 256 core ran out of stacks for its pager entrypoints.

This commit is contained in:
Michael Mueller
2025-03-05 14:37:07 +01:00
parent ff30866207
commit f96331d59e

View File

@@ -19,7 +19,7 @@
namespace Genode {
addr_t stack_area_virtual_base();
static constexpr addr_t stack_area_virtual_size() { return 0x10000000UL; }
static constexpr addr_t stack_area_virtual_size() { return 0x40000000UL; }
static constexpr addr_t stack_virtual_size() { return 0x00100000UL; }
}