Patrick Georgi (pgeorgi@google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/8805
-gerrit
commit d1fbc18cb0258a2ae0c9709c72bec416364ba57c Author: Furquan Shaikh furquan@google.com Date: Fri Nov 21 15:41:10 2014 -0800
ARM64 rmodule: Add new reloc type R_AARCH64_LDST8_ABS_LO12_NC
BUG=chrome-os-partner:33962 BRANCH=None TEST=Compiles and boots to kernel prompt.
Signed-off-by: Furquan Shaikh furquan@google.com Change-Id: If132323885f23d75e1fcde064398e85c2c17f257 Reviewed-on: https://chromium-review.googlesource.com/231560 Reviewed-by: Aaron Durbin adurbin@chromium.org Tested-by: Furquan Shaikh furquan@chromium.org Commit-Queue: Furquan Shaikh furquan@chromium.org --- util/cbfstool/rmodule.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/util/cbfstool/rmodule.c b/util/cbfstool/rmodule.c index c8b023a..23eb25f 100644 --- a/util/cbfstool/rmodule.c +++ b/util/cbfstool/rmodule.c @@ -112,6 +112,7 @@ static int valid_reloc_aarch64(struct rmod_context *ctx, Elf64_Rela *rel)
return (type == R_AARCH64_ADR_PREL_PG_HI21 || type == R_AARCH64_ADD_ABS_LO12_NC || + type == R_AARCH64_LDST8_ABS_LO12_NC || type == R_AARCH64_JUMP26 || type == R_AARCH64_LDST32_ABS_LO12_NC || type == R_AARCH64_LDST64_ABS_LO12_NC ||