From 7ab9d91f2694d71d0472f6670ed8d8fc747f74ff Mon Sep 17 00:00:00 2001 From: Scott Mabin Date: Fri, 31 Mar 2023 14:27:53 +0100 Subject: [PATCH] move rwtext after other RAM data sections (#464) --- .gitignore | 7 +++++++ esp32c6-hal/ld/bl-riscv-link.x | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 4d990a5a844..f6809d40365 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,10 @@ Cargo.lock # Other **/settings.json + +# wokwi related files +diagram.json +wokwi.toml + +# vscode +.vscode \ No newline at end of file diff --git a/esp32c6-hal/ld/bl-riscv-link.x b/esp32c6-hal/ld/bl-riscv-link.x index b0ae9fd3886..f512284a757 100644 --- a/esp32c6-hal/ld/bl-riscv-link.x +++ b/esp32c6-hal/ld/bl-riscv-link.x @@ -82,8 +82,8 @@ INSERT BEFORE .rodata; /* Shared sections - ordering matters */ INCLUDE "text.x" INCLUDE "rodata.x" -INCLUDE "rwtext.x" INCLUDE "rwdata.x" +INCLUDE "rwtext.x" INCLUDE "rtc_fast.x" /* End of Shared sections */