]> git.sur5r.net Git - u-boot/commitdiff
efi_loader: correctly set the machine type in the PE header
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Fri, 6 Apr 2018 13:36:31 +0000 (15:36 +0200)
committerAlexander Graf <agraf@suse.de>
Mon, 9 Apr 2018 08:20:59 +0000 (10:20 +0200)
The portable executable header has a field describing the machine type.
The machine type should match the binary. So on i386 we should use
IMAGE_FILE_MACHINE_I386 and on x86_64 we should use
IMAGE_FILE_MACHINE_AMD64. The actual value is issued by the objcopy
command invoked in scripts/Makefile.lib in depdendence of the value of
EFI_TARGET.

The value is used both for EFI_STUB and for EFI_LOADER.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
arch/x86/config.mk

index 472ada549073dadf4bce66dec40fe1cc9ab6fd18..69074f4711cb99b61f9fbca8db3adccd7f758be0 100644 (file)
@@ -94,12 +94,16 @@ ifneq ($(CONFIG_EFI_STUB_64BIT),)
 EFI_LDS := elf_x86_64_efi.lds
 EFI_CRT0 := crt0_x86_64_efi.o
 EFI_RELOC := reloc_x86_64_efi.o
-EFI_TARGET := --target=efi-app-ia32
 else
 EFI_LDS := elf_ia32_efi.lds
 EFI_CRT0 := crt0_ia32_efi.o
 EFI_RELOC := reloc_ia32_efi.o
+endif
+
+ifdef CONFIG_X86_64
 EFI_TARGET := --target=efi-app-x86_64
+else
+EFI_TARGET := --target=efi-app-ia32
 endif
 
 endif