mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
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:
parent
58fc096c76
commit
47b053690e
2 changed files with 5 additions and 4 deletions
|
@ -634,11 +634,9 @@ the console. Therefore, you can still use QEMU to debug a Linux kernel
|
|||
with a serial console.
|
||||
ETEXI
|
||||
|
||||
#ifdef CONFIG_CURSES
|
||||
DEF("curses", 0, QEMU_OPTION_curses,
|
||||
"-curses use a curses/ncurses interface instead of SDL\n",
|
||||
QEMU_ARCH_ALL)
|
||||
#endif
|
||||
STEXI
|
||||
@item -curses
|
||||
@findex curses
|
||||
|
|
7
vl.c
7
vl.c
|
@ -2247,11 +2247,14 @@ int main(int argc, char **argv, char **envp)
|
|||
case QEMU_OPTION_nographic:
|
||||
display_type = DT_NOGRAPHIC;
|
||||
break;
|
||||
#ifdef CONFIG_CURSES
|
||||
case QEMU_OPTION_curses:
|
||||
#ifdef CONFIG_CURSES
|
||||
display_type = DT_CURSES;
|
||||
break;
|
||||
#else
|
||||
fprintf(stderr, "Curses support is disabled\n");
|
||||
exit(1);
|
||||
#endif
|
||||
break;
|
||||
case QEMU_OPTION_portrait:
|
||||
graphic_rotate = 1;
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue