]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - board/dbau1x00/u-boot.lds
Fix linker scripts: add NOLOAD atribute to .bss/.sbss sections
[people/ms/u-boot.git] / board / dbau1x00 / u-boot.lds
index 861873272b6196a71a7ab4685cf2d0e83126ed61..1e1c5590d77a6fed6185fbe0cb514b24f0e6d3cf 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 = .;
 }