From 257688d3c143fb98713e5f3255d3b92435618a41 Mon Sep 17 00:00:00 2001 From: Greg Ungerer Date: Thu, 18 Aug 2016 16:36:14 +1000 Subject: [PATCH] elf2flt: support ARM R_ARM_V4BX relocation type Trivially add support for the ARM R_ARM_V4BX relocation type. Signed-off-by: Greg Ungerer --- elf2flt.c | 1 + 1 file changed, 1 insertion(+) 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; -- 2.39.5