diff options
author | Damien George <damien.p.george@gmail.com> | 2018-05-23 12:57:50 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2018-05-23 12:57:50 +1000 |
commit | df9b7e8f24384df446c98c10b28f4fb143d66d61 (patch) | |
tree | 0b5353644266feb1ee81f747da7c2ea238c47119 | |
parent | 18e6358480e640fd94a9383d5fa7d9b8cc2b9f73 (diff) |
esp32/esp32.custom_common.ld: Put soc code in iram0.
This is what the IDF does, it must be done.
-rw-r--r-- | ports/esp32/esp32.custom_common.ld | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/esp32/esp32.custom_common.ld b/ports/esp32/esp32.custom_common.ld index c9a61f018..f49ff9b20 100644 --- a/ports/esp32/esp32.custom_common.ld +++ b/ports/esp32/esp32.custom_common.ld @@ -90,7 +90,7 @@ SECTIONS *app_trace/*(.literal .text .literal.* .text.*) *xtensa-debug-module/eri.o(.literal .text .literal.* .text.*) *librtc.a:(.literal .text .literal.* .text.*) - *libsoc.a:(.literal .text .literal.* .text.*) + *soc/esp32/*(.literal .text .literal.* .text.*) *libhal.a:(.literal .text .literal.* .text.*) *libgcc.a:lib2funcs.o(.literal .text .literal.* .text.*) *spi_flash/spi_flash_rom_patch.o(.literal .text .literal.* .text.*) |