summaryrefslogtreecommitdiff
path: root/nuttx/binfmt
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-10-30 14:32:52 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-10-30 14:32:52 +0000
commitdd0096d7d05a9cb35b163f63c7b060a7bac2d55f (patch)
tree71414a09fc1ae1488b810a626f757bd0a8bd0c81 /nuttx/binfmt
parentaf3d8c8713bc62768e8452f7d37e178d68fc4698 (diff)
downloadpx4-nuttx-dd0096d7d05a9cb35b163f63c7b060a7bac2d55f.tar.gz
px4-nuttx-dd0096d7d05a9cb35b163f63c7b060a7bac2d55f.tar.bz2
px4-nuttx-dd0096d7d05a9cb35b163f63c7b060a7bac2d55f.zip
Add documentation for the binary loader
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5278 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/binfmt')
-rw-r--r--nuttx/binfmt/libelf/gnu-elf.ld16
1 files changed, 9 insertions, 7 deletions
diff --git a/nuttx/binfmt/libelf/gnu-elf.ld b/nuttx/binfmt/libelf/gnu-elf.ld
index bdf82836b..b2a3dc113 100644
--- a/nuttx/binfmt/libelf/gnu-elf.ld
+++ b/nuttx/binfmt/libelf/gnu-elf.ld
@@ -1,5 +1,5 @@
/****************************************************************************
- * examples/elf/gnu-elf.ld
+ * binfmt/libelf/gnu-elf.ld
*
* Copyright (C) 2012 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
@@ -51,8 +51,8 @@ SECTIONS
*/
*(.gnu.linkonce.t.*)
- *(.init)
- *(.fini)
+ *(.init) /* Old ABI */
+ *(.fini) /* Old ABI */
_etext = . ;
}
@@ -86,15 +86,17 @@ SECTIONS
.ctors :
{
- _sctros = . ;
- *(.ctors)
+ _sctors = . ;
+ *(.ctors) /* Old ABI: Unallocated */
+ *(.init_array) /* New ABI: Allocated */
_edtors = . ;
}
- .ctors :
+ .dtors :
{
_sdtors = . ;
- *(.dtors)
+ *(.dtors) /* Old ABI: Unallocated */
+ *(.fini_array) /* New ABI: Allocated */
_edtors = . ;
}