summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Bukat <marcin.bukat@gmail.com>2014-01-18 22:21:00 +0100
committerMarcin Bukat <marcin.bukat@gmail.com>2014-01-18 22:21:00 +0100
commit1e7febe940fed9dbb4e993473255652f5fca4972 (patch)
tree87721524fd63166b1a3e6f54e6ab97a770132ebb
parent63cfbe096b12cbf71418f4adaffc8cf8309a9e27 (diff)
downloadrockbox-1e7febe940fed9dbb4e993473255652f5fca4972.tar.gz
rockbox-1e7febe940fed9dbb4e993473255652f5fca4972.zip
coldfire: fix bootloader builds
In b31c856 startup code section was renamed but boot.lds linker scripts were not updated accordingly. Change-Id: I9c9893ec2e199ac2555007a1d23e109ca0daea28
-rw-r--r--firmware/target/coldfire/iaudio/boot.lds2
-rw-r--r--firmware/target/coldfire/iriver/boot.lds2
-rw-r--r--firmware/target/coldfire/mpio/boot.lds2
3 files changed, 3 insertions, 3 deletions
diff --git a/firmware/target/coldfire/iaudio/boot.lds b/firmware/target/coldfire/iaudio/boot.lds
index 9288a6c18b..38419e3a1a 100644
--- a/firmware/target/coldfire/iaudio/boot.lds
+++ b/firmware/target/coldfire/iaudio/boot.lds
@@ -32,7 +32,7 @@ SECTIONS
32{ 32{
33 .vectors : 33 .vectors :
34 { 34 {
35 *(.init.text) 35 KEEP(*(.startup*));
36 _datacopy = .; 36 _datacopy = .;
37 } > FLASH 37 } > FLASH
38 38
diff --git a/firmware/target/coldfire/iriver/boot.lds b/firmware/target/coldfire/iriver/boot.lds
index 7f8e01377f..7b3b019cc2 100644
--- a/firmware/target/coldfire/iriver/boot.lds
+++ b/firmware/target/coldfire/iriver/boot.lds
@@ -56,7 +56,7 @@ SECTIONS
56 "by hand" */ 56 "by hand" */
57 .text LOADADDR(.data) + SIZEOF(.data) : 57 .text LOADADDR(.data) + SIZEOF(.data) :
58 { 58 {
59 *(.init.text) 59 KEEP(*(.startup*));
60 *(.text*) 60 *(.text*)
61 . = ALIGN(0x4); 61 . = ALIGN(0x4);
62 } > FLASH 62 } > FLASH
diff --git a/firmware/target/coldfire/mpio/boot.lds b/firmware/target/coldfire/mpio/boot.lds
index 9da99b8317..d35c65cfe0 100644
--- a/firmware/target/coldfire/mpio/boot.lds
+++ b/firmware/target/coldfire/mpio/boot.lds
@@ -48,7 +48,7 @@ SECTIONS
48 "by hand" */ 48 "by hand" */
49 .text LOADADDR(.data) + SIZEOF(.data) : 49 .text LOADADDR(.data) + SIZEOF(.data) :
50 { 50 {
51 *(.init.text) 51 KEEP(*(.startup*));
52 *(.text*) 52 *(.text*)
53 . = ALIGN(0x4); 53 . = ALIGN(0x4);
54 } > FLASH 54 } > FLASH