diff options
author | isiora <none@example.com> | 2017-10-04 19:44:50 +0000 |
---|---|---|
committer | isiora <none@example.com> | 2017-10-04 19:44:50 +0000 |
commit | 572bf197fa21b83b5b69d280488d73628d7f3b9a (patch) | |
tree | 892cbbe1d4e55550ae5563f45f9af79ac859e756 | |
parent | 945d8382d2d38cfe50cee2e9f124484520e16ff2 (diff) | |
download | ChibiOS-572bf197fa21b83b5b69d280488d73628d7f3b9a.tar.gz ChibiOS-572bf197fa21b83b5b69d280488d73628d7f3b9a.tar.bz2 ChibiOS-572bf197fa21b83b5b69d280488d73628d7f3b9a.zip |
Added .boot section to startup
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10772 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/common/startup/ARM/compilers/GCC/ld/rules.ld | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/os/common/startup/ARM/compilers/GCC/ld/rules.ld b/os/common/startup/ARM/compilers/GCC/ld/rules.ld index 219d0d420..ac4e969bd 100644 --- a/os/common/startup/ARM/compilers/GCC/ld/rules.ld +++ b/os/common/startup/ARM/compilers/GCC/ld/rules.ld @@ -51,6 +51,7 @@ SECTIONS startup : ALIGN(16) SUBALIGN(16)
{
KEEP(*(.vectors))
+ KEEP(*(.boot))
} > flash
constructors : ALIGN(4) SUBALIGN(4)
|