sim-card
/
qemu
Archived
10
0
Fork 0

error message if user specifies curses on cmd line when curses is disabled

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:35 +01:00 committed by Anthony Liguori
parent 58fc096c76
commit 47b053690e
2 changed files with 5 additions and 4 deletions

View File

@ -634,11 +634,9 @@ the console. Therefore, you can still use QEMU to debug a Linux kernel
with a serial console. with a serial console.
ETEXI ETEXI
#ifdef CONFIG_CURSES
DEF("curses", 0, QEMU_OPTION_curses, DEF("curses", 0, QEMU_OPTION_curses,
"-curses use a curses/ncurses interface instead of SDL\n", "-curses use a curses/ncurses interface instead of SDL\n",
QEMU_ARCH_ALL) QEMU_ARCH_ALL)
#endif
STEXI STEXI
@item -curses @item -curses
@findex curses @findex curses

7
vl.c
View File

@ -2247,11 +2247,14 @@ int main(int argc, char **argv, char **envp)
case QEMU_OPTION_nographic: case QEMU_OPTION_nographic:
display_type = DT_NOGRAPHIC; display_type = DT_NOGRAPHIC;
break; break;
#ifdef CONFIG_CURSES
case QEMU_OPTION_curses: case QEMU_OPTION_curses:
#ifdef CONFIG_CURSES
display_type = DT_CURSES; display_type = DT_CURSES;
break; #else
fprintf(stderr, "Curses support is disabled\n");
exit(1);
#endif #endif
break;
case QEMU_OPTION_portrait: case QEMU_OPTION_portrait:
graphic_rotate = 1; graphic_rotate = 1;
break; break;