From a7e8f83cbe1eca9f16af2b05c6cad327f80a5ffa Mon Sep 17 00:00:00 2001 From: Chen Qi Date: Tue, 23 Jul 2013 10:58:04 +0800 Subject: [PATCH] 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] (From OE-Core rev: 08947869917dc5a9dfff05b0ee19279f60cf6d2b) Signed-off-by: Chen Qi Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- scripts/runqemu-internal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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