diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-03-27 14:15:08 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-03-27 14:15:08 +0000 |
commit | bf5290452d6d92b57051931d2ec3081b0800e8d4 (patch) | |
tree | 83e0e0e597bd5da913fcf5007757e0ca6503d692 | |
parent | 9e9734dac9cd98dbef3adb4e1d879e86868bf076 (diff) | |
download | ChibiOS-bf5290452d6d92b57051931d2ec3081b0800e8d4.tar.gz ChibiOS-bf5290452d6d92b57051931d2ec3081b0800e8d4.tar.bz2 ChibiOS-bf5290452d6d92b57051931d2ec3081b0800e8d4.zip |
Fixed sections screwup...
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7820 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/common/ports/ARMCMx/compilers/GCC/crt0_v6m.s | 2 | ||||
-rw-r--r-- | os/common/ports/ARMCMx/compilers/GCC/crt0_v7m.s | 2 | ||||
-rw-r--r-- | os/common/ports/ARMCMx/compilers/GCC/rules.ld | 2 |
3 files changed, 2 insertions, 4 deletions
diff --git a/os/common/ports/ARMCMx/compilers/GCC/crt0_v6m.s b/os/common/ports/ARMCMx/compilers/GCC/crt0_v6m.s index d395eee85..38b4513b7 100644 --- a/os/common/ports/ARMCMx/compilers/GCC/crt0_v6m.s +++ b/os/common/ports/ARMCMx/compilers/GCC/crt0_v6m.s @@ -108,7 +108,7 @@ .fpu softvfp
.thumb
- .section .startup
+ .text
/*
* Reset handler.
diff --git a/os/common/ports/ARMCMx/compilers/GCC/crt0_v7m.s b/os/common/ports/ARMCMx/compilers/GCC/crt0_v7m.s index be04334be..fcfa4decd 100644 --- a/os/common/ports/ARMCMx/compilers/GCC/crt0_v7m.s +++ b/os/common/ports/ARMCMx/compilers/GCC/crt0_v7m.s @@ -148,7 +148,7 @@ #endif
.thumb
- .section .startup
+ .text
/*
* Reset handler.
diff --git a/os/common/ports/ARMCMx/compilers/GCC/rules.ld b/os/common/ports/ARMCMx/compilers/GCC/rules.ld index d48fb6112..485c0f0fa 100644 --- a/os/common/ports/ARMCMx/compilers/GCC/rules.ld +++ b/os/common/ports/ARMCMx/compilers/GCC/rules.ld @@ -72,8 +72,6 @@ SECTIONS .text : ALIGN(16) SUBALIGN(16)
{
- *(.startup)
- *(.startup.*)
*(.text)
*(.text.*)
*(.rodata)
|