12bd2215f3
Copy from Virtualization/xen based on submit request 17919 from user charlesa OBS-URL: https://build.opensuse.org/request/show/17919 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xen?expand=0&rev=77
16 lines
658 B
Diff
16 lines
658 B
Diff
PAE must be on for 64-on-64 to work at all.
|
|
|
|
Index: xen-3.4.1-testing/tools/python/xen/xend/image.py
|
|
===================================================================
|
|
--- xen-3.4.1-testing.orig/tools/python/xen/xend/image.py
|
|
+++ xen-3.4.1-testing/tools/python/xen/xend/image.py
|
|
@@ -941,7 +941,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):
|