]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
arm: ep9315: Add .vectors section to lds and remove obsolete lds
authorSergey Kostanbaev <sergey.kostanbaev@gmail.com>
Mon, 28 Jul 2014 08:08:01 +0000 (16:08 +0800)
committerTom Rini <trini@ti.com>
Sat, 30 Aug 2014 11:46:38 +0000 (07:46 -0400)
However ep9315 don't use
interrupt vectors during startup, but _startup symbol is used inside uboot to
calculate actual monitor size.

Signed-off-by: Sergey Kostanbaev <sergey.kostanbaev@gmail.com>
Cc: albert.u.boot@aribaud.net
arch/arm/cpu/arm920t/ep93xx/u-boot.lds [deleted file]
board/cirrus/edb93xx/u-boot.lds

diff --git a/arch/arm/cpu/arm920t/ep93xx/u-boot.lds b/arch/arm/cpu/arm920t/ep93xx/u-boot.lds
deleted file mode 100644 (file)
index 623a635..0000000
+++ /dev/null
@@ -1,58 +0,0 @@
-/*
- * (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj@denx.de>
- *
- * SPDX-License-Identifier:    GPL-2.0+
- */
-
-OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
-OUTPUT_ARCH(arm)
-ENTRY(_start)
-SECTIONS
-{
-       . = 0x00000000;
-
-       . = ALIGN(4);
-       .text      :
-       {
-               *(.__image_copy_start)
-               *(.vectors)
-               arch/arm/cpu/arm920t/start.o    (.text*)
-               /* the EP93xx expects to find the pattern 'CRUS' at 0x1000 */
-         . = 0x1000;
-         LONG(0x53555243)
-         *(.text*)
-       }
-
-       . = ALIGN(4);
-       .rodata : { *(.rodata*) }
-
-       . = ALIGN(4);
-       .data : { *(.data*) }
-
-       . = ALIGN(4);
-       .got : { *(.got) }
-
-       . = .;
-
-       . = ALIGN(4);
-       .u_boot_list : {
-               KEEP(*(SORT(.u_boot_list*)));
-       }
-
-       . = ALIGN(4);
-
-       .image_copy_end :
-       {
-               *(.__image_copy_end)
-       }
-
-       __bss_start = .;
-       .bss : { *(.bss*) }
-       __bss_end = .;
-
-       .end :
-       {
-               *(.__end)
-       }
-}
index b0d892a59f4d341ae05b2f39fcb42e33ea0f48e3..4aa789166047631885b3d74c0fb64f0d1c0d6fb6 100644 (file)
@@ -21,6 +21,7 @@ SECTIONS
        . = ALIGN(4);
        .text : {
                *(.__image_copy_start)
+               *(.vectors)
                arch/arm/cpu/arm920t/start.o (.text*)
                . = 0x1000;