aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/runqemu-internal
diff options
context:
space:
mode:
authorChen Qi <Qi.Chen@windriver.com>2013-07-23 10:58:04 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-08-16 11:14:14 +0100
commit08947869917dc5a9dfff05b0ee19279f60cf6d2b (patch)
treef0af493c808fbcf061f5632b7b44ee6441fc7130 /scripts/runqemu-internal
parent4bd419f95868d5b8707a45cee5f6c5c6a840a65b (diff)
downloadopenembedded-core-contrib-08947869917dc5a9dfff05b0ee19279f60cf6d2b.tar.gz
runqemu-internal: fix to start X correctly in live images
The QEMUOPTIONS for ISOFS was not complete, leading to failures when trying to start X in live images. This patch fixes this problem. [YOCTO #4103] [YOCTO #4884] Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'scripts/runqemu-internal')
-rwxr-xr-xscripts/runqemu-internal2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/runqemu-internal b/scripts/runqemu-internal
index 9619bec7b9..8a6e551abc 100755
--- a/scripts/runqemu-internal
+++ b/scripts/runqemu-internal
@@ -526,7 +526,7 @@ if [ "x$RAMFS" = "xtrue" ]; then
fi
if [ "x$ISOFS" = "xtrue" ]; then
- QEMUOPTIONS="-cdrom $ROOTFS"
+ QEMUOPTIONS="$QEMU_NETWORK_CMD -cdrom $ROOTFS $QEMU_UI_OPTIONS"
fi
if [ "x$QEMUOPTIONS" = "x" ]; then