Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 15 Aug 2009 19:43:16 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r196258 - projects/mips/sys/conf
Message-ID:  <200908151943.n7FJhGvg084628@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: imp
Date: Sat Aug 15 19:43:15 2009
New Revision: 196258
URL: http://svn.freebsd.org/changeset/base/196258

Log:
  Pick an arbitrary address to load the kernel at.  1MB seems as good as
  any other.

Modified:
  projects/mips/sys/conf/ldscript.mips.mips64

Modified: projects/mips/sys/conf/ldscript.mips.mips64
==============================================================================
--- projects/mips/sys/conf/ldscript.mips.mips64	Sat Aug 15 18:56:56 2009	(r196257)
+++ projects/mips/sys/conf/ldscript.mips.mips64	Sat Aug 15 19:43:15 2009	(r196258)
@@ -43,7 +43,7 @@ PROVIDE (_DYNAMIC = 0);
 SECTIONS
 {
   /* Read-only sections, merged into text segment: */
-  . = KERNLOADADDR + SIZEOF_HEADERS;
+  . = 0x80100000 + 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?200908151943.n7FJhGvg084628>