2007-01-16 00:42:10 +01:00
|
|
|
PAE must be on for 64-on-64 to work at all.
|
|
|
|
|
2008-03-15 00:07:14 +01:00
|
|
|
Index: xen-3.2.1-testing/tools/python/xen/xend/image.py
|
2007-01-16 00:42:10 +01:00
|
|
|
===================================================================
|
2008-03-15 00:07:14 +01:00
|
|
|
--- xen-3.2.1-testing.orig/tools/python/xen/xend/image.py
|
|
|
|
+++ xen-3.2.1-testing/tools/python/xen/xend/image.py
|
|
|
|
@@ -592,7 +592,7 @@ class X86_HVM_ImageHandler(HVMImageHandl
|
2007-01-16 00:42:10 +01:00
|
|
|
|
2007-12-20 16:46:41 +01:00
|
|
|
def configure(self, vmConfig):
|
|
|
|
HVMImageHandler.configure(self, vmConfig)
|
|
|
|
- self.pae = int(vmConfig['platform'].get('pae', 0))
|
|
|
|
+ self.pae = int(vmConfig['platform'].get('pae', 1))
|
2007-01-16 00:42:10 +01:00
|
|
|
|
2007-12-20 16:46:41 +01:00
|
|
|
def buildDomain(self):
|
|
|
|
xc.hvm_set_param(self.vm.getDomid(), HVM_PARAM_PAE_ENABLED, self.pae)
|