2012-09-17 15:18:44 -03:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see misc/tools/kconfig-language.txt.
|
|
|
|
#
|
2012-10-24 13:46:12 -03:00
|
|
|
|
|
|
|
config BINFMT_DISABLE
|
|
|
|
bool "Disble BINFMT support"
|
|
|
|
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 17:15:27 -04:00
|
|
|
config BINFMT_EXEPATH
|
|
|
|
bool "Support PATH variable"
|
|
|
|
default n
|
|
|
|
depends on !DISABLE_ENVIRON
|
|
|
|
---help---
|
|
|
|
Use the contents of the PATH environment variable to locate executable
|
|
|
|
files. Default: n
|
|
|
|
|
|
|
|
config PATH_INITIAL
|
|
|
|
string "Initial PATH Value"
|
|
|
|
default ""
|
|
|
|
depends on BINFMT_EXEPATH
|
|
|
|
---help---
|
|
|
|
The initial value of the PATH variable. This is the colon-separated
|
|
|
|
list of absolute paths. E.g., "/bin:/usr/bin:/sbin"
|
|
|
|
|
2012-10-24 13:46:12 -03:00
|
|
|
config NXFLAT
|
|
|
|
bool "Enable the NXFLAT Binary Format"
|
|
|
|
default n
|
2012-12-11 14:04:04 -04:00
|
|
|
select PIC
|
2012-10-24 13:46:12 -03:00
|
|
|
---help---
|
|
|
|
Enable support for the NXFLAT binary format. Default: n
|
|
|
|
|
|
|
|
if NXFLAT
|
2012-10-24 22:34:21 -03:00
|
|
|
source binfmt/libnxflat/Kconfig
|
2012-10-24 13:46:12 -03:00
|
|
|
endif
|
|
|
|
|
|
|
|
config ELF
|
|
|
|
bool "Enable the ELF Binary Format"
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Enable support for the ELF binary format. Default: n
|
|
|
|
|
|
|
|
if ELF
|
2012-10-24 22:34:21 -03:00
|
|
|
source binfmt/libelf/Kconfig
|
2012-10-24 13:46:12 -03:00
|
|
|
endif
|
2012-10-24 22:34:21 -03:00
|
|
|
|
2013-01-16 13:05:00 -04:00
|
|
|
config BUILTIN
|
|
|
|
bool "Support Builtin Applications"
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Enable support for builtin applications. This features assigns a string
|
|
|
|
name to an application and in addition if FS_BINFS is defined, retaining
|
|
|
|
those names in a file system from which they can be executed. This feature
|
|
|
|
is also the underlying requirement to support built-in applications in the
|
|
|
|
NuttShell (NSH).
|
|
|
|
|
|
|
|
if BUILTIN
|
|
|
|
source binfmt/libbuiltin/Kconfig
|
|
|
|
endif
|
|
|
|
|
2012-10-24 13:46:12 -03:00
|
|
|
endif
|
|
|
|
|
2012-12-11 14:04:04 -04:00
|
|
|
config PIC
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
|
2012-10-29 16:32:05 -03:00
|
|
|
config BINFMT_CONSTRUCTORS
|
|
|
|
bool "C++ Static Constructor Support"
|
|
|
|
default n
|
|
|
|
depends on HAVE_CXX && ELF # FIX ME: Currently only supported for ELF
|
|
|
|
---help---
|
|
|
|
Build in support for C++ constructors in loaded modules.
|
|
|
|
|
2012-10-24 13:46:12 -03:00
|
|
|
config SYMTAB_ORDEREDBYNAME
|
|
|
|
bool "Symbol Tables Ordered by Name"
|
|
|
|
default n
|