]> git.sur5r.net Git - u-boot/blobdiff - arch/arm/cpu/ixp/u-boot.lds
Merge branch 'master' of git://git.denx.de/u-boot-marvell
[u-boot] / arch / arm / cpu / ixp / u-boot.lds
index b8ff2eed5c92f98ec93263e813425d74e4aa9229..f3d9dc51487ba7deb10def6ce5636cb2303ab1af 100644 (file)
@@ -39,11 +39,23 @@ SECTIONS
        .rodata : { *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) }
 
        . = ALIGN(4);
-       .data : { *(.data) }
+       .data : {
+               *(.data)
+       __datarel_start = .;
+               *(.data.rel)
+       __datarelrolocal_start = .;
+               *(.data.rel.ro.local)
+       __datarellocal_start = .;
+               *(.data.rel.local)
+       __datarelro_start = .;
+               *(.data.rel.ro)
+       }
 
+       __got_start = .;
        . = ALIGN(4);
        .got : { *(.got) }
 
+       __got_end = .;
        . = .;
        __u_boot_cmd_start = .;
        .u_boot_cmd : { *(.u_boot_cmd) }