summaryrefslogtreecommitdiff
path: root/target/config/Config.in.binfmt
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2015-10-27 21:44:57 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2015-10-27 22:20:36 +0100
commit93b54ff7293142c6442f06e195e146de4ecbf3cf (patch)
treeefa492214cc2cd8b1d2106a2bcde6cd8db60e704 /target/config/Config.in.binfmt
parent410631c902385255d9447bef8e892ddb2790f8d3 (diff)
add frv arch support (very experimental)
Diffstat (limited to 'target/config/Config.in.binfmt')
-rw-r--r--target/config/Config.in.binfmt13
1 files changed, 6 insertions, 7 deletions
diff --git a/target/config/Config.in.binfmt b/target/config/Config.in.binfmt
index c66728f69..e83915cc3 100644
--- a/target/config/Config.in.binfmt
+++ b/target/config/Config.in.binfmt
@@ -6,8 +6,9 @@ prompt "Binary Format"
depends on ADK_TARGET_ARCH_ARM \
|| ADK_TARGET_ARCH_BFIN \
|| ADK_TARGET_ARCH_C6X \
- || ADK_TARGET_ARCH_H8300\
- || ADK_TARGET_ARCH_LM32\
+ || ADK_TARGET_ARCH_FRV \
+ || ADK_TARGET_ARCH_H8300 \
+ || ADK_TARGET_ARCH_LM32 \
|| ADK_TARGET_ARCH_M68K
config ADK_TARGET_BINFMT_ELF
@@ -16,13 +17,13 @@ config ADK_TARGET_BINFMT_ELF
config ADK_TARGET_BINFMT_FDPIC
bool "FDPIC"
- depends on ADK_TARGET_ARCH_BFIN
+ depends on ADK_TARGET_ARCH_BFIN || ADK_TARGET_ARCH_FRV
config ADK_TARGET_BINFMT_FLAT
bool "FLAT"
select ADK_TARGET_UCLINUX if ADK_TARGET_ARCH_BFIN
depends on (ADK_TARGET_ARCH_ARM || ADK_TARGET_ARCH_M68K) && ADK_TARGET_UCLINUX \
- || ADK_TARGET_ARCH_H8300 || ADK_TARGET_ARCH_LM32 || ADK_TARGET_ARCH_BFIN
+ || ADK_TARGET_ARCH_H8300 || ADK_TARGET_ARCH_LM32 || ADK_TARGET_ARCH_BFIN || ADK_TARGET_ARCH_FRV
config ADK_TARGET_BINFMT_DSBT
bool "DSBT"
@@ -33,7 +34,7 @@ endchoice
# Set up flat binary type
choice
prompt "FLAT Binary type"
-depends on ADK_TARGET_BINFMT_FLAT && !ADK_TARGET_ARCH_H8300
+depends on ADK_TARGET_BINFMT_FLAT && ADK_TARGET_ARCH_M68K || ADK_TARGET_ARCH_BFIN
default ADK_TARGET_BINFMT_FLAT_ONE
config ADK_TARGET_BINFMT_FLAT_ONE
@@ -43,14 +44,12 @@ config ADK_TARGET_BINFMT_FLAT_ONE
config ADK_TARGET_BINFMT_FLAT_SEP_DATA
bool "Separate data and code region"
- depends on ADK_TARGET_ARCH_M68K || ADK_TARGET_ARCH_BFIN
help
Allow for the data and text segments to be separated and placed in
different regions of memory.
config ADK_TARGET_BINFMT_FLAT_SHARED
bool "Shared binary"
- select ADK_TARGET_BINFMT_SUPPORTS_SHARED
help
Allow to load and link indiviual FLAT binaries at run time.