]> git.sur5r.net Git - u-boot/blobdiff - board/at91rm9200dk/u-boot.lds
Update ARM Integrator boards:
[u-boot] / board / at91rm9200dk / u-boot.lds
index 17a85b88959893c953c3262b98c8d6dd4e2f3ea4..f4fbf969c3cf6445dd210053c319e591440dc3ae 100644 (file)
@@ -32,7 +32,7 @@ SECTIONS
        . = ALIGN(4);
        .text      :
        {
-         cpu/at91rm9200/start.o        (.text)
+         cpu/arm920t/start.o   (.text)
          *(.text)
        }
 
@@ -45,14 +45,13 @@ SECTIONS
        . = ALIGN(4);
        .got : { *(.got) }
 
-  __u_boot_cmd_start = .;
-  .u_boot_cmd : { *(.u_boot_cmd) }
-  __u_boot_cmd_end = .;
-
-       armboot_end_data = .;
+       . = .;
+       __u_boot_cmd_start = .;
+       .u_boot_cmd : { *(.u_boot_cmd) }
+       __u_boot_cmd_end = .;
 
        . = ALIGN(4);
+       __bss_start = .;
        .bss : { *(.bss) }
-
-       armboot_end = .;
+       _end = .;
 }