mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +00:00
4992903233
With the introducation of the Audio_in session interface it makes sense to rename the current available audio drivers. At the moment only the dde_bsd audio_drv supports Audio_out as well as Audio_in. The Linux audio_drv only supports Audio_out (there is no demand for Audio_in support currently) but is renamed nonetheless to make it easiert to write generic run scripts. Issue #1644.
106 lines
2.0 KiB
Plaintext
106 lines
2.0 KiB
Plaintext
#
|
|
# Build
|
|
#
|
|
|
|
# generic components
|
|
set build_components {
|
|
core init
|
|
drivers/timer
|
|
drivers/audio
|
|
server/mixer
|
|
test/audio_out
|
|
}
|
|
|
|
source ${genode_dir}/repos/base/run/platform_drv.inc
|
|
append_platform_drv_build_components
|
|
|
|
build $build_components
|
|
create_boot_directory
|
|
|
|
|
|
#
|
|
# Config
|
|
#
|
|
|
|
set config {
|
|
<config>
|
|
<parent-provides>
|
|
<service name="ROM"/>
|
|
<service name="RAM"/>
|
|
<service name="IRQ"/>
|
|
<service name="IO_MEM"/>
|
|
<service name="IO_PORT"/>
|
|
<service name="CAP"/>
|
|
<service name="PD"/>
|
|
<service name="RM"/>
|
|
<service name="CPU"/>
|
|
<service name="LOG"/>
|
|
<service name="SIGNAL"/>
|
|
</parent-provides>
|
|
<default-route>
|
|
<service name="Audio_out"> <child name="mixer"/> </service>
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
</default-route>}
|
|
|
|
append_platform_drv_config
|
|
|
|
append config {
|
|
<start name="audio_drv">
|
|
<resource name="RAM" quantum="6M"/>
|
|
<provides>
|
|
<service name="Audio_out"/>
|
|
</provides>
|
|
</start>
|
|
|
|
<start name="timer">
|
|
<resource name="RAM" quantum="1M"/>
|
|
<provides><service name="Timer"/></provides>
|
|
</start>
|
|
<start name="mixer">
|
|
<resource name="RAM" quantum="1M"/>
|
|
<provides><service name="Audio_out"/></provides>
|
|
<route>
|
|
<service name="Audio_out"> <child name="audio_drv"/> </service>
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
</route>
|
|
</start>
|
|
<start name="audio0">
|
|
<binary name="test-audio_out"/>
|
|
<resource name="RAM" quantum="8M"/>
|
|
<config>
|
|
<filename>sample.raw</filename>
|
|
<filename>vogel.f32</filename>
|
|
</config>
|
|
<route>
|
|
<service name="Audio_out"> <child name="mixer"/> </service>
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
</route>
|
|
</start>
|
|
</config>
|
|
}
|
|
|
|
install_config $config
|
|
|
|
|
|
#
|
|
# Boot modules
|
|
#
|
|
|
|
# generic modules
|
|
set boot_modules {
|
|
core init
|
|
timer
|
|
audio_drv
|
|
test-audio_out
|
|
sample.raw
|
|
vogel.f32
|
|
mixer
|
|
}
|
|
|
|
# platform-specific components
|
|
append_platform_drv_boot_modules
|
|
|
|
build_boot_image $boot_modules
|
|
append qemu_args "-m 256 -soundhw es1370 -nographic"
|
|
run_genode_until forever
|