From: Michal Simek Date: Thu, 25 Jul 2013 14:16:46 +0000 (+0200) Subject: arm: lds: Remove libgcc eabi exception handling tables X-Git-Tag: v2013.10-rc3~5^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fba1ed422eda3b75534174d4266efc59f632a8af;p=kernel%2Fu-boot.git arm: lds: Remove libgcc eabi exception handling tables Remove ARM eabi exception handling tables (for frame unwinding). AFAICT, u-boot stubs away the frame unwiding routines, so the tables will more or less just consume space. It should be OK to remove them. Signed-off-by: Edgar E. Iglesias Signed-off-by: Michal Simek --- diff --git a/arch/arm/cpu/u-boot.lds b/arch/arm/cpu/u-boot.lds index 490aed2..23bf030 100644 --- a/arch/arm/cpu/u-boot.lds +++ b/arch/arm/cpu/u-boot.lds @@ -97,4 +97,6 @@ SECTIONS /DISCARD/ : { *(.plt*) } /DISCARD/ : { *(.interp*) } /DISCARD/ : { *(.gnu*) } + /DISCARD/ : { *(.ARM.exidx*) } + /DISCARD/ : { *(.gnu.linkonce.armexidx.*) } }