Fix STM32F40 build problem. Moved ARM.exidx to FLASH
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4137 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
fc138b6158
commit
7b634d851d
@ -2236,3 +2236,5 @@
|
||||
still several message queue functions that do not set errno!
|
||||
* arch/arm/src/stm32: Fixes to several STM32F40xxx files (contributed by
|
||||
Mikhail Bychek).
|
||||
* configs/stm3210e-eval/src/up_lcd.c: Fix banding problem on the R61580
|
||||
LCD
|
@ -72,9 +72,13 @@ SECTIONS
|
||||
_etext = ABSOLUTE(.);
|
||||
} > flash
|
||||
|
||||
_eronly = ABSOLUTE(.);
|
||||
__exidx_start = ABSOLUTE(.);
|
||||
.ARM.exidx : {
|
||||
*(.ARM.exidx*)
|
||||
} > flash
|
||||
__exidx_end = ABSOLUTE(.);
|
||||
|
||||
/* The STM32F103Z has 64Kb of SRAM beginning at the following address */
|
||||
_eronly = ABSOLUTE(.);
|
||||
|
||||
.data : {
|
||||
_sdata = ABSOLUTE(.);
|
||||
@ -88,12 +92,6 @@ SECTIONS
|
||||
*(.ARM.extab*)
|
||||
} >sram
|
||||
|
||||
__exidx_start = ABSOLUTE(.);
|
||||
.ARM.exidx : {
|
||||
*(.ARM.exidx*)
|
||||
} >sram
|
||||
__exidx_end = ABSOLUTE(.);
|
||||
|
||||
.bss : {
|
||||
_sbss = ABSOLUTE(.);
|
||||
*(.bss .bss.*)
|
||||
|
Loading…
Reference in New Issue
Block a user