diff options
author | Hans de Goede <hdegoede@redhat.com> | 2014-06-09 11:36:54 +0200 |
---|---|---|
committer | Ian Campbell <ijc@hellion.org.uk> | 2014-07-06 17:41:13 +0100 |
commit | 9e5f80d823e3fd2a685b10ecf02009e34b86cff9 (patch) | |
tree | e434d5e69b841814350b22092f1b3aa8a8857187 | |
parent | 4ba73a5ac7d2ece1d17bb1c109d694ce306ac1af (diff) | |
download | u-boot-imx-9e5f80d823e3fd2a685b10ecf02009e34b86cff9.zip u-boot-imx-9e5f80d823e3fd2a685b10ecf02009e34b86cff9.tar.gz u-boot-imx-9e5f80d823e3fd2a685b10ecf02009e34b86cff9.tar.bz2 |
sunxi: Fix u-boot-spl.lds to refer to .vectors
Adjust the u-boot-spl.lds linker script to match the changes made in the
41623c91b09a0c865fab41acdaff30f060f29ad6 "arm: move exception handling out
of start.S files" commit.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Acked-by: Ian Campbell <ijc@hellion.org.uk>
-rw-r--r-- | arch/arm/cpu/armv7/sunxi/u-boot-spl.lds | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/cpu/armv7/sunxi/u-boot-spl.lds b/arch/arm/cpu/armv7/sunxi/u-boot-spl.lds index 5008028..c1ae227 100644 --- a/arch/arm/cpu/armv7/sunxi/u-boot-spl.lds +++ b/arch/arm/cpu/armv7/sunxi/u-boot-spl.lds @@ -27,6 +27,7 @@ SECTIONS .text : { __start = .; + *(.vectors) arch/arm/cpu/armv7/start.o (.text) *(.text*) } > .sram |