All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] arm: ep9315: Add .vectors section to lds and remove obsolete lds
@ 2014-07-28  8:08 Sergey Kostanbaev
  2014-08-30 15:13 ` [U-Boot] " Tom Rini
  0 siblings, 1 reply; 2+ messages in thread
From: Sergey Kostanbaev @ 2014-07-28  8:08 UTC (permalink / raw)
  To: u-boot

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 at aribaud.net
---
 arch/arm/cpu/arm920t/ep93xx/u-boot.lds | 58 ----------------------------------
 board/cirrus/edb93xx/u-boot.lds        |  1 +
 2 files changed, 1 insertion(+), 58 deletions(-)
 delete mode 100644 arch/arm/cpu/arm920t/ep93xx/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
index 623a635..0000000
--- a/arch/arm/cpu/arm920t/ep93xx/u-boot.lds
+++ /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)
-	}
-}
diff --git a/board/cirrus/edb93xx/u-boot.lds b/board/cirrus/edb93xx/u-boot.lds
index b0d892a..4aa7891 100644
--- a/board/cirrus/edb93xx/u-boot.lds
+++ b/board/cirrus/edb93xx/u-boot.lds
@@ -21,6 +21,7 @@ SECTIONS
 	. = ALIGN(4);
 	.text : {
 		*(.__image_copy_start)
+		*(.vectors)
 		arch/arm/cpu/arm920t/start.o (.text*)
 		. = 0x1000;
 
-- 
1.8.3.2

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [U-Boot] arm: ep9315: Add .vectors section to lds and remove obsolete lds
  2014-07-28  8:08 [U-Boot] [PATCH] arm: ep9315: Add .vectors section to lds and remove obsolete lds Sergey Kostanbaev
@ 2014-08-30 15:13 ` Tom Rini
  0 siblings, 0 replies; 2+ messages in thread
From: Tom Rini @ 2014-08-30 15:13 UTC (permalink / raw)
  To: u-boot

On Mon, Jul 28, 2014 at 04:08:01PM +0800, Sergey Kostanbaev wrote:

> 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 at aribaud.net

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20140830/fda6adfe/attachment.pgp>

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-08-30 15:13 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-07-28  8:08 [U-Boot] [PATCH] arm: ep9315: Add .vectors section to lds and remove obsolete lds Sergey Kostanbaev
2014-08-30 15:13 ` [U-Boot] " Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.