]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - arch/arm/cpu/arm920t/ep93xx/u-boot.lds
Merge branch 'master' of git://git.denx.de/u-boot-nand-flash
[karo-tx-uboot.git] / arch / arm / cpu / arm920t / ep93xx / u-boot.lds
index c19285d2108ebf93b1ddc212d31ac08ff30ac5dd..367c805e385a138585fa6bec21f45ac8b7c8b642 100644 (file)
@@ -31,18 +31,19 @@ SECTIONS
        . = ALIGN(4);
        .text      :
        {
-         arch/arm/cpu/arm920t/start.o  (.text)
+               *(.__image_copy_start)
+         arch/arm/cpu/arm920t/start.o  (.text*)
                /* the EP93xx expects to find the pattern 'CRUS' at 0x1000 */
          . = 0x1000;
          LONG(0x53555243)
-         *(.text)
+         *(.text*)
        }
 
        . = ALIGN(4);
-       .rodata : { *(.rodata) }
+       .rodata : { *(.rodata*) }
 
        . = ALIGN(4);
-       .data : { *(.data) }
+       .data : { *(.data*) }
 
        . = ALIGN(4);
        .got : { *(.got) }
@@ -55,9 +56,15 @@ SECTIONS
        }
 
        . = ALIGN(4);
+
+       .image_copy_end :
+       {
+               *(.__image_copy_end)
+       }
+
        __bss_start = .;
-       .bss : { *(.bss) }
-       __bss_end__ = .;
+       .bss : { *(.bss*) }
+       __bss_end = .;
 
        _end = .;
 }