virt-manager/virtman-kvm.diff
Charles Arnold 304b81595d - bnc#718861 - [SLES11SP2beta5] virt-manager unable to boot
Windows2008 guest with virtio disk and network device (kvm)
- Update to virt-manager 0.9.0 
  * Use a hiding toolbar for fullscreen mode
  * Use libguestfs to show guest packagelist and more (Richard W.M. Jones)
  * Basic 'New VM' wizard support for LXC guests
  * Remote serial console access (with latest libvirt)
  * Remote URL guest installs (with latest libvirt)
  * Add Hardware: Support <filesystem> devices
  * Add Hardware: Support <smartcard> devices (Marc-André Lureau)
  * Enable direct interface selection for qemu/kvm (Gerhard Stenzel)
  * Allow viewing and changing disk serial number
- Update to virtinst 0.600.0
  * virt-install: Various improvements to enable LXC/container guests:
  * New --filesystem option for <filesystem> devices
  * New --init option for container <init> path
  * New --container option (similar to --paravirt or --hvm)
  * virt-install: Make --location remotely (with latest libvirt)
  * virt-install: New --smartcard option for <smartcard> devices
  * (Marc-André Lureau)
  * virt-install: New --numatune option for building guest <numatune> XML
  * virt-install: option to set --disk error_policy=
  * virt-install: option to set --disk serial=

OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=59
2011-09-20 15:08:57 +00:00

13 lines
532 B
Diff

Index: virt-manager-0.9.0/src/virtManager/engine.py
===================================================================
--- virt-manager-0.9.0.orig/src/virtManager/engine.py
+++ virt-manager-0.9.0/src/virtManager/engine.py
@@ -59,6 +59,7 @@ def default_uri():
os.path.exists("/usr/bin/qemu") or
os.path.exists("/usr/bin/qemu-kvm") or
os.path.exists("/usr/bin/kvm") or
+ os.path.exists("/dev/kvm") or
os.path.exists("/usr/libexec/qemu-kvm")):
tryuri = "qemu:///system"