From fb76c4e550006cf3948106852228198255f1983e Mon Sep 17 00:00:00 2001 From: Marc Deslauriers Date: Tue, 21 May 2013 16:00:41 -0400 Subject: [PATCH] virt-manager: Update list of Ubuntu releases Hi, Here's a patch to update the list of Ubuntu releases. Thanks, Marc. commit 1ada943da0ec01f444b3df452e6f371d07021330 Author: Marc Deslauriers Date: Tue May 21 15:59:17 2013 -0400 Update list of Ubuntu releases --- virtinst/osdict.py | 29 ++++++++++++++++++++++++++--- 1 file changed, 26 insertions(+), 3 deletions(-) diff --git a/virtinst/osdict.py b/virtinst/osdict.py index 3f8ae95d..68ba8c3d 100644 --- a/virtinst/osdict.py +++ b/virtinst/osdict.py @@ -60,6 +60,12 @@ VGA_VIDEO = { ] } +VMVGA_VIDEO = { + "model_type": [ + (HV_ALL, "vmvga"), + ] +} + DEFAULTS = { "acpi": True, "apic": True, @@ -507,7 +513,6 @@ OS_TYPES = { "ubuntuhardy": { "label": "Ubuntu 8.04 LTS (Hardy Heron)", "distro": "ubuntu", - "supported": True, "devices" : { NET : VIRTIO_NET, }, @@ -555,7 +560,6 @@ OS_TYPES = { "ubuntunatty": { "label": "Ubuntu 11.04 (Natty Narwhal)", "distro": "ubuntu", - "supported": True, "devices" : { DISK : VIRTIO_DISK, NET : VIRTIO_NET, @@ -564,7 +568,6 @@ OS_TYPES = { "ubuntuoneiric": { "label": "Ubuntu 11.10 (Oneiric Ocelot)", "distro": "ubuntu", - "supported": True, "devices" : { DISK : VIRTIO_DISK, NET : VIRTIO_NET, @@ -588,6 +591,26 @@ OS_TYPES = { NET : VIRTIO_NET, }, }, + "ubunturaring": { + "label": "Ubuntu 13.04 (Raring Ringtail)", + "distro": "ubuntu", + "supported": True, + "devices" : { + DISK : VIRTIO_DISK, + NET : VIRTIO_NET, + VIDEO : VMVGA_VIDEO, + }, + }, + "ubuntusaucy": { + "label": "Ubuntu 13.10 (Saucy Salamander)", + "distro": "ubuntu", + "supported": True, + "devices" : { + DISK : VIRTIO_DISK, + NET : VIRTIO_NET, + VIDEO : VMVGA_VIDEO, + }, + }, "generic24": { "label": "Generic 2.4.x kernel"