d9d300204b
* Support for adding usb redirection devices (Marc-André Lureau) * Option to switch usb controller to support usb2.0 (Marc-André Lureau) * Option to specify machine type for non-x86 guests (Li Zhang) * Support for filesystem device type and write policy (Deepak C Shetty) * Many bug fixes! - Update to virtinst 0.600.1 * virt-install: --redir option for usb redirection (Marc-André Lureau) * virt-install: Advanced --controller support for usb2 (Marc-André Lureau) * Many bug fixes and minor improvments. OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=86
13 lines
532 B
Diff
13 lines
532 B
Diff
Index: virt-manager-0.9.1/src/virtManager/engine.py
|
|
===================================================================
|
|
--- virt-manager-0.9.1.orig/src/virtManager/engine.py
|
|
+++ virt-manager-0.9.1/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"
|
|
|