From: Scott Garman Date: Thu, 14 Oct 2010 18:42:13 +0000 (-0700) Subject: poky-qemu-internal: make the -no-reboot qemu option mandatory X-Git-Tag: 2011-1~4246 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=9a2ae44380a5ef81fb099075af99351db06a3252;p=openembedded-core.git poky-qemu-internal: make the -no-reboot qemu option mandatory This fixes [BUGID #100] Signed-off-by: Scott Garman --- diff --git a/scripts/poky-qemu-internal b/scripts/poky-qemu-internal index 66db0333ee..cf16407e2a 100755 --- a/scripts/poky-qemu-internal +++ b/scripts/poky-qemu-internal @@ -440,8 +440,9 @@ else fi echo "Running $QEMU..." -echo $QEMUBIN -kernel $KERNEL $QEMUOPTIONS $SERIALOPTS $SCRIPT_QEMU_CMDLINE_OPT --append '"'$KERNCMDLINE $SCRIPT_KERNEL_OPT'"' -$QEMUBIN -kernel $KERNEL $QEMUOPTIONS $SERIALOPTS $SCRIPT_QEMU_OPT --append "$KERNCMDLINE $SCRIPT_KERNEL_OPT" || /bin/true +# -no-reboot is a mandatory option - see bug #100 +echo $QEMUBIN -kernel $KERNEL $QEMUOPTIONS $SERIALOPTS -no-reboot $SCRIPT_QEMU_CMDLINE_OPT --append '"'$KERNCMDLINE $SCRIPT_KERNEL_OPT'"' +$QEMUBIN -kernel $KERNEL $QEMUOPTIONS $SERIALOPTS -no-reboot $SCRIPT_QEMU_OPT --append "$KERNCMDLINE $SCRIPT_KERNEL_OPT" || /bin/true cleanup