summaryrefslogblamecommitdiff
path: root/nuttx/binfmt/Kconfig
blob: 3519536fb61a87ea4b476d894ad8461267feca67 (plain) (tree)
1
2
3
4

                                                             
                                      
 

































                                                                                     
#
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#

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