mirror of
https://github.com/genodelabs/genode.git
synced 2025-04-06 02:47:07 +00:00
At least 64bit Seoul dies with Region_conflict reliable and reproducible. When during startup of Seoul some Genode code (caused by executing some constructors) try to attach a region, the region manager code in the rm_session will try to place the attachment at the smallest large enough aligned free virtual region. For now, I observed one attachment causing trouble (but not knowing who causes this - it does also not really matter). The questionable region is 0x4000 of size for 32bit and 0x8000 of size for 64bit. To steer the region manager a bit, we try now following trick: With this commit the load address of the binary for 32 and 64 bit is moved close to the end of the virtual address space, but leaving enough free virtual space for the above observed attachment (and a bit more). The region manager code now will try to fill up the virtual region behind the binary up to the end of the virtual address space, effectively letting the lower virtual region untouched - hopefully. Works for now, but it will break again - for sure. Fixes #519
This directory contains ports of popular 3rd-party applications to Genode. The 'ports' repository follows the line of the 'libports' repository. For instructions about downloading and building 3rd-party applications, please refer to 'libports/README'. Dependencies from other repositories ------------------------------------ Application provided by the 'ports' repository typically expect a rich runtime environment, including shared libraries provided by the 'libports' repository. Hence, 'ports' depends on 'libports'. Furthermore, applications may require additional repositories. For example, the Arora web browser depends on the 'qt4' repository.