]> git.sur5r.net Git - u-boot/blobdiff - arch/arm/cpu/ixp/u-boot.lds
ARM: OMAP5: Clean up iosettings code
[u-boot] / arch / arm / cpu / ixp / u-boot.lds
index a55eb8a509b48f5802a71774d80abc1497278356..81d954f2de7fce029d5e74b81bdfcc00ff9b82cb 100644 (file)
@@ -31,8 +31,8 @@ SECTIONS
        . = ALIGN(4);
        .text :
        {
-               arch/arm/cpu/ixp/start.o(.text)
-               *(.text)
+               arch/arm/cpu/ixp/start.o(.text*)
+               *(.text*)
        }
 
        . = ALIGN(4);
@@ -40,15 +40,17 @@ SECTIONS
 
        . = ALIGN(4);
        .data : {
-               *(.data)
+               *(.data*)
        }
 
        . = ALIGN(4);
 
        . = .;
-       __u_boot_cmd_start = .;
-       .u_boot_cmd : { *(.u_boot_cmd) }
-       __u_boot_cmd_end = .;
+
+       . = ALIGN(4);
+       .u_boot_list : {
+       #include <u-boot.lst>
+       }
 
        . = ALIGN(4);
 
@@ -63,11 +65,13 @@ SECTIONS
                *(.dynsym)
        }
 
+       _end = .;
+
        .bss __rel_dyn_start (OVERLAY) : {
                __bss_start = .;
-               *(.bss)
+               *(.bss*)
                 . = ALIGN(4);
-               _end = .;
+               __bss_end__ = .;
        }
 
        /DISCARD/ : { *(.dynstr*) }