mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-11 23:43:15 +00:00
a16ca36eb6
The explicit usage of the Rm session became obsolete with the removal of the internal slab (see memory consumption commit). Fixes #5348.
18 lines
670 B
Plaintext
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>
|