Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 8 Dec 2007 00:38:40 GMT
From:      John Birrell <jb@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 130446 for review
Message-ID:  <200712080038.lB80ce2u070561@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help

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

Change 130446 by jb@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) }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200712080038.lB80ce2u070561>