mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-13 00:09:54 +00:00
1f1302e185
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
64 lines
1.8 KiB
Plaintext
64 lines
1.8 KiB
Plaintext
<config verbose="yes">
|
|
|
|
<report init_ram="yes" requested="yes" child_ram="yes" delay_ms="2000" buffer="128K"/>
|
|
|
|
<parent-provides>
|
|
<service name="ROM"/>
|
|
<service name="PD"/>
|
|
<service name="RM"/>
|
|
<service name="CPU"/>
|
|
<service name="LOG"/>
|
|
<service name="Nitpicker"/>
|
|
<service name="Timer"/>
|
|
<service name="Report"/>
|
|
<service name="Block"/>
|
|
<service name="File_system"/>
|
|
</parent-provides>
|
|
|
|
<default-route> <any-service> <parent/> <any-child/> </any-service> </default-route>
|
|
|
|
<default caps="100"/>
|
|
|
|
<start name="nit_focus">
|
|
<resource name="RAM" quantum="1M"/>
|
|
<config>
|
|
<policy label_prefix="leitzentrale" focus="no"/>
|
|
<default-policy focus="yes"/>
|
|
</config>
|
|
<route>
|
|
<service name="ROM" label="clicked"> <parent label="clicked"/> </service>
|
|
<service name="Report" label="focus"> <parent label="focus"/> </service>
|
|
<any-service> <parent/> </any-service>
|
|
</route>
|
|
</start>
|
|
|
|
<start name="fs" caps="500">
|
|
<resource name="RAM" quantum="114M"/>
|
|
<binary name="init"/>
|
|
<route>
|
|
<service name="ROM" label="config">
|
|
<parent label="config -> subinit/default_fs.config"/> </service>
|
|
<any-service> <parent/> </any-service>
|
|
</route>
|
|
<provides> <service name="File_system"/> </provides>
|
|
</start>
|
|
|
|
<start name="noux" version="fs" caps="1000">
|
|
<resource name="RAM" quantum="80M"/>
|
|
<binary name="init"/>
|
|
<route>
|
|
<service name="ROM" label="config">
|
|
<parent label="config -> subinit/default_noux.config"/> </service>
|
|
<service name="ROM" label="fonts.config">
|
|
<parent label="config -> fonts.config"/> </service>
|
|
<service name="File_system" label="config">
|
|
<parent label="config"/> </service>
|
|
<service name="File_system" label="target">
|
|
<child name="fs"/> </service>
|
|
<any-service> <parent/> </any-service>
|
|
</route>
|
|
</start>
|
|
|
|
</config>
|
|
|