mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-28 09:38:53 +00:00
eedbcf88ec
The 'black_hole' component provides dummy implementations of common session interfaces. At this time, only the 'Audio_out' session is provided if enabled in the configuration of the component: <config> <audio_out/> </config> Issue #3653
17 lines
219 B
Plaintext
17 lines
219 B
Plaintext
<runtime ram="8M" caps="100" binary="black_hole">
|
|
|
|
<provides>
|
|
<audio_out/>
|
|
</provides>
|
|
|
|
<config>
|
|
<audio_out/>
|
|
</config>
|
|
|
|
<content>
|
|
<rom label="ld.lib.so"/>
|
|
<rom label="black_hole"/>
|
|
</content>
|
|
|
|
</runtime>
|