summaryrefslogtreecommitdiff
path: root/nuttx/binfmt/Kconfig
blob: 4d020163eed792ad14555144b086a934b39e4cf7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#
# 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
source 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
source binfmt/libelf/Kconfig
endif

endif

config SYMTAB_ORDEREDBYNAME
	bool "Symbol Tables Ordered by Name"
	default n