Add support for -display vnc

Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
Jes Sorensen 2011-03-16 13:33:33 +01:00 committed by Anthony Liguori
parent 4171d32e6e
commit 3264ff120c
2 changed files with 18 additions and 1 deletions

14
vl.c
View file

@ -1611,6 +1611,20 @@ static DisplayType select_display(const char *p)
fprintf(stderr, "SDL support is disabled\n");
exit(1);
#endif
} else if (strstart(p, "vnc", &opts)) {
display_remote++;
if (*opts) {
const char *nextopt;
if (strstart(opts, "=", &nextopt)) {
vnc_display = nextopt;
}
}
if (!vnc_display) {
fprintf(stderr, "VNC requires a display argument vnc=<display>\n");
exit(1);
}
} else if (strstart(p, "curses", &opts)) {
#ifdef CONFIG_CURSES
display = DT_CURSES;