diff options
author | Michael Brown <mcb30@ipxe.org> | 2017-09-24 19:26:58 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2017-09-24 19:26:58 +0100 |
commit | 1b67a0564657b6fcef18b1588ea6491ca1b1996d (patch) | |
tree | 82b20641f94b4f642c403e78ef17af9aa3d9a346 /src/util/elf2efi.c | |
parent | c4ce92599da7804268906fad2ba5d3564b1e9b83 (diff) | |
download | ipxe-1b67a0564657b6fcef18b1588ea6491ca1b1996d.tar.gz |
[efi] Allow for building with older versions of elf.h system header
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/util/elf2efi.c')
-rw-r--r-- | src/util/elf2efi.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/util/elf2efi.c b/src/util/elf2efi.c index 84122032c..e8e6c523e 100644 --- a/src/util/elf2efi.c +++ b/src/util/elf2efi.c @@ -93,6 +93,9 @@ #ifndef R_ARM_THM_JUMP24 #define R_ARM_THM_JUMP24 30 #endif +#ifndef R_ARM_V4BX +#define R_ARM_V4BX 40 +#endif /* Seems to be missing from elf.h */ #ifndef R_AARCH64_NULL |