]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - board/actux3/u-boot.lds
arm: make __bss_start and __bss_end__ compiler-generated
[karo-tx-uboot.git] / board / actux3 / u-boot.lds
index a3bd02b0d2b2a016561ed2692fd70410df456bc7..488e1e7e5b5def83f7cdfc75c4842995ac8ddb49 100644 (file)
@@ -72,13 +72,21 @@ SECTIONS
                *(.dynsym)
        }
 
-       .bss __rel_dyn_start (OVERLAY) : {
-               __bss_start = .;
+       _end = .;
+
+       .bss_start __rel_dyn_start (OVERLAY) : {
+               KEEP(*(.__bss_start));
+       }
+
+       .bss __bss_start (OVERLAY) : {
                *(.bss*)
                 . = ALIGN(4);
-               _end = .;
+                ___bssend___ = .;
        }
-       __bss_end__ =.;
+       .bss_end ___bssend___ (OVERLAY) : {
+               KEEP(*(.__bss_end__));
+       }
+
        /DISCARD/ : { *(.dynstr*) }
        /DISCARD/ : { *(.dynamic*) }
        /DISCARD/ : { *(.plt*) }