summaryrefslogtreecommitdiff
path: root/nuttx/configs/kwikstik-k40/ostest/ld.script
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-08-12 22:10:48 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-08-12 22:10:48 +0000
commitd212c46891d73fec2a1bbc4069d5fecfc360b8f1 (patch)
tree401de244f5464fd9d593cc676395702d0510f915 /nuttx/configs/kwikstik-k40/ostest/ld.script
parent8e8fff821c980d0f4c5577367395b9c309383bbf (diff)
downloadpx4-nuttx-d212c46891d73fec2a1bbc4069d5fecfc360b8f1.tar.gz
px4-nuttx-d212c46891d73fec2a1bbc4069d5fecfc360b8f1.tar.bz2
px4-nuttx-d212c46891d73fec2a1bbc4069d5fecfc360b8f1.zip
Add Kinesis watchdog, ramfuncs, idle loop, start of clock configuration
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3875 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/configs/kwikstik-k40/ostest/ld.script')
-rwxr-xr-xnuttx/configs/kwikstik-k40/ostest/ld.script12
1 files changed, 10 insertions, 2 deletions
diff --git a/nuttx/configs/kwikstik-k40/ostest/ld.script b/nuttx/configs/kwikstik-k40/ostest/ld.script
index b91f14996..21a3f11fd 100755
--- a/nuttx/configs/kwikstik-k40/ostest/ld.script
+++ b/nuttx/configs/kwikstik-k40/ostest/ld.script
@@ -66,8 +66,6 @@ SECTIONS
_etext = ABSOLUTE(.);
} > flash
- _eronly = ABSOLUTE(.);
-
.data : {
_sdata = ABSOLUTE(.);
*(.data .data.*)
@@ -76,6 +74,16 @@ SECTIONS
_edata = ABSOLUTE(.);
} > sram AT > flash
+ _eronly = LOADADDR(.data);
+
+ .ramfunc ALIGN(4): {
+ _sramfunc_begin = . ;
+ *(.ramfunc .ramfunc.*)
+ _eramfunc_end = . ;
+ } > sram AT > flash
+
+ _framfunc = LOADADDR(.ramfunc);
+
.ARM.extab : {
*(.ARM.extab*)
} >sram