From: Simon Glass Date: Mon, 4 May 2015 17:31:02 +0000 (-0600) Subject: arm: Include the .got section in the binary X-Git-Tag: v2015.07-rc2~220 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=5a942a1527766c27674ea71222a2a98982e8a661;p=u-boot arm: Include the .got section in the binary Commit 47ed5dd0 dropped the .got section from U-Boot binaries. This is needed for some relocations, and causes failures if missing. Add it back. Signed-off-by: Simon Glass --- diff --git a/arch/arm/config.mk b/arch/arm/config.mk index c005ce4905..0550225581 100644 --- a/arch/arm/config.mk +++ b/arch/arm/config.mk @@ -112,7 +112,8 @@ endif ifdef CONFIG_ARM64 OBJCOPYFLAGS += -j .text -j .rodata -j .data -j .u_boot_list -j .rela.dyn else -OBJCOPYFLAGS += -j .text -j .secure_text -j .rodata -j .hash -j .data -j .got.plt -j .u_boot_list -j .rel.dyn +OBJCOPYFLAGS += -j .text -j .secure_text -j .rodata -j .hash -j .data -j \ + .got -j .got.plt -j .u_boot_list -j .rel.dyn endif ifdef CONFIG_OF_EMBED