summaryrefslogtreecommitdiff
path: root/target/config/Config.in.binfmt
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2015-06-09 16:02:24 -0500
committerWaldemar Brodkorb <wbx@openadk.org>2015-06-10 08:19:39 -0500
commit260703a97087db63a9fbaf72e4b6c5a0d337559f (patch)
treeaab3af2b62daadf2497f05810c9c1122c584169d /target/config/Config.in.binfmt
parente313b47683325dc679e99320a7bc8d7a76b61668 (diff)
add simulator target for h8/300, reorg no-MMU
Some no-MMU targets need uclinux in its triple, some not. Introduce a new symbol for noMMU to select correct software and configuration instead of using UCLINUX symbol.
Diffstat (limited to 'target/config/Config.in.binfmt')
-rw-r--r--target/config/Config.in.binfmt9
1 files changed, 7 insertions, 2 deletions
diff --git a/target/config/Config.in.binfmt b/target/config/Config.in.binfmt
index 283885265..fb9b203a0 100644
--- a/target/config/Config.in.binfmt
+++ b/target/config/Config.in.binfmt
@@ -3,7 +3,11 @@
choice
prompt "Binary Format"
-depends on ADK_TARGET_ARCH_ARM || ADK_TARGET_ARCH_M68K || ADK_TARGET_ARCH_BFIN || ADK_TARGET_ARCH_C6X
+depends on ADK_TARGET_ARCH_ARM \
+ || ADK_TARGET_ARCH_BFIN \
+ || ADK_TARGET_ARCH_C6X \
+ || ADK_TARGET_ARCH_H8300\
+ || ADK_TARGET_ARCH_M68K
config ADK_TARGET_BINFMT_ELF
bool "ELF"
@@ -11,7 +15,8 @@ config ADK_TARGET_BINFMT_ELF
config ADK_TARGET_BINFMT_FLAT
bool "FLAT"
- depends on (ADK_TARGET_ARCH_ARM || ADK_TARGET_ARCH_BFIN || ADK_TARGET_ARCH_M68K) && ADK_TARGET_UCLINUX
+ depends on (ADK_TARGET_ARCH_ARM || ADK_TARGET_ARCH_BFIN || ADK_TARGET_ARCH_M68K) && ADK_TARGET_UCLINUX \
+ || ADK_TARGET_ARCH_H8300
config ADK_TARGET_BINFMT_DSBT
bool "DSBT"