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. Change-Id: Id7b0dfb5a51c2f29bdb031b98606940c118959ec Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Original-Commit-Id: 7a1c4d2f35c135d542708c4dabcca5e8c1d453c0 Original-Signed-off-by: Furquan Shaikh <furquan@google.com> Original-Change-Id: If132323885f23d75e1fcde064398e85c2c17f257 Original-Reviewed-on: https://chromium-review.googlesource.com/231560 Original-Reviewed-by: Aaron Durbin <adurbin@chromium.org> Original-Tested-by: Furquan Shaikh <furquan@chromium.org> Original-Commit-Queue: Furquan Shaikh <furquan@chromium.org> Reviewed-on: http://review.coreboot.org/8809 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
parent
a807f83936
commit
de77e6a99f
|
@ -112,6 +112,7 @@ static int valid_reloc_aarch64(struct rmod_context *ctx, Elf64_Rela *rel)
|
||||||
|
|
||||||
return (type == R_AARCH64_ADR_PREL_PG_HI21 ||
|
return (type == R_AARCH64_ADR_PREL_PG_HI21 ||
|
||||||
type == R_AARCH64_ADD_ABS_LO12_NC ||
|
type == R_AARCH64_ADD_ABS_LO12_NC ||
|
||||||
|
type == R_AARCH64_LDST8_ABS_LO12_NC ||
|
||||||
type == R_AARCH64_JUMP26 ||
|
type == R_AARCH64_JUMP26 ||
|
||||||
type == R_AARCH64_LDST32_ABS_LO12_NC ||
|
type == R_AARCH64_LDST32_ABS_LO12_NC ||
|
||||||
type == R_AARCH64_LDST64_ABS_LO12_NC ||
|
type == R_AARCH64_LDST64_ABS_LO12_NC ||
|
||||||
|
|
Loading…
Reference in New Issue