mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-19 03:06:39 +00:00
parent
07881f90a9
commit
b6beff673a
@ -21,3 +21,4 @@ _/pkg/report_dump
|
||||
_/pkg/acpica
|
||||
_/pkg/qt5_textedit
|
||||
_/pkg/system_clock
|
||||
_/pkg/gpu-cpu
|
||||
|
@ -10,6 +10,10 @@
|
||||
<pkg path="window_layouter" info="default window layouter"/>
|
||||
</index>
|
||||
|
||||
<index name="Mesa 3D">
|
||||
<pkg path="gpu-cpu" info="SWRAST Mesa driver"/>
|
||||
</index>
|
||||
|
||||
<index name="Tools">
|
||||
<pkg path="system_shell" info="command-line interface to the system"/>
|
||||
<pkg path="system_clock" info="system-clock service"/>
|
||||
|
1
repos/libports/recipes/pkg/gpu-cpu/README
Normal file
1
repos/libports/recipes/pkg/gpu-cpu/README
Normal file
@ -0,0 +1 @@
|
||||
SWRAST Gallium driver of MESA using solely the CPU
|
4
repos/libports/recipes/pkg/gpu-cpu/archives
Normal file
4
repos/libports/recipes/pkg/gpu-cpu/archives
Normal file
@ -0,0 +1,4 @@
|
||||
_/src/fs_rom
|
||||
_/src/init
|
||||
_/src/mesa
|
||||
_/src/vfs
|
1
repos/libports/recipes/pkg/gpu-cpu/hash
Normal file
1
repos/libports/recipes/pkg/gpu-cpu/hash
Normal file
@ -0,0 +1 @@
|
||||
2021-09-21-b 64f1385a5de1824ba609cb3c1602744622607ece
|
49
repos/libports/recipes/pkg/gpu-cpu/runtime
Normal file
49
repos/libports/recipes/pkg/gpu-cpu/runtime
Normal file
@ -0,0 +1,49 @@
|
||||
<runtime ram="4M" caps="300" binary="init">
|
||||
|
||||
<provides>
|
||||
<rom/>
|
||||
</provides>
|
||||
|
||||
<content>
|
||||
<rom label="egl_swrast.lib.so"/>
|
||||
<rom label="fs_rom"/>
|
||||
<rom label="init"/>
|
||||
<rom label="vfs"/>
|
||||
<rom label="vfs.lib.so"/>
|
||||
</content>
|
||||
|
||||
<config>
|
||||
|
||||
<service name="ROM">
|
||||
<default-policy> <child name="fs_rom" label="egl_swrast.lib.so"/> </default-policy>
|
||||
</service>
|
||||
|
||||
<parent-provides>
|
||||
<service name="ROM"/>
|
||||
<service name="PD"/>
|
||||
<service name="RM"/>
|
||||
<service name="CPU"/>
|
||||
<service name="LOG"/>
|
||||
</parent-provides>
|
||||
|
||||
<default-route> <any-service> <parent/> <any-child/> </any-service> </default-route>
|
||||
|
||||
<start name="vfs" caps="100">
|
||||
<resource name="RAM" quantum="1M"/>
|
||||
<provides> <service name="File_system"/> </provides>
|
||||
<config>
|
||||
<vfs>
|
||||
<rom name="egl_swrast.lib.so"/>
|
||||
</vfs>
|
||||
<default-policy root="/" writeable="no"/>
|
||||
</config>
|
||||
</start>
|
||||
|
||||
<start name="fs_rom" caps="100">
|
||||
<resource name="RAM" quantum="2M"/>
|
||||
<provides> <service name="ROM"/> </provides>
|
||||
<config/>
|
||||
</start>
|
||||
</config>
|
||||
|
||||
</runtime>
|
Loading…
Reference in New Issue
Block a user