mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-10 05:32:40 -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;
|
. = DRAMORIG;
|
||||||
|
|
||||||
.text :
|
.startup :
|
||||||
{
|
{
|
||||||
loadaddress = .;
|
loadaddress = .;
|
||||||
_loadaddress = .;
|
_loadaddress = .;
|
||||||
*(.init.text);
|
*(.startup.text);
|
||||||
|
} > DRAM
|
||||||
|
|
||||||
|
.text :
|
||||||
|
{
|
||||||
*(.text*);
|
*(.text*);
|
||||||
} > DRAM
|
} > DRAM
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
.extern main
|
.extern main
|
||||||
.global _start
|
.global _start
|
||||||
|
|
||||||
.section .init.text
|
.section .startup.text,"ax",%progbits
|
||||||
.set push
|
.set push
|
||||||
.set mips32
|
.set mips32
|
||||||
.set noreorder
|
.set noreorder
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue