genode/repos/gems/sculpt/launcher/audio
Josef Söntgen 4a9e6a001f sculpt: add audio and mixer launcher
The audio launcher configures the 'bsd_audio_drv' component for normal
use where the micrphone selection should work on most Thinkpads.

The mixer launcher configures the 'record_play_mixer' component for
use with the 'audio' launcher and provides also examplary rules for
vbox6 launchers.
2024-04-12 15:08:01 +02:00

19 lines
730 B
Plaintext

<launcher pkg="bsd_audio_drv" priority="0">
<config report="yes" record_play="yes">
<!-- value range [0,255] -->
<mixer field="outputs.master" value="160"/>
<!-- 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>
<service name="RM"> <parent/> </service>
</route>
</launcher>