]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - arch/arm/cpu/arm920t/ep93xx/u-boot.lds
arm: Make all linker scripts compatible with per-symbol sections
[people/ms/u-boot.git] / arch / arm / cpu / arm920t / ep93xx / u-boot.lds
index d0b1ada8c63064437a64a23121c5918f6e4d0edd..cf55bf7d4d34675ebdb8cdc91722a718da7f1b95 100644 (file)
@@ -31,18 +31,18 @@ SECTIONS
        . = ALIGN(4);
        .text      :
        {
-         arch/arm/cpu/arm920t/start.o  (.text)
+         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) }
@@ -59,7 +59,7 @@ SECTIONS
        __image_copy_end = .;
 
        __bss_start = .;
-       .bss : { *(.bss) }
+       .bss : { *(.bss*) }
        __bss_end = .;
 
        _end = .;