diff options
author | Michal Simek <michal.simek@xilinx.com> | 2013-07-25 16:16:46 +0200 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2013-09-05 13:41:42 +0200 |
commit | fba1ed422eda3b75534174d4266efc59f632a8af (patch) | |
tree | 83327f2f702e28913dadf11981be2a15365b0d8e /arch | |
parent | f0f102fde85aca438f4322893729f28135bf3c61 (diff) | |
download | u-boot-imx-fba1ed422eda3b75534174d4266efc59f632a8af.zip u-boot-imx-fba1ed422eda3b75534174d4266efc59f632a8af.tar.gz u-boot-imx-fba1ed422eda3b75534174d4266efc59f632a8af.tar.bz2 |
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 <edgar.iglesias@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/cpu/u-boot.lds | 2 |
1 files changed, 2 insertions, 0 deletions
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.*) } } |