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:
parent
63cfbe096b
commit
1e7febe940
3 changed files with 3 additions and 3 deletions
|
@ -32,7 +32,7 @@ SECTIONS
|
|||
{
|
||||
.vectors :
|
||||
{
|
||||
*(.init.text)
|
||||
KEEP(*(.startup*));
|
||||
_datacopy = .;
|
||||
} > FLASH
|
||||
|
||||
|
|
|
@ -56,7 +56,7 @@ SECTIONS
|
|||
"by hand" */
|
||||
.text LOADADDR(.data) + SIZEOF(.data) :
|
||||
{
|
||||
*(.init.text)
|
||||
KEEP(*(.startup*));
|
||||
*(.text*)
|
||||
. = ALIGN(0x4);
|
||||
} > FLASH
|
||||
|
|
|
@ -48,7 +48,7 @@ SECTIONS
|
|||
"by hand" */
|
||||
.text LOADADDR(.data) + SIZEOF(.data) :
|
||||
{
|
||||
*(.init.text)
|
||||
KEEP(*(.startup*));
|
||||
*(.text*)
|
||||
. = ALIGN(0x4);
|
||||
} > FLASH
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue