From: Son Hyunjun Date: Thu, 8 Mar 2012 10:39:03 +0000 (+0900) Subject: add maru vga X-Git-Tag: TizenStudio_2.0_p2.3~1802 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=163248b1a4018c4e5905d21b49cd3930123b4a0e;p=sdk%2Femulator%2Fqemu.git add maru vga --- 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);