From 0fe0ea91719594718cf92fe2100fa750faca0e20 Mon Sep 17 00:00:00 2001 From: Daniel P. Berrange Date: Feb 27 2009 11:55:40 +0000 Subject: Add Fedora 11 OS type with USB tablet (rhbz #487028) --- diff --git a/python-virtinst.spec b/python-virtinst.spec index d522981..040ee8f 100644 --- a/python-virtinst.spec +++ b/python-virtinst.spec @@ -11,7 +11,7 @@ Summary: Python modules and utilities for installing virtual machines Name: python-%{appname} Version: 0.400.0 -Release: 5%{_extra_release} +Release: 6%{_extra_release} Source0: http://virt-manager.org/download/sources/%{appname}/%{appname}-%{version}.tar.gz Patch1: %{appname}-%{version}-qemu-conn-check.patch Patch2: %{appname}-%{version}-virt-convert-dict.patch @@ -25,6 +25,7 @@ Patch9: %{appname}-%{version}-win64-entry.patch Patch10: %{appname}-%{version}-update-translations.patch Patch11: %{appname}-%{version}-undo-pxe-virtio.patch Patch12: %{appname}-%{version}-fix-translated-help.patch +Patch13: %{appname}-%{version}-fedora11-ostype.patch License: GPLv2+ Group: Development/Libraries BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -65,6 +66,7 @@ and install new VMs) and virt-clone (clone an existing virtual machine). %patch10 -p1 %patch11 -p1 %patch12 -p1 +%patch13 -p1 %build python setup.py build @@ -99,6 +101,9 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/virt-convert %changelog +* Fri Feb 27 2009 Daniel P. Berrange - 0.400.0-6.fc10 +- Add Fedora 11 OS type with USB tablet (rhbz #487028) + * Tue Dec 2 2008 Cole Robinson - 0.400.0-5.fc10 - Fix printing translated help messages - Allow using virtio to pxe boot diff --git a/virtinst-0.400.0-fedora11-ostype.patch b/virtinst-0.400.0-fedora11-ostype.patch new file mode 100644 index 0000000..902a9da --- /dev/null +++ b/virtinst-0.400.0-fedora11-ostype.patch @@ -0,0 +1,17 @@ +diff -rup virtinst-0.400.0.orig/virtinst/FullVirtGuest.py virtinst-0.400.0.new/virtinst/FullVirtGuest.py +--- virtinst-0.400.0.orig/virtinst/FullVirtGuest.py 2009-02-27 11:52:32.000000000 +0000 ++++ virtinst-0.400.0.new/virtinst/FullVirtGuest.py 2009-02-27 11:53:25.000000000 +0000 +@@ -85,6 +85,13 @@ class FullVirtGuest(Guest.XenGuest): + "disk" : { "bus" : [ (["kvm"], "virtio") ] }, + "net" : { "model" : [ (["kvm"], "virtio") ] } + }}, ++ "fedora11": { "label": "Fedora 11", "distro": "fedora", ++ "devices" : { ++ "disk" : { "bus" : [ (["kvm"], "virtio") ] }, ++ "net" : { "model" : [ (["kvm"], "virtio") ] }, ++ "input" : { "type" : [ (["all"], "tablet") ], ++ "bus" : [ (["all"], "usb"), ] }, ++ }}, + "sles10": { "label": "Suse Linux Enterprise Server", + "distro": "suse" }, + "debianetch": { "label": "Debian Etch", "distro": "debian" },