mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-04 04:54:12 +00:00
ac3202e554
The default mixer launcher limits the volume to 50%, so raise the driver's volume to the max to be audible on certain systems where otherwise audio is barely recognizable. While there, fix the wrong reporting attribute as well. Issue #5174.
19 lines
736 B
Plaintext
19 lines
736 B
Plaintext
<launcher pkg="bsd_audio_drv" 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>
|
|
<service name="RM"> <parent/> </service>
|
|
</route>
|
|
</launcher>
|