]> git.karo-electronics.de Git - karo-tx-uboot.git/blobdiff - board/amcc/bamboo/u-boot.lds
Fix linker scripts: add NOLOAD atribute to .bss/.sbss sections
[karo-tx-uboot.git] / board / amcc / bamboo / u-boot.lds
index f6d7183199e8dc584d4c87470ddd759077a7493c..045af28f8657acd4f7257cb1cd9b3eb8ede21216 100644 (file)
@@ -133,7 +133,7 @@ SECTIONS
   __init_end = .;
 
   __bss_start = .;
-  .bss       :
+  .bss (NOLOAD)       :
   {
    *(.sbss) *(.scommon)
    *(.dynbss)
@@ -141,8 +141,6 @@ SECTIONS
    *(COMMON)
   }
 
-  ppcenv_assert = ASSERT(. < 0xFFFF8000, ".bss section too big, overlaps .ppcenv section. Please update your confguration: CFG_MONITOR_BASE, CFG_MONITOR_LEN and TEXT_BASE may need to be modified.");
-
   _end = . ;
   PROVIDE (end = .);
 }