Enable libSDL on ARM, add 'libports/run/sdl.run'

Fixes #45.
This commit is contained in:
Norman Feske 2012-08-15 20:01:32 +02:00
parent 7f1dd23051
commit 302e30662a
2 changed files with 107 additions and 13 deletions

View File

@ -5,14 +5,6 @@
SDL = SDL-1.2.13
SDL_DIR = $(REP_DIR)/contrib/$(SDL)
#
# XXX libSDL does not build on ARM because a compile-time assertion fails:
#
#
# SDL_stdinc.h:133:1: error: size of array SDL_dummy_enum is negative
#
REQUIRES = x86
# build shared object
SHARED_LIB = yes
@ -33,11 +25,6 @@ SRC_C = SDL.c \
SDL_fatal.c
INC_DIR += $(REP_DIR)/src/lib/sdl
#INC_DIR += $(REP_DIR)/include/SDL_genode \
# $(REP_DIR)/include/SDL_genode/SDL \
# $(REP_DIR)/include/SDL_contrib \
# $(REP_DIR)/include/SDL_contrib/SDL \
# $(REP_DIR)/src/lib/sdl/src \
# stdlib files
SRC_C += SDL_getenv.c \

107
libports/run/sdl.run Normal file
View File

@ -0,0 +1,107 @@
#
# Build
#
set build_components {
core init
drivers/timer
test/sdl
drivers/framebuffer drivers/pci drivers/input
}
build $build_components
create_boot_directory
#
# Generate config
#
append 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>
<any-service> <parent/> <any-child/> </any-service>
</default-route>}
append_if [have_spec sdl] config {
<start name="fb_sdl">
<resource name="RAM" quantum="4M"/>
<provides>
<service name="Input"/>
<service name="Framebuffer"/>
</provides>
</start>}
append_if [have_spec pci] config {
<start name="pci_drv">
<resource name="RAM" quantum="1M"/>
<provides><service name="PCI"/></provides>
</start>}
append_if [have_spec vesa] config {
<start name="vesa_drv">
<resource name="RAM" quantum="1M"/>
<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"/>
<provides><service name="Input"/></provides>
</start>}
append config {
<start name="timer">
<resource name="RAM" quantum="1M"/>
<provides><service name="Timer"/></provides>
</start>
<start name="test-sdl">
<resource name="RAM" quantum="32M"/>
</start>
</config>}
install_config $config
#
# Boot modules
#
# generic modules
set boot_modules {
core init
timer
test-sdl
ld.lib.so libc.lib.so libc_log.lib.so sdl.lib.so pthread.lib.so
}
# platform-specific 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 ps2] boot_modules ps2_drv
lappend_if [have_spec pl11x] boot_modules pl11x_drv
build_boot_image $boot_modules
append qemu_args " -m 256 "
run_genode_until forever