summaryrefslogtreecommitdiffstats
path: root/src/arch/x86/prefix/efiprefix.c
diff options
context:
space:
mode:
authorPiotr Jaroszyński2010-03-30 18:18:43 +0200
committerMichael Brown2010-05-27 11:38:12 +0200
commitc68839d4d69742ac21c430aca8a9a4de81dd6ca5 (patch)
treee5cc42d7e05387c02bab34e060502adf782e2e2d /src/arch/x86/prefix/efiprefix.c
parent[compiler] Fix 64bit compile time errors (diff)
downloadipxe-c68839d4d69742ac21c430aca8a9a4de81dd6ca5.tar.gz
ipxe-c68839d4d69742ac21c430aca8a9a4de81dd6ca5.tar.xz
ipxe-c68839d4d69742ac21c430aca8a9a4de81dd6ca5.zip
[efi] Fix .efi and .efidrv linking
The linker chooses to look for _start first and always picks efidrvprefix.o to satisfy it (probably because it's earlier in the archive) which causes a multiple definition error when the linker later has to pick efiprefix.o for other symbols. Fix by using EFI-specific TGT_LD_FLAGS with an explicit entry point. Signed-off-by: Piotr Jaroszyński <p.jaroszynski@gmail.com> Signed-off-by: Joshua Oreman <oremanj@rwcr.net> Modified-by: Michael Brown <mcb30@ipxe.org> Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/arch/x86/prefix/efiprefix.c')
-rw-r--r--src/arch/x86/prefix/efiprefix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/x86/prefix/efiprefix.c b/src/arch/x86/prefix/efiprefix.c
index 61a9fc64..1515c6fc 100644
--- a/src/arch/x86/prefix/efiprefix.c
+++ b/src/arch/x86/prefix/efiprefix.c
@@ -28,8 +28,8 @@ FILE_LICENCE ( GPL2_OR_LATER );
* @v systab System table
* @ret efirc EFI return status code
*/
-EFI_STATUS EFIAPI _start ( EFI_HANDLE image_handle,
- EFI_SYSTEM_TABLE *systab ) {
+EFI_STATUS EFIAPI _efi_start ( EFI_HANDLE image_handle,
+ EFI_SYSTEM_TABLE *systab ) {
EFI_STATUS efirc;
/* Initialise EFI environment */