]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - board/etx094/u-boot.lds.debug
Merge branch 'master' of git://git.denx.de/u-boot-arm
[karo-tx-uboot.git] / board / etx094 / u-boot.lds.debug
index 17ec374d7ef78240580d1306aa282b6d2b17ce89..be05d8fdcc62d38b5ed18a15297c66484d968295 100644 (file)
@@ -22,7 +22,6 @@
  */
 
 OUTPUT_ARCH(powerpc)
-SEARCH_DIR(/lib); SEARCH_DIR(/usr/lib); SEARCH_DIR(/usr/local/lib); SEARCH_DIR(/usr/local/powerpc-any-elf/lib);
 /* Do we need any of these for elf?
    __DYNAMIC = 0;    */
 SECTIONS
@@ -34,11 +33,11 @@ SECTIONS
   .dynsym        : { *(.dynsym)                }
   .dynstr        : { *(.dynstr)                }
   .rel.text      : { *(.rel.text)              }
-  .rela.text     : { *(.rela.text)     }
+  .rela.text     : { *(.rela.text)     }
   .rel.data      : { *(.rel.data)              }
-  .rela.data     : { *(.rela.data)     }
-  .rel.rodata    : { *(.rel.rodata)    }
-  .rela.rodata   : { *(.rela.rodata)   }
+  .rela.data     : { *(.rela.data)     }
+  .rel.rodata    : { *(.rel.rodata)    }
+  .rela.rodata   : { *(.rela.rodata)   }
   .rel.got       : { *(.rel.got)               }
   .rela.got      : { *(.rela.got)              }
   .rel.ctors     : { *(.rel.ctors)     }
@@ -56,23 +55,22 @@ SECTIONS
     /* WARNING - the following is hand-optimized to fit within */
     /* the sector layout of our flash chips!   XXX FIXME XXX   */
 
-    cpu/mpc8xx/start.o (.text)
-    cpu/mpc8xx/traps.o (.text)
-    cpu/mpc8xx/interrupts.o    (.text)
-    cpu/mpc8xx/cpu.o   (.text)
-    cpu/mpc8xx/cpu_init.o      (.text)
-    cpu/mpc8xx/speed.o (.text)
-    cpu/mpc8xx/serial.o        (.text)
-    lib_ppc/extable.o  (.text)
-    lib_ppc/ppcstring.o        (.text)
-    lib_generic/string.o       (.text)
-    lib_generic/crc32.o                (.text)
+    arch/powerpc/cpu/mpc8xx/start.o    (.text)
+    arch/powerpc/cpu/mpc8xx/traps.o    (.text)
+    arch/powerpc/cpu/mpc8xx/interrupts.o       (.text)
+    arch/powerpc/cpu/mpc8xx/cpu.o      (.text)
+    arch/powerpc/cpu/mpc8xx/cpu_init.o (.text)
+    arch/powerpc/cpu/mpc8xx/speed.o    (.text)
+    arch/powerpc/cpu/mpc8xx/serial.o   (.text)
+    arch/powerpc/lib/extable.o (.text)
+    arch/powerpc/lib/ppcstring.o       (.text)
+    lib/string.o       (.text)
+    lib/crc32.o                (.text)
     common/dlmalloc.o  (.text)
     . = env_offset;
-    common/environment.o(.text)
+    common/env_embedded.o(.text)
 
     *(.text)
-    *(.fixup)
     *(.got1)
   }
   _etext = .;
@@ -81,6 +79,8 @@ SECTIONS
   {
     *(.rodata)
     *(.rodata1)
+    *(.rodata.str1.4)
+    *(.eh_frame)
   }
   .fini      : { *(.fini)    } =0
   .ctors     : { *(.ctors)   }
@@ -113,6 +113,11 @@ 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 = .;
@@ -135,4 +140,3 @@ SECTIONS
   _end = . ;
   PROVIDE (end = .);
 }
-