diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2013-07-23 10:58:04 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-08-16 11:14:14 +0100 |
commit | 08947869917dc5a9dfff05b0ee19279f60cf6d2b (patch) | |
tree | f0af493c808fbcf061f5632b7b44ee6441fc7130 /scripts/runqemu-internal | |
parent | 4bd419f95868d5b8707a45cee5f6c5c6a840a65b (diff) | |
download | openembedded-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-x | scripts/runqemu-internal | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/runqemu-internal b/scripts/runqemu-internal index 9619bec7b9c..8a6e551abc9 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 |