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
|
|
|
|
|
|
|
|
config NXFLAT
|
|
|
|
bool "Enable the NXFLAT Binary Format"
|
|
|
|
default n
|
|
|
|
---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
|
|
|
|
2012-10-24 13:46:12 -03:00
|
|
|
endif
|
|
|
|
|
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
|