From: Andreas Färber Date: Mon, 29 Jul 2013 16:47:21 +0000 (+0200) Subject: mcf5208: Don't enforce use of kernel for qtest X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=5c12762c2d9cfc7ff9744e4af14ef35190c5369b;p=qemu.git mcf5208: Don't enforce use of kernel for qtest Signed-off-by: Andreas Färber --- diff --git a/hw/m68k/mcf5208.c b/hw/m68k/mcf5208.c index fb96fe8548..6e30c0b393 100644 --- a/hw/m68k/mcf5208.c +++ b/hw/m68k/mcf5208.c @@ -10,6 +10,7 @@ #include "qemu/timer.h" #include "hw/ptimer.h" #include "sysemu/sysemu.h" +#include "sysemu/qtest.h" #include "net/net.h" #include "hw/boards.h" #include "hw/loader.h" @@ -267,6 +268,9 @@ static void mcf5208evb_init(QEMUMachineInitArgs *args) /* Load kernel. */ if (!kernel_filename) { + if (qtest_enabled()) { + return; + } fprintf(stderr, "Kernel image must be specified\n"); exit(1); }