2012-10-25 00:46:12 +08:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 22:08:57 +08:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2012-10-25 00:46:12 +08:00
|
|
|
#
|
|
|
|
|
2012-10-25 09:23:03 +08:00
|
|
|
config ELF_ALIGN_LOG2
|
|
|
|
int "Log2 Section Alignment"
|
|
|
|
default 2
|
|
|
|
---help---
|
|
|
|
Align all sections to this Log2 value: 0->1, 1->2, 2->4, etc.
|
|
|
|
|
2012-10-26 00:18:20 +08:00
|
|
|
config ELF_STACKSIZE
|
|
|
|
int "ELF Stack Size"
|
|
|
|
default 2048
|
|
|
|
---help---
|
2014-05-08 03:47:52 +08:00
|
|
|
This is the default stack size that will be used when starting ELF binaries.
|
2012-10-26 00:18:20 +08:00
|
|
|
|
2012-10-26 03:21:47 +08:00
|
|
|
config ELF_BUFFERSIZE
|
|
|
|
int "ELF I/O Buffer Size"
|
|
|
|
default 128
|
|
|
|
---help---
|
|
|
|
This is an I/O buffer that is used to access the ELF file. Variable length items
|
|
|
|
will need to be read (such as symbol names). This is really just this initial
|
|
|
|
size of the buffer; it will be reallocated as necessary to hold large symbol
|
|
|
|
names). Default: 128
|
|
|
|
|
|
|
|
config ELF_BUFFERINCR
|
|
|
|
int "ELF I/O Buffer Realloc Increment"
|
|
|
|
default 32
|
|
|
|
---help---
|
|
|
|
This is an I/O buffer that is used to access the ELF file. Variable length items
|
|
|
|
will need to be read (such as symbol names). This value specifies the size
|
|
|
|
increment to use each time the buffer is reallocated. Default: 32
|
|
|
|
|
2012-10-25 00:46:12 +08:00
|
|
|
config ELF_DUMPBUFFER
|
|
|
|
bool "Dump ELF buffers"
|
|
|
|
default n
|
2016-06-18 09:30:19 +08:00
|
|
|
depends on DEBUG_INFO
|
2012-10-25 09:23:03 +08:00
|
|
|
---help---
|
|
|
|
Dump various ELF buffers for debug purposes
|
2015-06-02 04:16:18 +08:00
|
|
|
|
|
|
|
config ELF_EXIDX_SECTNAME
|
|
|
|
string "ELF Section Name for Exception Index"
|
|
|
|
default ".ARM.exidx"
|
|
|
|
depends on UCLIBCXX_EXCEPTION
|
|
|
|
---help---
|
|
|
|
Set the name string for the exception index section on the ELF modules to
|
|
|
|
be loaded by the ELF binary loader.
|
|
|
|
|
|
|
|
This is needed to support exception handling on loadable ELF modules.
|