From: Greg Ungerer Date: Thu, 18 Aug 2016 06:36:14 +0000 (+1000) Subject: elf2flt: support ARM R_ARM_V4BX relocation type X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=257688d3c143fb98713e5f3255d3b92435618a41;p=elf2flt.git elf2flt: support ARM R_ARM_V4BX relocation type Trivially add support for the ARM R_ARM_V4BX relocation type. Signed-off-by: Greg Ungerer --- diff --git a/elf2flt.c b/elf2flt.c index 96ef2d9..5ae7dd9 100644 --- a/elf2flt.c +++ b/elf2flt.c @@ -664,6 +664,7 @@ dump_symbols(symbols, number_of_symbols); case R_ARM_GOTPC: case R_ARM_GOT32: case R_ARM_PREL31: + case R_ARM_V4BX: case R_ARM_NONE: relocation_needed = 0; break;