mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-21 22:47:50 +00:00
4a9e6a001f
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.
19 lines
730 B
Plaintext
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>
|