diff options
author | Khem Raj <raj.khem@gmail.com> | 2015-11-18 14:07:05 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-12-01 21:30:55 +0000 |
commit | 4abf18a25ccb1a062a3775be1a70eaf6c155349c (patch) | |
tree | fd54406757445f8c6281f407ac8e06ea08cfafc3 | |
parent | 1047f6592ac81643cd847f104da766dc4a4c81ea (diff) | |
download | openembedded-core-4abf18a25ccb1a062a3775be1a70eaf6c155349c.tar.gz openembedded-core-4abf18a25ccb1a062a3775be1a70eaf6c155349c.tar.bz2 openembedded-core-4abf18a25ccb1a062a3775be1a70eaf6c155349c.zip |
runqemu-internal: Replace wacom-tablet with tablet for usbdevice
When booting weston-core-image with latest wayland/weston/libinput
mouse/touchpad would not work on qemux86, this fixes the issue
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rwxr-xr-x | scripts/runqemu-internal | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/runqemu-internal b/scripts/runqemu-internal index 3b0e54c86e..c2787c3394 100755 --- a/scripts/runqemu-internal +++ b/scripts/runqemu-internal @@ -119,7 +119,7 @@ ORIG_STTY=$(stty -g) if [ "$SLIRP_ENABLED" = "yes" ]; then KERNEL_NETWORK_CMD="ip=dhcp" QEMU_TAP_CMD="" - QEMU_UI_OPTIONS="-show-cursor -usb -usbdevice wacom-tablet" + QEMU_UI_OPTIONS="-show-cursor -usb -usbdevice tablet" QEMU_NETWORK_CMD="" DROOT="/dev/vda" ROOTFS_OPTIONS="-drive file=$ROOTFS,if=virtio,format=raw" @@ -268,7 +268,7 @@ else ROOTFS_OPTIONS="-drive file=$ROOTFS,if=virtio,format=raw" KERNCMDLINE="mem=$QEMU_MEMORY" - QEMU_UI_OPTIONS="-show-cursor -usb -usbdevice wacom-tablet" + QEMU_UI_OPTIONS="-show-cursor -usb -usbdevice tablet" NFS_INSTANCE=`echo $TAP | sed 's/tap//'` export NFS_INSTANCE |