Shuffle all rodata back into IROM.
With a working exception handler all of the RTOS-SDK bits seem to be happy too. So far.
This commit is contained in:
parent
7f92bf64be
commit
6f9c84d802
|
@ -45,6 +45,8 @@ void TEXT_SECTION_ATTR user_start_trampoline (void)
|
||||||
rtctime_early_startup ();
|
rtctime_early_startup ();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* The first thing call_user_start() does is switch the interrupt vector
|
||||||
|
* base, which enables our 8/16bit load handler. */
|
||||||
call_user_start ();
|
call_user_start ();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -95,7 +95,7 @@ SECTIONS
|
||||||
*(.clientcert.flash)
|
*(.clientcert.flash)
|
||||||
*(.irom0.literal .irom.literal .irom.text.literal .irom0.text .irom.text)
|
*(.irom0.literal .irom.literal .irom.text.literal .irom0.text .irom.text)
|
||||||
*(.literal.* .text.*)
|
*(.literal.* .text.*)
|
||||||
*/.output/eagle*.a:*.o(.rodata*) /* only NodeMCU rodata, for now */
|
*(.rodata*)
|
||||||
*(.sdk.version)
|
*(.sdk.version)
|
||||||
|
|
||||||
/* Link-time arrays containing the defs for the included modules */
|
/* Link-time arrays containing the defs for the included modules */
|
||||||
|
@ -119,11 +119,6 @@ SECTIONS
|
||||||
.rodata : ALIGN(4)
|
.rodata : ALIGN(4)
|
||||||
{
|
{
|
||||||
_rodata_start = ABSOLUTE(.);
|
_rodata_start = ABSOLUTE(.);
|
||||||
/* Some stuff in the RTOS libmain uses rodata while flash isn't mapped,
|
|
||||||
* so said rodata has to reside in RAM. For now we know libmain does this,
|
|
||||||
* as well as "something else". Hopefully we can narrow that down */
|
|
||||||
*libmain.a:*.o(.rodata*)
|
|
||||||
*/lib/lib*.a:*.o(.rodata*) /* rest of SDK rodata, for now */
|
|
||||||
|
|
||||||
*(.gnu.linkonce.r.*)
|
*(.gnu.linkonce.r.*)
|
||||||
__XT_EXCEPTION_TABLE__ = ABSOLUTE(.);
|
__XT_EXCEPTION_TABLE__ = ABSOLUTE(.);
|
||||||
|
|
Loading…
Reference in New Issue