]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - board/tb0229/u-boot.lds
Fix linker scripts: add NOLOAD atribute to .bss/.sbss sections
[karo-tx-uboot.git] / board / tb0229 / u-boot.lds
index c629040a080575ff52d85ff2dd0c132d69cd4052..b18e6a6fc521da0012a2c2eef8118b0ebfd97b23 100644 (file)
@@ -64,7 +64,7 @@ SECTIONS
        num_got_entries = (__got_end - __got_start) >> 2;
 
        . = ALIGN(4);
-       .sbss  : { *(.sbss) }
-       .bss  : { *(.bss) }
+       .sbss (NOLOAD)  : { *(.sbss) }
+       .bss (NOLOAD)  : { *(.bss) }
        uboot_end = .;
 }