diff options
author | Scott Garman <scott.a.garman@intel.com> | 2010-10-14 11:42:13 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-10-14 20:12:04 +0100 |
commit | 9a2ae44380a5ef81fb099075af99351db06a3252 (patch) | |
tree | 8b85901b1b665a293797e4e9171b9acee2e540eb /scripts/poky-qemu-internal | |
parent | 7d7d35f369c271a7b7cf517601d472ab2104297b (diff) | |
download | poky-9a2ae44380a5ef81fb099075af99351db06a3252.tar.gz |
poky-qemu-internal: make the -no-reboot qemu option mandatory
This fixes [BUGID #100]
Signed-off-by: Scott Garman <scott.a.garman@intel.com>
Diffstat (limited to 'scripts/poky-qemu-internal')
-rwxr-xr-x | scripts/poky-qemu-internal | 5 |
1 files changed, 3 insertions, 2 deletions
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 | |||
440 | fi | 440 | fi |
441 | 441 | ||
442 | echo "Running $QEMU..." | 442 | echo "Running $QEMU..." |
443 | echo $QEMUBIN -kernel $KERNEL $QEMUOPTIONS $SERIALOPTS $SCRIPT_QEMU_CMDLINE_OPT --append '"'$KERNCMDLINE $SCRIPT_KERNEL_OPT'"' | 443 | # -no-reboot is a mandatory option - see bug #100 |
444 | $QEMUBIN -kernel $KERNEL $QEMUOPTIONS $SERIALOPTS $SCRIPT_QEMU_OPT --append "$KERNCMDLINE $SCRIPT_KERNEL_OPT" || /bin/true | 444 | echo $QEMUBIN -kernel $KERNEL $QEMUOPTIONS $SERIALOPTS -no-reboot $SCRIPT_QEMU_CMDLINE_OPT --append '"'$KERNCMDLINE $SCRIPT_KERNEL_OPT'"' |
445 | $QEMUBIN -kernel $KERNEL $QEMUOPTIONS $SERIALOPTS -no-reboot $SCRIPT_QEMU_OPT --append "$KERNCMDLINE $SCRIPT_KERNEL_OPT" || /bin/true | ||
445 | 446 | ||
446 | cleanup | 447 | cleanup |
447 | 448 | ||