Files
sablink-distro/app-emulation/virtinst/files/virtinst-0.103.0-accelerate.patch
T
lxnay ebfd6f923c bumping virtualization stack
git-svn-id: http://svn.sabayonlinux.org/overlay@1225 d7aec97c-591d-0410-af39-a8856400b30a
2007-05-03 22:25:42 +00:00

31 lines
886 B
Diff

changeset: 161:00984cdd0c55
user: Mark McLoughlin <markmc@redhat.com>
date: Mon Apr 30 11:43:24 2007 -0400
files: virt-install
description:
[et-mgmt-tools] [patch 1/4] Typo in kvm support
Patch from David Lutterkort
Fixes a minor type in kvm support where we reference a
non-existent module.
Signed-off-by: Mark McLoughlin <markmc@redhat.com>
diff -r 71f2046b9805 -r 00984cdd0c55 virt-install
--- a/virt-install Wed Apr 25 15:56:03 2007 -0400
+++ b/virt-install Mon Apr 30 11:43:24 2007 -0400
@@ -519,9 +519,9 @@ def main():
hvm = True
type = "qemu"
if options.accelerate:
- if util.is_kvm_capable():
+ if virtinst.util.is_kvm_capable():
type = "kvm"
- elif util.is_kqemu_capable():
+ elif virtinst.util.is_kqemu_capable():
type = "kqemu"
if hvm: