mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 21:57:55 +00:00
framebuffer test: acpi_drv and pci_device_pd
This commit is contained in:
parent
8b7c67976d
commit
b24f48b125
@ -2,9 +2,10 @@
|
||||
# Build
|
||||
#
|
||||
|
||||
set build_components {
|
||||
core init test/framebuffer drivers/framebuffer drivers/pci drivers/timer }
|
||||
set build_components { core init test/framebuffer drivers/framebuffer drivers/timer }
|
||||
|
||||
lappend_if [have_spec pci] build_components drivers/pci
|
||||
lappend_if [have_spec acpi] build_components drivers/acpi
|
||||
lappend_if [have_spec exynos5] build_components drivers/platform
|
||||
|
||||
build $build_components
|
||||
@ -48,9 +49,23 @@ append_if [have_spec sdl] config {
|
||||
</provides>
|
||||
</start>}
|
||||
|
||||
append_if [have_spec pci] config {
|
||||
append_if [have_spec acpi] config {
|
||||
<start name="acpi">
|
||||
<resource name="RAM" quantum="8M"/>
|
||||
<binary name="acpi_drv"/>
|
||||
<provides>
|
||||
<service name="PCI"/>
|
||||
<service name="IRQ" />
|
||||
</provides>
|
||||
<route>
|
||||
<service name="PCI"> <any-child /> </service>
|
||||
<any-service> <parent/> <any-child /> </any-service>
|
||||
</route>
|
||||
</start>}
|
||||
|
||||
append_if [expr ![have_spec acpi] && [have_spec pci]] config {
|
||||
<start name="pci_drv">
|
||||
<resource name="RAM" quantum="1M"/>
|
||||
<resource name="RAM" quantum="5M"/>
|
||||
<provides><service name="PCI"/></provides>
|
||||
</start>}
|
||||
|
||||
@ -87,6 +102,8 @@ set boot_modules {
|
||||
# platform-specific modules
|
||||
lappend_if [have_spec sdl] boot_modules fb_sdl
|
||||
lappend_if [have_spec pci] boot_modules pci_drv
|
||||
lappend_if [have_spec nova] boot_modules pci_device_pd
|
||||
lappend_if [have_spec acpi] boot_modules acpi_drv
|
||||
lappend_if [have_spec framebuffer] boot_modules fb_drv
|
||||
lappend_if [have_spec exynos5] boot_modules platform_drv
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user