genode/repos/gems/sculpt/launcher/audio
Josef Söntgen a16ca36eb6 bsd_audio: remove unnecessary RM requirement
The explicit usage of the Rm session became obsolete with the
removal of the internal slab (see memory consumption commit).

Fixes #5348.
2024-10-08 09:09:23 +02:00

18 lines
670 B
Plaintext

<launcher pkg="bsd_audio" priority="0">
<config report_mixer="yes" record_play="yes">
<!-- value range [0,255] -->
<mixer field="outputs.master" value="255"/>
<!-- look into mixer report for source selection -->
<mixer field="record.enable" value="on"/>
<mixer field="record.adc-0:1_source" value="sel2"/>
<mixer field="record.adc-0:1" value="160"/>
</config>
<route>
<service name="Platform"> <parent label="audio"/> </service>
<service name="Record"> <child name="mixer"/> </service>
<service name="Play"> <child name="mixer"/> </service>
<service name="Report"> <parent/> </service>
</route>
</launcher>