svn commit: r233366 - releng/8.3/sys/conf

Ken Smith kensmith at FreeBSD.org
Fri Mar 23 15:49:46 UTC 2012


Author: kensmith
Date: Fri Mar 23 15:49:46 2012
New Revision: 233366
URL: http://svn.freebsd.org/changeset/base/233366

Log:
  MFS r233211 (problem not believed to effect head or stable/9):
  
  Implement a workaround for a bug in the linker's estimate for the
  program header size that can cause it to fail linking the kernel.
  
  Reviewed by: kib
  
  Approved by:	re (bz)

Modified:
  releng/8.3/sys/conf/ldscript.i386
Directory Properties:
  releng/8.3/sys/   (props changed)

Modified: releng/8.3/sys/conf/ldscript.i386
==============================================================================
--- releng/8.3/sys/conf/ldscript.i386	Fri Mar 23 15:37:41 2012	(r233365)
+++ releng/8.3/sys/conf/ldscript.i386	Fri Mar 23 15:49:46 2012	(r233366)
@@ -6,7 +6,7 @@ SEARCH_DIR(/usr/lib);
 SECTIONS
 {
   /* Read-only sections, merged into text segment: */
-  . = kernbase + kernload + SIZEOF_HEADERS;
+  . = kernbase + kernload + 256;
   .interp     : { *(.interp) 	}
   .hash          : { *(.hash)		}
   .dynsym        : { *(.dynsym)		}


More information about the svn-src-all mailing list