4ad8024558
* SPICE support (requires spice-gtk) (Marc-André Lureau) * Option to configure CPU model * Option to configure CPU topology * Save and migration cancellation (Wen Congyang) * Save and migration progress reporting * Option to enable bios boot menu * Option to configure direct kernel/initrd boot - Update to virtinst 0.500.5 * New virt-install --cpu option for configuring CPU model/features * virt-install --vcpus option can not specify topology and maxvcpus * New virt-install --graphics option to unify --vnc, --sdl, spice config * New virt-install --print-xml option to skip install and print XML OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=48
13 lines
532 B
Diff
13 lines
532 B
Diff
Index: virt-manager-0.8.6/src/virtManager/engine.py
|
|
===================================================================
|
|
--- virt-manager-0.8.6.orig/src/virtManager/engine.py
|
|
+++ virt-manager-0.8.6/src/virtManager/engine.py
|
|
@@ -54,6 +54,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"
|
|
|