2012-04-06 17:49:35 +02:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 16:08:57 +02:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2012-04-06 17:49:35 +02:00
|
|
|
#
|
2012-10-24 18:46:12 +02:00
|
|
|
|
|
|
|
config BINFMT_DISABLE
|
2018-07-09 02:24:45 +02:00
|
|
|
bool "Disable BINFMT support"
|
2012-10-24 18:46:12 +02:00
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
By default, support for loadable binary formats is built. This logic
|
|
|
|
may be suppressed be defining this setting.
|
|
|
|
|
|
|
|
if !BINFMT_DISABLE
|
|
|
|
|
2012-12-16 22:15:27 +01:00
|
|
|
config PATH_INITIAL
|
|
|
|
string "Initial PATH Value"
|
|
|
|
default ""
|
2018-11-08 14:27:14 +01:00
|
|
|
depends on LIB_ENVPATH
|
2012-12-16 22:15:27 +01:00
|
|
|
---help---
|
|
|
|
The initial value of the PATH variable. This is the colon-separated
|
|
|
|
list of absolute paths. E.g., "/bin:/usr/bin:/sbin"
|
|
|
|
|
2018-08-05 16:09:54 +02:00
|
|
|
config BINFMT_LOADABLE
|
|
|
|
bool
|
2019-09-30 14:57:16 +02:00
|
|
|
select BUILD_LOADABLE
|
2018-08-05 16:09:54 +02:00
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Automatically selected if a loadable binary format is selected.
|
|
|
|
|
|
|
|
config PIC
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Automatically selected if the binary format requires position
|
|
|
|
independent operation.
|
|
|
|
|
2012-10-24 18:46:12 +02:00
|
|
|
config NXFLAT
|
|
|
|
bool "Enable the NXFLAT Binary Format"
|
|
|
|
default n
|
2018-08-05 16:09:54 +02:00
|
|
|
select BINFMT_LOADABLE
|
2012-12-11 19:04:04 +01:00
|
|
|
select PIC
|
2012-10-24 18:46:12 +02:00
|
|
|
---help---
|
|
|
|
Enable support for the NXFLAT binary format. Default: n
|
|
|
|
|
|
|
|
if NXFLAT
|
2012-10-25 03:34:21 +02:00
|
|
|
source binfmt/libnxflat/Kconfig
|
2012-10-24 18:46:12 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
config ELF
|
|
|
|
bool "Enable the ELF Binary Format"
|
|
|
|
default n
|
2018-08-05 16:09:54 +02:00
|
|
|
select BINFMT_LOADABLE
|
2017-01-21 21:40:26 +01:00
|
|
|
select LIBC_ARCH_ELF
|
2012-10-24 18:46:12 +02:00
|
|
|
---help---
|
|
|
|
Enable support for the ELF binary format. Default: n
|
|
|
|
|
|
|
|
if ELF
|
2012-10-25 03:34:21 +02:00
|
|
|
source binfmt/libelf/Kconfig
|
2012-10-24 18:46:12 +02:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2012-10-29 20:32:05 +01:00
|
|
|
config BINFMT_CONSTRUCTORS
|
|
|
|
bool "C++ Static Constructor Support"
|
|
|
|
default n
|
2013-01-27 16:52:58 +01:00
|
|
|
depends on HAVE_CXX && SCHED_STARTHOOK && ELF
|
2012-10-29 20:32:05 +01:00
|
|
|
---help---
|
2013-01-27 16:52:58 +01:00
|
|
|
Build in support for C++ constructors in loaded modules. Currently
|
|
|
|
only support for ELF binary formats.
|
2012-10-29 20:32:05 +01:00
|
|
|
|
2012-10-24 18:46:12 +02:00
|
|
|
config SYMTAB_ORDEREDBYNAME
|
|
|
|
bool "Symbol Tables Ordered by Name"
|
|
|
|
default n
|
2019-01-26 20:34:01 +01:00
|
|
|
---help---
|
|
|
|
Select if the symbol table is ordered by symbol name. In this case,
|
|
|
|
the logic can perform faster lookups using a binary search.
|
|
|
|
Otherwise, the symbol table is assumed to be un-ordered an only
|
|
|
|
slow, linear searches are supported.
|