From 83bb89d0b836c2571315362603bc5a51cd3b804a Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Mon, 19 Dec 2022 23:08:45 -0500 Subject: jx47xx: Rename crt0 'init' sections to 'startup' Mirrors the change made to the x1000 target Change-Id: I69663245b1d05c001500240af33164f222e70e90 --- firmware/target/mips/ingenic_jz47xx/app.lds | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'firmware/target/mips/ingenic_jz47xx/app.lds') diff --git a/firmware/target/mips/ingenic_jz47xx/app.lds b/firmware/target/mips/ingenic_jz47xx/app.lds index 0d4952a835..cbeb7c1aaf 100644 --- a/firmware/target/mips/ingenic_jz47xx/app.lds +++ b/firmware/target/mips/ingenic_jz47xx/app.lds @@ -30,11 +30,15 @@ SECTIONS { . = DRAMORIG; - .text : + .startup : { loadaddress = .; _loadaddress = .; - *(.init.text); + *(.startup.text); + } > DRAM + + .text : + { *(.text*); } > DRAM -- cgit v1.2.3