move init_data from .text to .rodata.dram section (#1643)

This commit is contained in:
Arnim Läuger 2016-12-04 20:19:51 +01:00 committed by Marcel Stör
parent 11ded3fc9a
commit ea7ad21318
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ extern const uint32_t init_data[];
extern const uint32_t init_data_end[];
__asm__(
/* Place in .text for same reason as user_start_trampoline */
".section \".text\"\n"
".section \".rodata.dram\"\n"
".align 4\n"
"init_data:\n"
".incbin \"" ESP_INIT_DATA_DEFAULT "\"\n"