21 lines
747 B
Diff
21 lines
747 B
Diff
|
Subject: create: Fix non-x86 qemu/kvm guest creation
|
||
|
From: Cole Robinson crobinso@redhat.com Mon Feb 17 10:24:41 2014 -0500
|
||
|
Date: Mon Feb 17 10:24:59 2014 -0500:
|
||
|
Git: a37b200f69347922800d58342968307b74ec9ded
|
||
|
|
||
|
|
||
|
diff --git a/virtManager/create.py b/virtManager/create.py
|
||
|
index d8e68c3..f1c57b7 100644
|
||
|
--- a/virtManager/create.py
|
||
|
+++ b/virtManager/create.py
|
||
|
@@ -1376,7 +1376,8 @@ class vmmCreate(vmmGObjectUI):
|
||
|
|
||
|
guest.add_default_devices()
|
||
|
|
||
|
- if self.conn.check_support(self.conn.SUPPORT_CONN_PM_DISABLE):
|
||
|
+ if (guest.os.is_x86() and
|
||
|
+ self.conn.check_support(self.conn.SUPPORT_CONN_PM_DISABLE)):
|
||
|
guest.pm.suspend_to_mem = False
|
||
|
guest.pm.suspend_to_disk = False
|
||
|
|