From: Simon Glass Date: Sat, 15 Nov 2014 01:18:24 +0000 (-0700) Subject: x86: Ensure that all relocation data is included in the image X-Git-Tag: v2015.01-rc3~42^2~49 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=091c4943539f8a0b238246e043683e3cbf657b5e;p=platform%2Fkernel%2Fu-boot.git x86: Ensure that all relocation data is included in the image Some toolchains put the relocation data into separate sections. Adjust the linker script to catch this case. Without relocation data, U-Boot will not boot. Signed-off-by: Simon Glass Reviewed-by: Bin Meng --- diff --git a/arch/x86/cpu/u-boot.lds b/arch/x86/cpu/u-boot.lds index f48bff5..124a361 100644 --- a/arch/x86/cpu/u-boot.lds +++ b/arch/x86/cpu/u-boot.lds @@ -44,7 +44,9 @@ SECTIONS . = ALIGN(4); __rel_dyn_start = .; - .rel.dyn : { *(.rel.dyn) } + .rel.dyn : { + *(.rel*) + } __rel_dyn_end = .; . = ALIGN(4); _end = .;