mesa: add gpu-cpu package providing SWRAST driver

Issue #4263
This commit is contained in:
Alexander Boettcher 2021-09-21 17:01:34 +02:00 committed by Norman Feske
parent 07881f90a9
commit b6beff673a
6 changed files with 60 additions and 0 deletions

View File

@ -21,3 +21,4 @@ _/pkg/report_dump
_/pkg/acpica
_/pkg/qt5_textedit
_/pkg/system_clock
_/pkg/gpu-cpu

View File

@ -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"/>

View File

@ -0,0 +1 @@
SWRAST Gallium driver of MESA using solely the CPU

View File

@ -0,0 +1,4 @@
_/src/fs_rom
_/src/init
_/src/mesa
_/src/vfs

View File

@ -0,0 +1 @@
2021-09-21-b 64f1385a5de1824ba609cb3c1602744622607ece

View 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>