2c789f7e2f
OBS-URL: https://build.opensuse.org/package/show/Virtualization/xen?expand=0&rev=24e6c52baae4dc9cfba9b8bb18434dec
16 lines
660 B
Diff
16 lines
660 B
Diff
PAE must be on for 64-on-64 to work at all.
|
|
|
|
Index: xen-4.0.0-testing/tools/python/xen/xend/image.py
|
|
===================================================================
|
|
--- xen-4.0.0-testing.orig/tools/python/xen/xend/image.py
|
|
+++ xen-4.0.0-testing/tools/python/xen/xend/image.py
|
|
@@ -1028,7 +1028,7 @@ class X86_HVM_ImageHandler(HVMImageHandl
|
|
|
|
def configure(self, vmConfig):
|
|
HVMImageHandler.configure(self, vmConfig)
|
|
- self.pae = int(vmConfig['platform'].get('pae', 0))
|
|
+ self.pae = int(vmConfig['platform'].get('pae', 1))
|
|
self.vramsize = int(vmConfig['platform'].get('videoram',4)) * 1024
|
|
|
|
def buildDomain(self):
|