summaryrefslogtreecommitdiff
path: root/FreeRTOS/Demo/CORTEX_MPU_Static_Simulator_Keil_GCC/GCC_Specific/sections.ld
diff options
context:
space:
mode:
authorSoren Ptak <Skptak@outlook.com>2023-03-05 20:43:35 -0800
committerGitHub <noreply@github.com>2023-03-05 20:43:35 -0800
commit93a35f87d2afa8e531b0d75e35431755cb3eb438 (patch)
treebcac1939ad7404f7eeeb0e098367a14f2ef37ce7 /FreeRTOS/Demo/CORTEX_MPU_Static_Simulator_Keil_GCC/GCC_Specific/sections.ld
parent408c3841eacad990110631194d8aa73786d2e685 (diff)
downloadfreertos-git-93a35f87d2afa8e531b0d75e35431755cb3eb438.tar.gz
Added two config options to the FreeRTOSConfig file to get the demo running again. Fixed a typo in a file. Added a section to the link file (#940)
Co-authored-by: Soren Ptak <skptak@amazon.com>
Diffstat (limited to 'FreeRTOS/Demo/CORTEX_MPU_Static_Simulator_Keil_GCC/GCC_Specific/sections.ld')
-rw-r--r--FreeRTOS/Demo/CORTEX_MPU_Static_Simulator_Keil_GCC/GCC_Specific/sections.ld7
1 files changed, 7 insertions, 0 deletions
diff --git a/FreeRTOS/Demo/CORTEX_MPU_Static_Simulator_Keil_GCC/GCC_Specific/sections.ld b/FreeRTOS/Demo/CORTEX_MPU_Static_Simulator_Keil_GCC/GCC_Specific/sections.ld
index 723631644..e6c41f9c4 100644
--- a/FreeRTOS/Demo/CORTEX_MPU_Static_Simulator_Keil_GCC/GCC_Specific/sections.ld
+++ b/FreeRTOS/Demo/CORTEX_MPU_Static_Simulator_Keil_GCC/GCC_Specific/sections.ld
@@ -156,6 +156,13 @@ SECTIONS
PROVIDE_HIDDEN (__fini_array_end = .);
. = ALIGN(4);
+ /* Set start of system calls to here */
+ __syscalls_flash_start__ = .;
+ /* Place all FreeRTOS System calls here */
+ *(freertos_system_calls)
+ __syscalls_flash_end__ = .;
+ /* Mark the end of the system calls */
+
. = ALIGN(4);
*(.text*) /* all remaining code */