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)                }
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to