X-Git-Url: https://git.kernelconcepts.de/?a=blobdiff_plain;f=board%2Fvpac270%2Fu-boot-spl.lds;h=954afb9f8b7446383101f8033f442db05855c33b;hb=ae60a91421744ef95d81cb09ea8a4fba851789c5;hp=b6fdde4d1b0c53e1069c36993d579df542a99a1a;hpb=0effc5e5678e569296f661c8f66b182e8788f30d;p=karo-tx-uboot.git diff --git a/board/vpac270/u-boot-spl.lds b/board/vpac270/u-boot-spl.lds index b6fdde4d1b..954afb9f8b 100644 --- a/board/vpac270/u-boot-spl.lds +++ b/board/vpac270/u-boot-spl.lds @@ -19,10 +19,11 @@ SECTIONS . = CONFIG_SPL_TEXT_BASE; .text.0 : { + *(.vectors) arch/arm/cpu/pxa/start.o (.text*) arch/arm/lib/built-in.o (.text*) board/vpac270/built-in.o (.text*) - drivers/mtd/onenand/built-in.o (.text*) + drivers/built-in.o (.text*) } @@ -54,7 +55,12 @@ SECTIONS . = ALIGN(0x800); - _end = .; + .end : + { + *(.__end) + } + + _image_binary_end = .; .bss __rel_dyn_start (OVERLAY) : { __bss_start = .; @@ -63,7 +69,7 @@ SECTIONS __bss_end = .; } - .dynsym _end : { *(.dynsym) } + .dynsym _image_binary_end : { *(.dynsym) } .dynbss : { *(.dynbss) } .dynstr : { *(.dynstr*) } .dynamic : { *(.dynamic*) }