git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12849 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
Giovanni Di Sirio 2019-06-29 16:51:09 +00:00
parent e81bcef2be
commit ae2fa9e9c5
7 changed files with 11 additions and 9 deletions

View File

@ -70,7 +70,7 @@ SECTIONS
PROVIDE(__fini_array_end = .);
} > flash
.text : ALIGN(16)
.text : ALIGN_WITH_INPUT
{
*(.text)
*(.text.*)

View File

@ -70,7 +70,7 @@ SECTIONS
PROVIDE(__fini_array_end = .);
} > flash
.text : ALIGN(16)
.text : ALIGN_WITH_INPUT
{
*(.text)
*(.text.*)

View File

@ -35,7 +35,7 @@ SECTIONS
__fini_array_end = .;
} > XTORS_FLASH AT > XTORS_FLASH_LMA
.text : ALIGN(4)
.text : ALIGN_WITH_INPUT
{
__text_base = .;
*(.text)

View File

@ -57,14 +57,14 @@ SECTIONS
PROVIDE(__fini_array_end = .);
} > flash
.text_vle : ALIGN(16)
.text_vle : ALIGN_WITH_INPUT
{
*(.text_vle)
*(.text_vle.*)
*(.gnu.linkonce.t_vle.*)
} > flash
.text : ALIGN(16)
.text : ALIGN_WITH_INPUT
{
*(.text)
*(.text.*)

View File

@ -54,14 +54,14 @@ SECTIONS
PROVIDE(__fini_array_end = .);
} > flash
.text_vle : ALIGN(16)
.text_vle : ALIGN_WITH_INPUT
{
*(.text_vle)
*(.text_vle.*)
*(.gnu.linkonce.t_vle.*)
} > flash
.text : ALIGN(16)
.text : ALIGN_WITH_INPUT
{
*(.text)
*(.text.*)

View File

@ -54,14 +54,14 @@ SECTIONS
PROVIDE(__fini_array_end = .);
} > flash
.text_vle : ALIGN(16)
.text_vle : ALIGN_WITH_INPUT
{
*(.text_vle)
*(.text_vle.*)
*(.gnu.linkonce.t_vle.*)
} > flash
.text : ALIGN(16)
.text : ALIGN_WITH_INPUT
{
*(.text)
*(.text.*)

View File

@ -101,6 +101,8 @@
- HAL: Added a new interface for range-finder devices (used by EX).
- HAL: Added mcuconf.h updater tool for STM32F407 (backported to 19.1.1).
- NIL: Integrated NIL 4.0.
- FIX: Fixed GCC scatter files alignment problem (bug #1033)
(backported to 19.1.3)(backported to 18.2.3).
- FIX: Fixed long intervals fail when interval type is larger than time type
(bug #1031)(backported to 19.1.3)(backported to 18.2.3).
- FIX: Fixed Round Robin check missing when in tick-less mode (bug #1030)