mmc: omap: don't set wrong voltage select for mmc2
[pandora-u-boot.git] / examples / standalone / mips.lds
index 63a1c92..5f766ed 100644 (file)
@@ -30,14 +30,14 @@ SECTIONS
 {
        .text       :
        {
-         *(.text)
+         *(.text*)
        }
 
        . = ALIGN(4);
        .rodata  : { *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) }
 
        . = ALIGN(4);
-       .data  : { *(.data) }
+       .data  : { *(.data*) }
 
        . = .;
        _gp = ALIGN(16) + 0x7ff0;
@@ -48,12 +48,12 @@ SECTIONS
          __got_end = .;
        }
 
-       .sdata  : { *(.sdata) }
+       .sdata  : { *(.sdata*) }
 
        . = ALIGN(4);
        __bss_start = .;
-       .sbss (NOLOAD) : { *(.sbss) }
-       .bss (NOLOAD)  : { *(.bss) . = ALIGN(4); }
+       .sbss (NOLOAD) : { *(.sbss*) }
+       .bss (NOLOAD)  : { *(.bss*) . = ALIGN(4); }
 
        _end = .;
 }