summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorNitin A Kamble <nitin.a.kamble@intel.com>2010-05-14 11:57:27 -0700
committerNitin A Kamble <nitin.a.kamble@intel.com>2010-05-14 11:57:27 -0700
commitb2c4aee28395b9a897bba8c97384f2b92f4bcbcb (patch)
tree3073e54d03900e1284348ecfce3c4a955c1e9c05 /scripts
parentf71a4b9be8816fb7446370369fb147c4f19fe71c (diff)
downloadopenembedded-core-contrib-b2c4aee28395b9a897bba8c97384f2b92f4bcbcb.tar.gz
poky-qemu-internal Add -show-cursor to qemux86
Without this option the need to do the blind guesswork about the position of the pointer. Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/poky-qemu-internal4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/poky-qemu-internal b/scripts/poky-qemu-internal
index bcd4647988..738bf53fc8 100755
--- a/scripts/poky-qemu-internal
+++ b/scripts/poky-qemu-internal
@@ -115,7 +115,7 @@ if [ "$MACHINE" = "qemux86" ]; then
QEMU=qemu
if [ "$TYPE" = "ext3" ]; then
KERNCMDLINE="vga=0 root=/dev/hda mem=$QEMU_MEMORY $KERNEL_NETWORK_CMD"
- QEMUOPTIONS="-vga vmware $QEMU_NETWORK_CMD -hda $HDIMAGE -enable-gl"
+ QEMUOPTIONS="-vga vmware -show-cursor $QEMU_NETWORK_CMD -hda $HDIMAGE -enable-gl"
fi
if [ "$TYPE" = "nfs" ]; then
if [ "x$HDIMAGE" = "x" ]; then
@@ -126,7 +126,7 @@ if [ "$MACHINE" = "qemux86" ]; then
return
fi
KERNCMDLINE="root=/dev/nfs nfsroot=192.168.7.1:$HDIMAGE rw $KERNEL_NETWORK_CMD mem=$QEMU_MEMORY"
- QEMUOPTIONS="-vga vmware $QEMU_NETWORK_CMD -enable-gl"
+ QEMUOPTIONS="-vga vmware -show-cursor $QEMU_NETWORK_CMD -enable-gl"
fi
fi