summaryrefslogtreecommitdiff
path: root/nuttx/configs/stm3210e-eval/usbstorage/ld.script
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-04-12 23:27:07 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-04-12 23:27:07 +0000
commit36b629aa8d334aab147dcfcf76d17f4033f35cac (patch)
tree398f0764a3a98b2cc0d5dc084a5fafcab155bbaf /nuttx/configs/stm3210e-eval/usbstorage/ld.script
parentc1c9b913a2f0cf2b6bdfb5ee9143796abfbad4d4 (diff)
downloadpx4-nuttx-36b629aa8d334aab147dcfcf76d17f4033f35cac.tar.gz
px4-nuttx-36b629aa8d334aab147dcfcf76d17f4033f35cac.tar.bz2
px4-nuttx-36b629aa8d334aab147dcfcf76d17f4033f35cac.zip
Remove warning 'sh_link not set for section ARM.exidx' for a few builds
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3496 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/configs/stm3210e-eval/usbstorage/ld.script')
-rwxr-xr-xnuttx/configs/stm3210e-eval/usbstorage/ld.script13
1 files changed, 7 insertions, 6 deletions
diff --git a/nuttx/configs/stm3210e-eval/usbstorage/ld.script b/nuttx/configs/stm3210e-eval/usbstorage/ld.script
index eb1b03a3a..d4e03d3a5 100755
--- a/nuttx/configs/stm3210e-eval/usbstorage/ld.script
+++ b/nuttx/configs/stm3210e-eval/usbstorage/ld.script
@@ -1,7 +1,7 @@
/****************************************************************************
* configs/stm3210e-eval/usbstorage/ld.script
*
- * Copyright (C) 2009 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2009, 2011 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
@@ -66,7 +66,7 @@ SECTIONS
_etext = ABSOLUTE(.);
} > flash
- _eronly = ABSOLUTE(.); /* See below */
+ _eronly = ABSOLUTE(.);
/* The STM32F103Z has 64Kb of SRAM beginning at the following address */
@@ -82,20 +82,21 @@ SECTIONS
*(.ARM.extab*)
} >sram
+ __exidx_start = ABSOLUTE(.);
.ARM.exidx : {
- __exidx_start = ABSOLUTE(.);
*(.ARM.exidx*)
- __exidx_end = ABSOLUTE(.);
} >sram
+ __exidx_end = ABSOLUTE(.);
- .bss : { /* BSS */
+ .bss : {
_sbss = ABSOLUTE(.);
*(.bss .bss.*)
*(.gnu.linkonce.b.*)
*(COMMON)
_ebss = ABSOLUTE(.);
} > sram
- /* Stabs debugging sections. */
+
+ /* Stabs debugging sections. */
.stab 0 : { *(.stab) }
.stabstr 0 : { *(.stabstr) }
.stab.excl 0 : { *(.stab.excl) }