]> git.sur5r.net Git - u-boot/blobdiff - board/RPXlite/u-boot.lds
Merge branch 'master' of /home/stefan/git/u-boot/u-boot
[u-boot] / board / RPXlite / u-boot.lds
index a31c362f243ce050a9dd447c8d666c4033fc41bb..618a10c9a3cd837a79355a669a8c3e9363c1df8d 100644 (file)
@@ -78,6 +78,7 @@ SECTIONS
     *(.rodata)
     *(.rodata1)
     *(.rodata.str1.4)
+    *(.eh_frame)
   }
   .fini      : { *(.fini)    } =0
   .ctors     : { *(.ctors)   }
@@ -110,6 +111,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 = .;
@@ -122,7 +130,7 @@ SECTIONS
   __init_end = .;
 
   __bss_start = .;
-  .bss       :
+  .bss (NOLOAD)       :
   {
    *(.sbss) *(.scommon)
    *(.dynbss)
@@ -132,4 +140,3 @@ SECTIONS
   _end = . ;
   PROVIDE (end = .);
 }
-