]> git.karo-electronics.de Git - karo-tx-uboot.git/blobdiff - board/hermes/u-boot.lds
* Code cleanup:
[karo-tx-uboot.git] / board / hermes / u-boot.lds
index 517a354ba67ee6716026d174791eb997ca6bdb49..4dbf7a6e83f68a5bc3419b0f202eb4b1b77f84ed 100644 (file)
@@ -56,11 +56,13 @@ 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)
-    common/dlmalloc.o  (.text)
-    lib_ppc/ppcstring.o        (.text)
-    cpu/mpc8xx/interrupts.o (.text)
+    cpu/mpc8xx/start.o         (.text)
+    common/dlmalloc.o          (.text)
+    cpu/mpc8xx/interrupts.o    (.text)
     lib_ppc/time.o             (.text)
+    lib_ppc/ticks.o            (.text)
+    lib_ppc/cache.o            (.text)
+    lib_generic/crc32.o                (.text)
     . = env_offset;
     common/environment.o(.text)
 
@@ -74,6 +76,7 @@ SECTIONS
   {
     *(.rodata)
     *(.rodata1)
+    *(.rodata.str1.4)
   }
   .fini      : { *(.fini)    } =0
   .ctors     : { *(.ctors)   }
@@ -106,6 +109,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 = .;