PERFORCE change 130446 for review

John Birrell jb at FreeBSD.org
Fri Dec 7 16:38:41 PST 2007


http://perforce.freebsd.org/chv.cgi?CH=130446

Change 130446 by jb at jb_freebsd1 on 2007/12/08 00:38:25

	Use a larger offset from kernbase for the time being. The previous
	value was being ignored by ld for some reason causing things to
	go bewm when the file was loaded by the loader.
	
	The cause will need to be investigated later. For now, real men
	prefer being able to boot and use the kernel.

Affected files ...

.. //depot/projects/binutils/src/sys/conf/ldscript.amd64#3 edit

Differences ...

==== //depot/projects/binutils/src/sys/conf/ldscript.amd64#3 (text+ko) ====

@@ -6,7 +6,7 @@
 SECTIONS
 {
   /* Read-only sections, merged into text segment: */
-  . = kernbase + 0x00100000 + SIZEOF_HEADERS;
+  . = kernbase + 0x00400000 + SIZEOF_HEADERS;
   .interp         : { *(.interp) }
   .hash           : { *(.hash) }
   .dynsym         : { *(.dynsym) }


More information about the p4-projects mailing list