From 163248b1a4018c4e5905d21b49cd3930123b4a0e Mon Sep 17 00:00:00 2001 From: Son Hyunjun Date: Thu, 8 Mar 2012 19:39:03 +0900 Subject: [PATCH] add maru vga --- vl.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vl.c b/vl.c index 2226e93..cc609f2 100644 --- a/vl.c +++ b/vl.c @@ -1566,6 +1566,10 @@ static void select_vgahw (const char *p) vga_interface_type = VGA_XENFB; } else if (strstart(p, "qxl", &opts)) { vga_interface_type = VGA_QXL; +#ifdef CONFIG_MARU + } else if (strstart(p, "maru", &opts)) { + vga_interface_type = VGA_MARU; +#endif } else if (!strstart(p, "none", &opts)) { invalid_vga: fprintf(stderr, "Unknown vga type: %s\n", p); -- 2.7.4