mirror of
https://github.com/apache/nuttx.git
synced 2026-06-06 00:14:22 +08:00
Early integration fixes
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1783 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
@@ -131,6 +131,9 @@ CONFIG_LM3S_ETHLEDS=n
|
|||||||
# CONFIG_INTELHEX_BINARY - make the Intel HEX binary format
|
# CONFIG_INTELHEX_BINARY - make the Intel HEX binary format
|
||||||
# used with many different loaders using the GNU objcopy program
|
# used with many different loaders using the GNU objcopy program
|
||||||
# Should not be selected if you are not using the GNU toolchain.
|
# Should not be selected if you are not using the GNU toolchain.
|
||||||
|
# CONFIG_MOTOROLA_SREC - make the Motorola S-Record binary format
|
||||||
|
# used with many different loaders using the GNU objcopy program
|
||||||
|
# Should not be selected if you are not using the GNU toolchain.
|
||||||
# CONFIG_RAW_BINARY - make a raw binary format file used with many
|
# CONFIG_RAW_BINARY - make a raw binary format file used with many
|
||||||
# different loaders using the GNU objcopy program. This option
|
# different loaders using the GNU objcopy program. This option
|
||||||
# should not be selected if you are not using the GNU toolchain.
|
# should not be selected if you are not using the GNU toolchain.
|
||||||
@@ -138,7 +141,8 @@ CONFIG_LM3S_ETHLEDS=n
|
|||||||
#
|
#
|
||||||
CONFIG_RRLOAD_BINARY=n
|
CONFIG_RRLOAD_BINARY=n
|
||||||
CONFIG_INTELHEX_BINARY=n
|
CONFIG_INTELHEX_BINARY=n
|
||||||
CONFIG_RAW_BINARY=n
|
CONFIG_MOTOROLA_SREC=n
|
||||||
|
CONFIG_RAW_BINARY=y
|
||||||
CONFIG_HAVE_LIBM=n
|
CONFIG_HAVE_LIBM=n
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|||||||
@@ -52,10 +52,12 @@ SECTIONS
|
|||||||
{
|
{
|
||||||
.text : {
|
.text : {
|
||||||
_stext = ABSOLUTE(.);
|
_stext = ABSOLUTE(.);
|
||||||
|
*(.vectors)
|
||||||
*(.text)
|
*(.text)
|
||||||
*(.fixup)
|
*(.fixup)
|
||||||
*(.gnu.warning)
|
*(.gnu.warning)
|
||||||
*(.rodata)
|
*(.rodata)
|
||||||
|
*(.rodata.str1.1)
|
||||||
*(.glue_7)
|
*(.glue_7)
|
||||||
*(.glue_7t)
|
*(.glue_7t)
|
||||||
*(.got) /* Global offset table */
|
*(.got) /* Global offset table */
|
||||||
|
|||||||
Reference in New Issue
Block a user