[oe-commits] Chen Qi : runqemu-internal: fix to start X correctly in live images

git at git.openembedded.org git at git.openembedded.org
Fri Aug 16 10:04:33 UTC 2013


Module: openembedded-core.git
Branch: master
Commit: 08947869917dc5a9dfff05b0ee19279f60cf6d2b
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=08947869917dc5a9dfff05b0ee19279f60cf6d2b

Author: Chen Qi <Qi.Chen at windriver.com>
Date:   Tue Jul 23 10:58:04 2013 +0800

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 at windriver.com>
Signed-off-by: Saul Wold <sgw at linux.intel.com>

---

 scripts/runqemu-internal |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/scripts/runqemu-internal b/scripts/runqemu-internal
index 9619bec..8a6e551 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



More information about the Openembedded-commits mailing list