summaryrefslogtreecommitdiff
path: root/debian/patches/60_bigmem.patch
blob: aeca8946d9ef3b8d7e9bc31bbe72e5eca6a1cb24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
Push kernel/user limit to 2GiB, so Mach can address up to close to 2GiB memory.
This makes glibc's local-bigmem.diff patch mandatory.

Index: gnumach/i386/include/mach/i386/vm_param.h
===================================================================
--- gnumach.orig/i386/include/mach/i386/vm_param.h	2012-06-10 23:45:02.000000000 +0200
+++ gnumach/i386/include/mach/i386/vm_param.h	2012-07-14 15:57:26.423861314 +0200
@@ -73,6 +73,6 @@
    with that.
    */
 #define VM_MIN_ADDRESS		(0)
-#define VM_MAX_ADDRESS		(0xc0000000UL)
+#define VM_MAX_ADDRESS		(0x80000000UL)
 
 #endif	/* _MACH_I386_VM_PARAM_H_ */
Index: gnumach/i386/Makefrag.am
===================================================================
--- gnumach.orig/i386/Makefrag.am	2012-06-10 23:45:02.000000000 +0200
+++ gnumach/i386/Makefrag.am	2012-07-14 15:57:26.427861233 +0200
@@ -199,7 +199,7 @@ EXTRA_DIST += \
 	i386/ldscript
 if PLATFORM_at
 gnumach_LINKFLAGS += \
 	--defsym _START_MAP=$(_START_MAP) \
-	--defsym _START=_START_MAP+0xC0000000 \
+	--defsym _START=_START_MAP+0x80000000 \
 	-T '$(srcdir)'/i386/ldscript
 endif
Index: gnumach/i386/i386/vm_param.h
===================================================================
--- gnumach.orig/i386/i386/vm_param.h	2012-06-10 23:45:02.000000000 +0200
+++ gnumach/i386/i386/vm_param.h	2012-07-14 15:57:44.559495669 +0200
@@ -31,7 +31,7 @@
 /* This can be changed freely to separate kernel addresses from user addresses
  * for better trace support in kdb; the _START symbol has to be offset by the
  * same amount. */
-#define VM_MIN_KERNEL_ADDRESS	0xC0000000UL
+#define VM_MIN_KERNEL_ADDRESS	0x80000000UL
 
 #ifdef	MACH_XEN
 /* PV kernels can be loaded directly to the target virtual address */
Index: gnumach/i386/xen/Makefrag.am
===================================================================
--- gnumach.orig/i386/xen/Makefrag.am	2012-07-14 15:58:19.998781083 +0200
+++ gnumach/i386/xen/Makefrag.am	2012-07-14 15:58:30.254574271 +0200
@@ -28,7 +28,7 @@ libkernel_a_SOURCES += \
 
 if PLATFORM_xen
 gnumach_LINKFLAGS += \
-	--defsym _START=0xC0000000 \
-	--defsym _START_MAP=0xC0000000 \
+	--defsym _START=0x80000000 \
+	--defsym _START_MAP=0x80000000 \
 	-T '$(srcdir)'/i386/ldscript
 endif
Index: gnumach/i386/xen/xen_boothdr.S
===================================================================
--- gnumach.orig/i386/xen/xen_boothdr.S	2012-07-14 15:58:13.358914976 +0200
+++ gnumach/i386/xen/xen_boothdr.S	2012-07-14 15:58:39.790381972 +0200
@@ -22,8 +22,8 @@
 	.ascii	"GUEST_OS=GNU Mach"
 	.ascii  ",GUEST_VERSION=1.3"
 	.ascii	",XEN_VER=xen-3.0"
-	.ascii  ",VIRT_BASE=0xC0000000"
-	.ascii  ",ELF_PADDR_OFFSET=0xC0000000"
+	.ascii  ",VIRT_BASE=0x80000000"
+	.ascii  ",ELF_PADDR_OFFSET=0x80000000"
 	.ascii	",HYPERCALL_PAGE=0x2"
 #if PAE
 	.ascii  ",PAE=yes[extended-cr3]"