2007-01-16 00:42:10 +01:00
|
|
|
PAE must be on for 64-on-64 to work at all.
|
|
|
|
|
2011-09-15 23:43:21 +02:00
|
|
|
Index: xen-4.1.2-testing/tools/python/xen/xend/image.py
|
2007-01-16 00:42:10 +01:00
|
|
|
===================================================================
|
2011-09-15 23:43:21 +02:00
|
|
|
--- xen-4.1.2-testing.orig/tools/python/xen/xend/image.py
|
|
|
|
+++ xen-4.1.2-testing/tools/python/xen/xend/image.py
|
2010-08-01 17:25:18 +02:00
|
|
|
@@ -1030,7 +1030,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))
|
2009-05-04 18:38:09 +02:00
|
|
|
self.vramsize = int(vmConfig['platform'].get('videoram',4)) * 1024
|
2007-01-16 00:42:10 +01:00
|
|
|
|
2007-12-20 16:46:41 +01:00
|
|
|
def buildDomain(self):
|