diff options
author | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2013-06-11 14:17:33 +0200 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2013-06-21 23:05:05 +0200 |
commit | d026dec8751378473b4f12eb87717c8059472b3e (patch) | |
tree | 57b335731bbd1d1e445ad351ca43bfe49322da99 /board/actux2/u-boot.lds | |
parent | df84502edffd1da48588a212b402602f032ed53d (diff) | |
download | u-boot-imx-d026dec8751378473b4f12eb87717c8059472b3e.zip u-boot-imx-d026dec8751378473b4f12eb87717c8059472b3e.tar.gz u-boot-imx-d026dec8751378473b4f12eb87717c8059472b3e.tar.bz2 |
arm: make __image_copy_{start, end} compiler-generated
This change is only done where needed: some linker
scripts may contain __image_copy_{start,end} yet
remain unchanged.
Also, __image_copy_end needs its own section; putting
it in relocation sections changes their flags and makes
relocation break.
Signed-off-by: Albert ARIBAUD <albert.u.boot@aribaud.net>
Tested-by: Lubomir Popov <lpopov@mm-sol.com>
Tested-by: Jeroen Hofstee <jeroen@myspectrum.nl>
Reviewed-by: Benoît Thébaudeau <benoit.thebaudeau@advansee.com>
Diffstat (limited to 'board/actux2/u-boot.lds')
-rw-r--r-- | board/actux2/u-boot.lds | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/board/actux2/u-boot.lds b/board/actux2/u-boot.lds index 0e20670..aff773c 100644 --- a/board/actux2/u-boot.lds +++ b/board/actux2/u-boot.lds @@ -30,6 +30,7 @@ SECTIONS . = ALIGN (4); .text : { + *(.__image_copy_start) arch/arm/cpu/ixp/start.o(.text*) net/libnet.o(.text*) board/actux2/libactux2.o(.text*) @@ -62,7 +63,10 @@ SECTIONS . = ALIGN (4); - __image_copy_end = .; + .image_copy_end : + { + *(.__image_copy_end) + } .rel.dyn : { __rel_dyn_start = .; |