common: Add .u_boot_list into all linker files
[kernel/u-boot.git] / board / stx / stxxtc / u-boot.lds.debug
index ec479b1..ffebab5 100644 (file)
@@ -55,7 +55,7 @@ SECTIONS
     /* WARNING - the following is hand-optimized to fit within */
     /* the sector layout of our flash chips!   XXX FIXME XXX   */
 
-    arch/ppc/cpu/mpc8xx/start.o                (.text)
+    arch/powerpc/cpu/mpc8xx/start.o            (.text)
     common/dlmalloc.o          (.text)
     lib/vsprintf.o     (.text)
     lib/crc32.o                (.text)
@@ -110,6 +110,11 @@ SECTIONS
   .u_boot_cmd : { *(.u_boot_cmd) }
   __u_boot_cmd_end = .;
 
+  . = ALIGN(4);
+  .u_boot_list : {
+       #include <u-boot.lst>
+  }
+
 
   __start___ex_table = .;
   __ex_table : { *(__ex_table) }
@@ -130,6 +135,6 @@ SECTIONS
    *(.bss)
    *(COMMON)
   }
-  _end = . ;
+  __bss_end__ = . ;
   PROVIDE (end = .);
 }