genode/repos/ports/recipes/pkg/system_shell/runtime
Benjamin Lamowski a25d19169b system_shell: adjust terminal RAM quota to work in 4k
A system shell that works in a small window stops working when maximized
on a 4k screen, because the terminal component runs out of RAM.

With the adjusted RAM quotas the system shell works on 4k displays.

Issue #5356
2024-10-30 08:14:54 +01:00

35 lines
893 B
Plaintext

<runtime ram="108M" caps="1000" binary="init" config="system_shell.config">
<requires>
<gui/>
<timer/>
<file_system label="config" writeable="yes"/>
<file_system label="report" writeable="no"/>
<file_system label="target" writeable="yes"/>
<file_system label="fonts" writeable="no"/>
<rom label="vimrc"/>
<rom label="clipboard"/>
<report label="clipboard"/>
<rm/>
</requires>
<content>
<rom label="system_shell.config"/>
<rom label="ld.lib.so"/>
<rom label="libc.lib.so"/>
<rom label="libm.lib.so"/>
<rom label="init"/>
<rom label="vfs"/>
<rom label="vfs_pipe.lib.so"/>
<rom label="cached_fs_rom"/>
<rom label="terminal"/>
<rom label="posix.lib.so"/>
<rom label="ncurses.lib.so"/>
<rom label="bash-minimal.tar"/>
<rom label="coreutils-minimal.tar"/>
<rom label="vim-minimal.tar"/>
<rom label="vfs.lib.so"/>
</content>
</runtime>