Moved initialization of GT6426x Ethernet controller to board_eth_init()
[oweals/u-boot.git] / board / incaip / u-boot.lds
index 9639b81acc62fea49eeab2190ab6141a323f13fa..1e1c5590d77a6fed6185fbe0cb514b24f0e6d3cf 100644 (file)
@@ -54,16 +54,17 @@ SECTIONS
 
        .sdata  : { *(.sdata) }
 
-       . = .;
-       __u_boot_cmd_start = .;
-       .u_boot_cmd : { *(.u_boot_cmd) }
-       __u_boot_cmd_end = .;
+       .u_boot_cmd : {
+         __u_boot_cmd_start = .;
+         *(.u_boot_cmd)
+         __u_boot_cmd_end = .;
+       }
 
        uboot_end_data = .;
        num_got_entries = (__got_end - __got_start) >> 2;
 
        . = ALIGN(4);
-       .sbss  : { *(.sbss) }
-       .bss  : { *(.bss) }
+       .sbss (NOLOAD)  : { *(.sbss) }
+       .bss (NOLOAD)  : { *(.bss) }
        uboot_end = .;
 }