svn commit: r246111 - projects/uefi/sys/boot/i386/efi
Benno Rice
benno at FreeBSD.org
Wed Jan 30 06:35:36 UTC 2013
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) }
More information about the svn-src-projects
mailing list