1
0
Fork 0
forked from len0rd/rockbox

coldfire: fix bootloader builds

In b31c856 startup code section was renamed but boot.lds
linker scripts were not updated accordingly.

Change-Id: I9c9893ec2e199ac2555007a1d23e109ca0daea28
This commit is contained in:
Marcin Bukat 2014-01-18 22:21:00 +01:00
parent 63cfbe096b
commit 1e7febe940
3 changed files with 3 additions and 3 deletions

View file

@ -32,7 +32,7 @@ SECTIONS
{
.vectors :
{
*(.init.text)
KEEP(*(.startup*));
_datacopy = .;
} > FLASH

View file

@ -56,7 +56,7 @@ SECTIONS
"by hand" */
.text LOADADDR(.data) + SIZEOF(.data) :
{
*(.init.text)
KEEP(*(.startup*));
*(.text*)
. = ALIGN(0x4);
} > FLASH

View file

@ -48,7 +48,7 @@ SECTIONS
"by hand" */
.text LOADADDR(.data) + SIZEOF(.data) :
{
*(.init.text)
KEEP(*(.startup*));
*(.text*)
. = ALIGN(0x4);
} > FLASH