]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
sandbox: Add SDL library for LCD, keyboard, audio
authorSimon Glass <sjg@chromium.org>
Thu, 27 Feb 2014 20:26:17 +0000 (13:26 -0700)
committerSimon Glass <sjg@chromium.org>
Tue, 18 Mar 2014 02:05:48 +0000 (20:05 -0600)
commitbbc09bf27e77dc80f74054f7fc8a66111dd113c6
treee1a888afe82b62afcf2fabe0401b0c002fb41942
parentbda7773f044a13cf69cbbcb016285dd217b981c3
sandbox: Add SDL library for LCD, keyboard, audio

SDL (Simple DirectMedia Layer - see www.libsdl.org) is a library which
provides simple graphics and sound features. It works under X11 and also
with a simple frame buffer interface. It is ideally suited to sandbox
U-Boot since it fits nicely with the low-level feature set required by
U-Boot. For example, U-Boot has its own font drawing routines, its own
keyboard processing and just needs raw sound output.

We can use SDL to provide emulation of these basic functions for sandbox.
This significantly expands the testing that is possible with sandbox.

Add a basic SDL library which we will use in future commits.

Tested-by: Che-Liang Chiou <clchiou@chromium.org>
Signed-off-by: Simon Glass <sjg@chromium.org>
arch/sandbox/config.mk
arch/sandbox/cpu/Makefile
arch/sandbox/cpu/sdl.c [new file with mode: 0644]
arch/sandbox/include/asm/sdl.h [new file with mode: 0644]