summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-emulation/virtinst/files/virtinst-0.300.1-remove-usb-tablet.patch')
-rw-r--r--app-emulation/virtinst/files/virtinst-0.300.1-remove-usb-tablet.patch96
1 files changed, 96 insertions, 0 deletions
diff --git a/app-emulation/virtinst/files/virtinst-0.300.1-remove-usb-tablet.patch b/app-emulation/virtinst/files/virtinst-0.300.1-remove-usb-tablet.patch
new file mode 100644
index 000000000000..1eeff1faa46d
--- /dev/null
+++ b/app-emulation/virtinst/files/virtinst-0.300.1-remove-usb-tablet.patch
@@ -0,0 +1,96 @@
+Only in virtinst-0.300.1.new: .coverage
+diff -rup virtinst-0.300.1.orig/tests/boot-fullyvirt-disk-block.xml virtinst-0.300.1.new/tests/boot-fullyvirt-disk-block.xml
+--- virtinst-0.300.1.orig/tests/boot-fullyvirt-disk-block.xml 2007-09-25 11:01:12.000000000 -0400
++++ virtinst-0.300.1.new/tests/boot-fullyvirt-disk-block.xml 2007-10-04 12:10:00.000000000 -0400
+@@ -28,7 +28,7 @@
+ </disk>
+
+
+- <input type='tablet' bus='usb'/>
++ <input type='mouse' bus='ps2'/>
+ <graphics type='sdl'/>
+ </devices>
+ </domain>
+diff -rup virtinst-0.300.1.orig/tests/boot-fullyvirt-disk-file.xml virtinst-0.300.1.new/tests/boot-fullyvirt-disk-file.xml
+--- virtinst-0.300.1.orig/tests/boot-fullyvirt-disk-file.xml 2007-09-25 11:01:12.000000000 -0400
++++ virtinst-0.300.1.new/tests/boot-fullyvirt-disk-file.xml 2007-10-04 12:10:17.000000000 -0400
+@@ -28,7 +28,7 @@
+ </disk>
+
+
+- <input type='tablet' bus='usb'/>
++ <input type='mouse' bus='ps2'/>
+ <graphics type='sdl'/>
+ </devices>
+ </domain>
+diff -rup virtinst-0.300.1.orig/tests/install-fullyvirt-disk-block.xml virtinst-0.300.1.new/tests/install-fullyvirt-disk-block.xml
+--- virtinst-0.300.1.orig/tests/install-fullyvirt-disk-block.xml 2007-09-25 11:01:12.000000000 -0400
++++ virtinst-0.300.1.new/tests/install-fullyvirt-disk-block.xml 2007-10-04 12:10:29.000000000 -0400
+@@ -29,7 +29,7 @@
+ </disk>
+
+
+- <input type='tablet' bus='usb'/>
++ <input type='mouse' bus='ps2'/>
+ <graphics type='sdl'/>
+ </devices>
+ </domain>
+diff -rup virtinst-0.300.1.orig/tests/install-fullyvirt-disk-file.xml virtinst-0.300.1.new/tests/install-fullyvirt-disk-file.xml
+--- virtinst-0.300.1.orig/tests/install-fullyvirt-disk-file.xml 2007-09-25 11:01:12.000000000 -0400
++++ virtinst-0.300.1.new/tests/install-fullyvirt-disk-file.xml 2007-10-04 12:10:37.000000000 -0400
+@@ -29,7 +29,7 @@
+ </disk>
+
+
+- <input type='tablet' bus='usb'/>
++ <input type='mouse' bus='ps2'/>
+ <graphics type='sdl'/>
+ </devices>
+ </domain>
+diff -rup virtinst-0.300.1.orig/virtinst/FullVirtGuest.py virtinst-0.300.1.new/virtinst/FullVirtGuest.py
+--- virtinst-0.300.1.orig/virtinst/FullVirtGuest.py 2007-09-25 11:01:12.000000000 -0400
++++ virtinst-0.300.1.new/virtinst/FullVirtGuest.py 2007-10-04 12:02:36.000000000 -0400
+@@ -27,6 +27,7 @@ class FullVirtGuest(Guest.XenGuest):
+ "acpi": True, \
+ "apic": True, \
+ "continue": False, \
++ "input": [ "mouse", "ps2"],
+ "variants": { "rhel2.1": { "label": "Red Hat Enterprise Linux 2.1", "distro": "rhel" }, \
+ "rhel3": { "label": "Red Hat Enterprise Linux 3", "distro": "rhel" }, \
+ "rhel4": { "label": "Red Hat Enterprise Linux 4", "distro": "rhel" }, \
+@@ -44,6 +45,7 @@ class FullVirtGuest(Guest.XenGuest):
+ "acpi": True, \
+ "apic": True, \
+ "continue": True, \
++ "input": [ "tablet", "usb"],
+ "variants": { "winxp": { "label": "Microsoft Windows XP", \
+ "acpi": False, \
+ "apic": False }, \
+@@ -58,6 +60,7 @@ class FullVirtGuest(Guest.XenGuest):
+ "acpi": True,
+ "apic": True,
+ "continue": False, \
++ "input": [ "mouse", "ps2"],
+ "variants": { "solaris9": { "label": "Sun Solaris 9" }, \
+ "solaris10": { "label": "Sun Solaris 10" }, \
+ "freebsd6": { "label": "Free BSD 6.x" }, \
+@@ -68,6 +71,7 @@ class FullVirtGuest(Guest.XenGuest):
+ "acpi": True,
+ "apic": True,
+ "continue": False,
++ "input": [ "mouse", "ps2"],
+ "variants": { "msdos": { "label": "MS-DOS", \
+ "acpi": False, \
+ "apic": False }, \
+@@ -161,7 +165,10 @@ class FullVirtGuest(Guest.XenGuest):
+ os_distro = property(get_os_distro)
+
+ def get_input_device(self):
+- return ("tablet", "usb")
++ if self.os_type is None or not FullVirtGuest.OS_TYPES.has_key(self.os_type):
++ return ("mouse", "ps2")
++ input = FullVirtGuest.OS_TYPES[self.os_type]["input"]
++ return (input[0], input[1])
+
+ def _get_features_xml(self):
+ ret = "<features>\n"