This reverts commit 5b062a58ac76b39c2dc6a7e1543affdf43dc7ee7. This fixes issue 109. The mouse type can be set with the usb_mouse hv parameter.
Signed-off-by: Guido Trotter <[email protected]> --- lib/hypervisor/hv_kvm.py | 4 ---- 1 files changed, 0 insertions(+), 4 deletions(-) diff --git a/lib/hypervisor/hv_kvm.py b/lib/hypervisor/hv_kvm.py index 81499b5..748eb5d 100644 --- a/lib/hypervisor/hv_kvm.py +++ b/lib/hypervisor/hv_kvm.py @@ -547,10 +547,6 @@ class KVMHypervisor(hv_base.BaseHypervisor): vnc_arg = 'unix:%s/%s.vnc' % (vnc_bind_address, instance.name) kvm_cmd.extend(['-vnc', vnc_arg]) - - # Also add a tablet USB device to act as a mouse - # This solves various mouse alignment issues - kvm_cmd.extend(['-usbdevice', 'tablet']) else: kvm_cmd.extend(['-nographic']) -- 1.7.1
