]> git.sur5r.net Git - u-boot/blobdiff - board/tqm8xx/u-boot.lds
[MIPS] Fix dcache_status()
[u-boot] / board / tqm8xx / u-boot.lds
index 532da283a7282a4224015dd29c99a2631e896a0d..bb9fcab8eb102a8a18b12e1ac1dabe7efb7a4c91 100644 (file)
@@ -79,6 +79,8 @@ SECTIONS
   {
     *(.rodata)
     *(.rodata1)
+    *(.rodata.str1.4)
+    *(.eh_frame)
   }
   .fini      : { *(.fini)    } =0
   .ctors     : { *(.ctors)   }
@@ -111,6 +113,13 @@ SECTIONS
   _edata  =  .;
   PROVIDE (edata = .);
 
+  . = .;
+  __u_boot_cmd_start = .;
+  .u_boot_cmd : { *(.u_boot_cmd) }
+  __u_boot_cmd_end = .;
+
+
+  . = .;
   __start___ex_table = .;
   __ex_table : { *(__ex_table) }
   __stop___ex_table = .;
@@ -123,7 +132,7 @@ SECTIONS
   __init_end = .;
 
   __bss_start = .;
-  .bss       :
+  .bss (NOLOAD)       :
   {
    *(.sbss) *(.scommon)
    *(.dynbss)
@@ -133,4 +142,3 @@ SECTIONS
   _end = . ;
   PROVIDE (end = .);
 }
-