]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - board/altera/ep1s10/u-boot.lds
Fix linker scripts: add NOLOAD atribute to .bss/.sbss sections
[karo-tx-uboot.git] / board / altera / ep1s10 / u-boot.lds
index b99b82c826cf0062b4e3f2775123d1a229ecf46b..73dfe9d76d9d293d5dc83c3b5a20d6fee49ab057 100644 (file)
@@ -87,7 +87,7 @@ SECTIONS
         * bss follows. We keep it adjacent to simplify init code.
         */
        __bss_start = .;
-       .sbss :
+       .sbss (NOLOAD) :
        {
          *(.sbss)
          *(.sbss.*)
@@ -95,7 +95,7 @@ SECTIONS
          *(.scommon)
        }
        . = ALIGN(4);
-       .bss :
+       .bss (NOLOAD) :
        {
          *(.bss)
          *(.bss.*)