]> git.sur5r.net Git - u-boot/blobdiff - arch/arm/cpu/armv7/omap-common/u-boot-spl.lds
arm: Make all linker scripts compatible with per-symbol sections
[u-boot] / arch / arm / cpu / armv7 / omap-common / u-boot-spl.lds
index 9979c3085360b19c5c5e585fc6f677ec84018857..bd218c07da5a214c3f3337b7420d19b9075519d6 100644 (file)
@@ -38,7 +38,7 @@ SECTIONS
        .text      :
        {
                __start = .;
-               arch/arm/cpu/armv7/start.o      (.text)
+               arch/arm/cpu/armv7/start.o      (.text*)
                *(.text*)
        } >.sram
 
@@ -48,10 +48,6 @@ SECTIONS
        . = ALIGN(4);
        .data : { *(SORT_BY_ALIGNMENT(.data*)) } >.sram
 
-       .u_boot_list : {
-               #include <u-boot.lst>
-       }
-
        . = ALIGN(4);
        __image_copy_end = .;
        _end = .;
@@ -62,6 +58,6 @@ SECTIONS
                __bss_start = .;
                *(.bss*)
                . = ALIGN(4);
-               __bss_end__ = .;
+               __bss_end = .;
        } >.sdram
 }