]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - board/mx1ads/u-boot.lds
cmd_mmc: add support for device command for selecting mmc device
[karo-tx-uboot.git] / board / mx1ads / u-boot.lds
index 53743cdb80e0179069039844be03dcf59a16cb93..1c710cbfba7c1ecb855998e6c2c1736bff7e7038 100644 (file)
@@ -23,7 +23,6 @@
  * MA 02111-1307 USA
  */
 
-
 OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
 OUTPUT_ARCH(arm)
 ENTRY(_start)
@@ -34,12 +33,12 @@ SECTIONS
        . = ALIGN(4);
        .text      :
        {
-         cpu/mc9328/start.o    (.text)
+         cpu/arm920t/start.o   (.text)
          *(.text)
        }
 
        . = ALIGN(4);
-       .rodata : { *(.rodata) }
+       .rodata : { *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) }
 
        . = ALIGN(4);
        .data : { *(.data) }
@@ -47,12 +46,13 @@ SECTIONS
        . = ALIGN(4);
        .got : { *(.got) }
 
+       . = .;
        __u_boot_cmd_start = .;
        .u_boot_cmd : { *(.u_boot_cmd) }
        __u_boot_cmd_end = .;
 
        . = ALIGN(4);
        __bss_start = .;
-       .bss : { *(.bss) }
+       .bss (NOLOAD) : { *(.bss) . = ALIGN(4); }
        _end = .;
 }