mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 06:07:59 +00:00
Relax requirements of 'eglgears.run'
The run script works on foc_pbxa9 and foc_x86_64. So there is no reason to restrict it to x86 only.
This commit is contained in:
parent
d3e8328089
commit
7f1dd23051
@ -1,6 +1,3 @@
|
||||
if {![have_spec x86]} {
|
||||
puts "Run script is only supported on x86"; exit 0 }
|
||||
|
||||
build {
|
||||
core init
|
||||
drivers/timer
|
||||
@ -54,6 +51,12 @@ append_if [have_spec vesa] config {
|
||||
<provides><service name="Framebuffer"/></provides>
|
||||
</start>}
|
||||
|
||||
append_if [have_spec pl11x] config {
|
||||
<start name="pl11x_drv">
|
||||
<resource name="RAM" quantum="2M"/>
|
||||
<provides><service name="Framebuffer"/></provides>
|
||||
</start>}
|
||||
|
||||
append_if [have_spec ps2] config {
|
||||
<start name="ps2_drv">
|
||||
<resource name="RAM" quantum="1M"/>
|
||||
@ -92,7 +95,7 @@ append config {
|
||||
<service name="Timer"/>
|
||||
</parent-provides>
|
||||
<start name="nit_fb">
|
||||
<resource name="RAM" quantum="1M"/>
|
||||
<resource name="RAM" quantum="2M"/>
|
||||
<provides><service name="Input"/><service name="Framebuffer"/></provides>
|
||||
<route><any-service><parent/></any-service></route>
|
||||
<config xpos="300" ypos="100" width="576" height="408" />
|
||||
@ -119,6 +122,7 @@ set boot_modules {
|
||||
lappend_if [have_spec linux] boot_modules fb_sdl
|
||||
lappend_if [have_spec pci] boot_modules pci_drv
|
||||
lappend_if [have_spec vesa] boot_modules vesa_drv
|
||||
lappend_if [have_spec pl11x] boot_modules pl11x_drv
|
||||
lappend_if [have_spec ps2] boot_modules ps2_drv
|
||||
lappend_if [have_spec i915] boot_modules gallium-i915.lib.so
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user