Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 22 Feb 2010 01:48:39 +0000 (UTC)
From:      Neel Natu <neel@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r204186 - head/sys/conf
Message-ID:  <201002220148.o1M1mdA3000753@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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)		}



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