]> git.karo-electronics.de Git - karo-tx-uboot.git/blobdiff - cpu/arm926ejs/at91/u-boot.lds
Fix e-mail address of Gary Jennejohn.
[karo-tx-uboot.git] / cpu / arm926ejs / at91 / u-boot.lds
index 996f401f0b973b8c94954f006d6d99ddd2942311..8518a1d9fe595c9041c0cf8e63cb90f70bb44476 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj@denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
  *
  * See file CREDITS for list of people who contributed to this
  * project.
@@ -32,12 +32,12 @@ SECTIONS
        . = ALIGN(4);
        .text :
        {
-         cpu/arm926ejs/start.o (.text)
-         *(.text)
+               cpu/arm926ejs/start.o   (.text)
+               *(.text)
        }
 
        . = ALIGN(4);
-       .rodata : { *(.rodata) }
+       .rodata : { *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) }
 
        . = ALIGN(4);
        .data : { *(.data) }
@@ -52,6 +52,6 @@ SECTIONS
 
        . = ALIGN(4);
        __bss_start = .;
-       .bss : { *(.bss) }
+       .bss : { *(.bss) . = ALIGN(4); }
        _end = .;
 }