jx47xx: Rename crt0 'init' sections to 'startup'

Mirrors the change made to the x1000 target

Change-Id: I69663245b1d05c001500240af33164f222e70e90
This commit is contained in:
Solomon Peachy 2022-12-19 23:08:45 -05:00
parent 1930ca8d66
commit 83bb89d0b8
2 changed files with 7 additions and 3 deletions

View file

@ -30,11 +30,15 @@ SECTIONS
{
. = DRAMORIG;
.text :
.startup :
{
loadaddress = .;
_loadaddress = .;
*(.init.text);
*(.startup.text);
} > DRAM
.text :
{
*(.text*);
} > DRAM

View file

@ -44,7 +44,7 @@
.extern main
.global _start
.section .init.text
.section .startup.text,"ax",%progbits
.set push
.set mips32
.set noreorder