summaryrefslogtreecommitdiff
path: root/target/config/Config.in.binfmt
blob: f8e233c95a785dd5b8d2a07acfa1aef2b8a6d669 (plain)
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
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.

choice
prompt "Binary Format"
depends on ADK_TARGET_ARCH_M68K || ADK_TARGET_ARCH_BFIN || ADK_TARGET_ARCH_C6X

config ADK_TARGET_BINFMT_ELF
	bool "ELF"
	depends on !ADK_TARGET_ARCH_C6X
	depends on !ADK_TARGET_ARCH_BFIN

config ADK_TARGET_BINFMT_DSBT
	bool "DSBT"
	depends on ADK_TARGET_ARCH_C6X
	depends on !ADK_TARGET_ARCH_BFIN
	depends on !ADK_TARGET_ARCH_M68K

config ADK_TARGET_BINFMT_FDPIC
	bool "FDPIC"
	depends on ADK_TARGET_ARCH_BFIN
	depends on !ADK_TARGET_ARCH_C6X

config ADK_TARGET_BINFMT_FLAT
	bool "FLAT"
	depends on !ADK_TARGET_ARCH_C6X

endchoice