xen/xen-hvm-default-pae.diff
OBS User autobuild 12bd2215f3 Accepting request 17919 from Virtualization
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
2009-08-17 12:57:35 +00:00

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):