]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - board/vpac270/u-boot-spl.lds
karo: add workaround for Linux hang on i.MX6QP when tzasc1_ipg_clock is disabled
[karo-tx-uboot.git] / board / vpac270 / u-boot-spl.lds
index 02d107c4b9b16ae7dc7f287e4de514ce6b8c305f..954afb9f8b7446383101f8033f442db05855c33b 100644 (file)
@@ -19,9 +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*)
        }
 
 
@@ -53,7 +55,12 @@ SECTIONS
 
        . = ALIGN(0x800);
 
-       _end = .;
+       .end :
+       {
+               *(.__end)
+       }
+
+       _image_binary_end = .;
 
        .bss __rel_dyn_start (OVERLAY) : {
                __bss_start = .;
@@ -62,7 +69,7 @@ SECTIONS
                __bss_end = .;
        }
 
-       .dynsym _end : { *(.dynsym) }
+       .dynsym _image_binary_end : { *(.dynsym) }
        .dynbss : { *(.dynbss) }
        .dynstr : { *(.dynstr*) }
        .dynamic : { *(.dynamic*) }