mirror of
https://github.com/genodelabs/genode.git
synced 2025-02-24 10:55:07 +00:00
This patch replaces the terminal's formerly built-in fonts with the new VFS-based font handling. To avoid the copying of the terminal's font configuration across run scripts, this patch adds the new terminal/pkg runtime package, which includes everything needed for instantiating a terminal: the actual terminal component, the library dependencies (vfs_ttf, which in turn depends on the libc), a font (bitstream-vera), and a reasonable default configuration. Fixes #2758
17 lines
400 B
Plaintext
17 lines
400 B
Plaintext
<runtime ram="4M" caps="100" binary="terminal" config="terminal.config">
|
|
|
|
<requires> <input/> <framebuffer/> </requires>
|
|
<provides> <terminal/> </provides>
|
|
|
|
<content>
|
|
<rom label="terminal.config"/>
|
|
<rom label="ld.lib.so"/>
|
|
<rom label="libc.lib.so"/>
|
|
<rom label="libm.lib.so"/>
|
|
<rom label="vfs_ttf.lib.so"/>
|
|
<rom label="terminal"/>
|
|
<rom label="VeraMono.ttf"/>
|
|
</content>
|
|
|
|
</runtime>
|