45 lines
1.4 KiB
Text
45 lines
1.4 KiB
Text
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
config MODULE_ALIGN_LOG2
|
|
int "Log2 Section Alignment"
|
|
default 2
|
|
---help---
|
|
Align all sections to this Log2 value: 0->1, 1->2, 2->4, etc.
|
|
|
|
config MODULE_BUFFERSIZE
|
|
int "Module I/O Buffer Size"
|
|
default 128
|
|
---help---
|
|
This is an I/O buffer that is used to access the module 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 MODULE_BUFFERINCR
|
|
int "Module I/O Buffer Realloc Increment"
|
|
default 32
|
|
---help---
|
|
This is an I/O buffer that is used to access the module 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
|
|
|
|
config MODULE_DUMPBUFFER
|
|
bool "Dump module buffers"
|
|
default n
|
|
depends on DEBUG && DEBUG_VERBOSE
|
|
---help---
|
|
Dump various module buffers for debug purposes
|
|
|
|
config MODULE_EXIDX_SECTNAME
|
|
string "Module Section Name for Exception Index"
|
|
default ".ARM.exidx"
|
|
depends on UCLIBCXX_EXCEPTION
|
|
---help---
|
|
Set the name string for the exception index section on the modules to
|
|
be loaded by the module binary loader.
|
|
|
|
This is needed to support exception handling on loadable modules.
|