diff options
author | Richard Griffiths <rgriffit@windriver.com> | 2010-09-21 13:38:08 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-10-04 09:40:58 +0100 |
commit | ce7101b1f03a9d5b782934e5976a5183e44affb0 (patch) | |
tree | 841531df037bc71e0f81f9fae9aa7550adceeb76 /scripts | |
parent | 8223e505820245906b171961ea61956106f7dae6 (diff) | |
download | openembedded-core-ce7101b1f03a9d5b782934e5976a5183e44affb0.tar.gz openembedded-core-ce7101b1f03a9d5b782934e5976a5183e44affb0.tar.bz2 openembedded-core-ce7101b1f03a9d5b782934e5976a5183e44affb0.zip |
qemumips: override default UI options.
Fixes [BUGID #99]
The mouse, usb and cursor devices don't work for the
qemumips machine. There's no easy way to 'undo' the
defaults, or dynamically remove them, so we simply
don't use the default UI options for this machine type.
Mouse and pointer are provided via ps/2 and not via
the usb and wacom tablet driver.
Signed-off-by: Richard Griffiths <rgriffit@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/poky-qemu-internal | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/poky-qemu-internal b/scripts/poky-qemu-internal index f13b95def2..30e90df0b6 100755 --- a/scripts/poky-qemu-internal +++ b/scripts/poky-qemu-internal @@ -239,7 +239,7 @@ fi if [ "$MACHINE" = "qemumips" ]; then QEMU=qemu-system-mips MACHINE_SUBTYPE=malta - QEMU_UI_OPTIONS="$QEMU_UI_OPTIONS -vga cirrus" + QEMU_UI_OPTIONS="-vga cirrus" if [ "$TYPE" = "ext3" ]; then #KERNCMDLINE="root=/dev/hda console=ttyS0 console=tty0 $KERNEL_NETWORK_CMD mem=$QEMU_MEMORY" KERNCMDLINE="root=/dev/hda console=ttyS0 console=tty $KERNEL_NETWORK_CMD mem=$QEMU_MEMORY" |