Merge with git://www.denx.de/git/u-boot.git
[oweals/u-boot.git] / board / rsdproto / u-boot.lds
index 7425be6bb4d81bbab648309e40851e2cab80a306..9bd6248095267e3af50ebc40e9acaff8a1d27343 100644 (file)
@@ -55,7 +55,6 @@ SECTIONS
   {
     cpu/mpc8260/start.o        (.text)
     *(.text)
-    *(.fixup)
     *(.got1)
     /*. = env_offset; */
   }
@@ -65,6 +64,8 @@ SECTIONS
   {
     *(.rodata)
     *(.rodata1)
+    *(.rodata.str1.4)
+    *(.eh_frame)
   }
   .fini      : { *(.fini)    } =0
   .ctors     : { *(.ctors)   }
@@ -97,6 +98,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 = .;
@@ -119,4 +127,3 @@ SECTIONS
   _end = . ;
   PROVIDE (end = .);
 }
-