3ed3edb4f1
As reported by check-package (by calling it directly): use name <number>-<description>.patch Output of: make at91bootstrap-dirclean at91bootstrap-patch | grep 'Patching\|Applying' Before: >>> at91bootstrap 1.16 Patching Applying at91bootstrap-1.16-eabi-fix.patch using patch: Applying at91bootstrap-1.16-gcc-4.6.x-ldscript-fix.patch using patch: Applying at91bootstrap-1.16-u-boot-relocation-fix.patch using patch: After: >>> at91bootstrap 1.16 Patching Applying 0001-eabi-fix.patch using patch: Applying 0002-gcc-4.6.x-ldscript-fix.patch using patch: Applying 0003-u-boot-relocation-fix.patch using patch: Signed-off-by: Ricardo Martincoski <ricardo.martincoski@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
30 lines
873 B
Diff
30 lines
873 B
Diff
From b783d1f9bf985c0981e755bd2c13e091e9d6837f Mon Sep 17 00:00:00 2001
|
|
From: Gregory Hermant <gregory.hermant@calao-systems.com>
|
|
Date: Tue, 6 Nov 2012 09:38:50 +0100
|
|
Subject: [PATCH] at91bootstrap: fix overlap linker issue
|
|
|
|
The linker script of the at91bootstrap package has to be modified when
|
|
built from gcc-4.6.x version. Indeed a section named text.startup is
|
|
created and has to be added into the text section.
|
|
|
|
Signed-off-by: Gregory Hermant <gregory.hermant@calao-systems.com>
|
|
---
|
|
elf32-littlearm.lds | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/elf32-littlearm.lds b/elf32-littlearm.lds
|
|
index a33952f..4f3ba25 100644
|
|
--- a/elf32-littlearm.lds
|
|
+++ b/elf32-littlearm.lds
|
|
@@ -7,6 +7,7 @@ SECTIONS
|
|
.text : {
|
|
_stext = .;
|
|
*(.text)
|
|
+ *(.text*)
|
|
*(.rodata) /* read-only data (constants) */
|
|
*(.rodata*)
|
|
. = ALIGN(4);
|
|
--
|
|
1.7.9.5
|
|
|