| 123456789101112131415161718 |
- commit 9e1a6a6d2ec4a340b2fc0dceda86116044044070
- Author: Eric Betts <bettse@fastmail.fm>
- Date: Mon Jan 16 01:36:59 2023 -0800
- relocate R_ARM_CALL (#2305)
- diff --git a/lib/flipper_application/elf/elf_file.c b/lib/flipper_application/elf/elf_file.c
- index bf98650a2..64d5755ef 100644
- --- a/lib/flipper_application/elf/elf_file.c
- +++ b/lib/flipper_application/elf/elf_file.c
- @@ -315,6 +315,7 @@ static bool elf_relocate_symbol(ELFFile* elf, Elf32_Addr relAddr, int type, Elf3
- FURI_LOG_D(TAG, " R_ARM_ABS32 relocated is 0x%08X", (unsigned int)*((uint32_t*)relAddr));
- break;
- case R_ARM_THM_PC22:
- + case R_ARM_CALL:
- case R_ARM_THM_JUMP24:
- elf_relocate_jmp_call(elf, relAddr, type, symAddr);
- FURI_LOG_D(
|