svn commit: r204186 - head/sys/conf

Neel Natu neel at FreeBSD.org
Mon Feb 22 01:48:39 UTC 2010


Author: neel
Date: Mon Feb 22 01:48:38 2010
New Revision: 204186
URL: http://svn.freebsd.org/changeset/base/204186

Log:
  Use KERNLOADADDR instead of hardcoded address. This is required to be able to
  build the trampoline kernel that has symbol/string tables embedded within it.

Modified:
  head/sys/conf/ldscript.mips.cfe

Modified: head/sys/conf/ldscript.mips.cfe
==============================================================================
--- head/sys/conf/ldscript.mips.cfe	Mon Feb 22 01:24:34 2010	(r204185)
+++ head/sys/conf/ldscript.mips.cfe	Mon Feb 22 01:48:38 2010	(r204186)
@@ -61,7 +61,7 @@ PHDRS
 SECTIONS
 {
   /* Read-only sections, merged into text segment: */
-  . = 0x80100000 ;
+  . = KERNLOADADDR ;
   .interp     : { *(.interp) 	} :interp
   .hash          : { *(.hash)		} :text
   .dynsym        : { *(.dynsym)		}


More information about the svn-src-head mailing list