mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 13:12:37 -05:00
jx47xx: Rename crt0 'init' sections to 'startup'
Mirrors the change made to the x1000 target Change-Id: I69663245b1d05c001500240af33164f222e70e90
This commit is contained in:
parent
1930ca8d66
commit
83bb89d0b8
2 changed files with 7 additions and 3 deletions
|
|
@ -30,11 +30,15 @@ SECTIONS
|
|||
{
|
||||
. = DRAMORIG;
|
||||
|
||||
.text :
|
||||
.startup :
|
||||
{
|
||||
loadaddress = .;
|
||||
_loadaddress = .;
|
||||
*(.init.text);
|
||||
*(.startup.text);
|
||||
} > DRAM
|
||||
|
||||
.text :
|
||||
{
|
||||
*(.text*);
|
||||
} > DRAM
|
||||
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@
|
|||
.extern main
|
||||
.global _start
|
||||
|
||||
.section .init.text
|
||||
.section .startup.text,"ax",%progbits
|
||||
.set push
|
||||
.set mips32
|
||||
.set noreorder
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue