libpayload: Add a Geode video driver
Add a Geode video driver in lieu of VGA on Geode LX devices Signed-off-by: Jordan Crouse <jordan.crouse@amd.com> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3233 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
@@ -30,12 +30,19 @@
|
||||
#include <libpayload.h>
|
||||
#include <video_console.h>
|
||||
|
||||
#ifdef CONFIG_GEODE_VIDEO_CONSOLE
|
||||
extern struct video_console geode_video_console;
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_VGA_VIDEO_CONSOLE
|
||||
extern struct video_console vga_video_console;
|
||||
#endif
|
||||
|
||||
static struct video_console *console_list[] =
|
||||
{
|
||||
#ifdef CONFIG_GEODE_VIDEO_CONSOLE
|
||||
&geode_video_console,
|
||||
#endif
|
||||
#ifdef CONFIG_VGA_VIDEO_CONSOLE
|
||||
&vga_video_console,
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user