Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 30 Jan 2013 06:35:36 +0000 (UTC)
From:      Benno Rice <benno@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r246111 - projects/uefi/sys/boot/i386/efi
Message-ID:  <201301300635.r0U6ZalR023860@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: benno
Date: Wed Jan 30 06:35:35 2013
New Revision: 246111
URL: http://svnweb.freebsd.org/changeset/base/246111

Log:
  Make sure the loader has all the relocations it needs.
  
  amd64 uses RELA relocations instead of REL, thus the ldscript needs
  .relaset instead of .relset.
  
  Sponsored by:	FreeBSD Foundation

Modified:
  projects/uefi/sys/boot/i386/efi/ldscript.amd64

Modified: projects/uefi/sys/boot/i386/efi/ldscript.amd64
==============================================================================
--- projects/uefi/sys/boot/i386/efi/ldscript.amd64	Wed Jan 30 06:33:39 2013	(r246110)
+++ projects/uefi/sys/boot/i386/efi/ldscript.amd64	Wed Jan 30 06:35:35 2013	(r246111)
@@ -56,7 +56,7 @@ SECTIONS
     *(.rela.data*)
     *(.rela.got)
     *(.rela.stab)
-    *(.relset_*)
+    *(.relaset_*)
   }
   . = ALIGN(4096);
   .reloc	: { *(.reloc) }



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