]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - board/actux1/u-boot.lds
Merge remote-tracking branch 'u-boot-ti/master'
[karo-tx-uboot.git] / board / actux1 / u-boot.lds
index 836775f0feec6e8e26dae16012a3643b8d035dc0..c41eed0e6f08c71812792e1398e118bba6100196 100644 (file)
@@ -30,15 +30,15 @@ SECTIONS
 
        . = ALIGN (4);
        .text : {
-               cpu/ixp/start.o(.text)
-               lib_generic/string.o(.text)
-               lib_generic/vsprintf.o(.text)
-               lib_arm/board.o(.text)
-               common/dlmalloc.o(.text)
-               cpu/ixp/cpu.o(.text)
+               arch/arm/cpu/ixp/start.o(.text*)
+               net/libnet.o(.text*)
+               board/actux1/libactux1.o(.text*)
+               arch/arm/cpu/ixp/libixp.o(.text*)
+               drivers/input/libinput.o(.text*)
+
                . = env_offset;
                common/env_embedded.o(.ppcenv)
-               * (.text)
+               *(.text*)
        }
 
        . = ALIGN (4);
@@ -47,24 +47,41 @@ SECTIONS
        }
        . = ALIGN (4);
        .data : {
-               *(.data)
+               *(.data*)
        }
        . = ALIGN (4);
        .got : {
                *(.got)
        }
        . =.;
-       __u_boot_cmd_start =.;
-       .u_boot_cmd : {
-               *(.u_boot_cmd)
+
+       . = ALIGN(4);
+       .u_boot_list : {
+       #include <u-boot.lst>
        }
-       __u_boot_cmd_end =.;
 
        . = ALIGN (4);
-       __bss_start =.;
-       .bss (NOLOAD): {
-               *(.bss)
-               . = ALIGN(4);
+       .rel.dyn : {
+               __rel_dyn_start = .;
+               *(.rel*)
+               __rel_dyn_end = .;
+       }
+
+       .dynsym : {
+               __dynsym_start = .;
+               *(.dynsym)
+       }
+
+       .bss __rel_dyn_start (OVERLAY) : {
+               __bss_start = .;
+               *(.bss*)
+                . = ALIGN(4);
+               _end = .;
        }
-       _end =.;
+       __bss_end__ =.;
+       /DISCARD/ : { *(.dynstr*) }
+       /DISCARD/ : { *(.dynamic*) }
+       /DISCARD/ : { *(.plt*) }
+       /DISCARD/ : { *(.interp*) }
+       /DISCARD/ : { *(.gnu*) }
 }