2012-04-06 23:49:35 +08:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2012-04-07 00:45:52 +08:00
|
|
|
# see misc/tools/kconfig-language.txt.
|
2012-04-06 23:49:35 +08:00
|
|
|
#
|
2012-10-25 00:46:12 +08: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
|
|
|
|
include binfmt/libnxflat/Kconfig
|
|
|
|
endif
|
|
|
|
|
|
|
|
config ELF
|
|
|
|
bool "Enable the ELF Binary Format"
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Enable support for the ELF binary format. Default: n
|
|
|
|
|
|
|
|
if ELF
|
|
|
|
include binfmt/libelf/Kconfig
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
config SYMTAB_ORDEREDBYNAME
|
|
|
|
bool "Symbol Tables Ordered by Name"
|
|
|
|
default n
|