efi_loader: Use common elf.h reloc defines
authorAlexander Graf <agraf@suse.de>
Mon, 18 Jun 2018 15:23:11 +0000 (17:23 +0200)
committerAlexander Graf <agraf@suse.de>
Wed, 25 Jul 2018 12:57:43 +0000 (14:57 +0200)
Now that elf.h contains relocation defines for all architectures
we care about, let's just include it unconditionally and refer to
the defines.

Signed-off-by: Alexander Graf <agraf@suse.de>
lib/efi_loader/efi_runtime.c

index bc44e437458eb3794821969342d8834a045185f4..dd3ff8ad2360305f69dc1119b276e0fb9b7b2e35 100644 (file)
@@ -8,6 +8,7 @@
 #include <common.h>
 #include <command.h>
 #include <dm.h>
+#include <elf.h>
 #include <efi_loader.h>
 #include <rtc.h>
 
@@ -33,18 +34,16 @@ static efi_status_t __efi_runtime EFIAPI efi_invalid_parameter(void);
  * header for each arch (or a generic header) rather than being repeated here.
  */
 #if defined(__aarch64__)
-#define R_RELATIVE     1027
+#define R_RELATIVE     R_AARCH64_RELATIVE
 #define R_MASK         0xffffffffULL
 #define IS_RELA                1
 #elif defined(__arm__)
-#define R_RELATIVE     23
+#define R_RELATIVE     R_ARM_RELATIVE
 #define R_MASK         0xffULL
 #elif defined(__x86_64__) || defined(__i386__)
-#include <asm/elf.h>
 #define R_RELATIVE     R_386_RELATIVE
 #define R_MASK         0xffULL
 #elif defined(__riscv)
-#include <elf.h>
 #define R_RELATIVE     R_RISCV_RELATIVE
 #define R_MASK         0xffULL
 #define IS_RELA                1