summaryrefslogtreecommitdiff
path: root/target/config/Config.in.endian.choice
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2015-03-07 15:45:20 -0600
committerWaldemar Brodkorb <wbx@openadk.org>2015-03-07 15:46:14 -0600
commit41380967e1b97e2402b9ccc3f280f17377dc7e2c (patch)
treed8b47229b7508347a32ee8dd7d6880e4031988af /target/config/Config.in.endian.choice
parentfd5e1bfc81aa5ea3e3893fc61f8c50509a3487c7 (diff)
xtensa can be used wth big endian mode
Default for Qemu Targets is little endian. Fixup qemu example calling parameters.
Diffstat (limited to 'target/config/Config.in.endian.choice')
-rw-r--r--target/config/Config.in.endian.choice11
1 files changed, 9 insertions, 2 deletions
diff --git a/target/config/Config.in.endian.choice b/target/config/Config.in.endian.choice
index 33eb0cc83..1b97743db 100644
--- a/target/config/Config.in.endian.choice
+++ b/target/config/Config.in.endian.choice
@@ -3,8 +3,14 @@
choice ADK_TARGET_ENDIAN_MODE
prompt "Endianess"
-depends on ADK_TARGET_ARCH_SH || ADK_TARGET_ARCH_MIPS || ADK_TARGET_ARCH_MICROBLAZE \
- || ADK_TARGET_ARCH_MIPS64 || ADK_TARGET_ARCH_ARC || ADK_TARGET_ARCH_ARM || ADK_TARGET_ARCH_C6X
+depends on ADK_TARGET_ARCH_ARC \
+ || ADK_TARGET_ARCH_ARM \
+ || ADK_TARGET_ARCH_C6X \
+ || ADK_TARGET_ARCH_MICROBLAZE \
+ || ADK_TARGET_ARCH_MIPS \
+ || ADK_TARGET_ARCH_MIPS64 \
+ || ADK_TARGET_ARCH_SH \
+ || ADK_TARGET_ARCH_XTENSA
config ADK_TARGET_LITTLE_ENDIAN
bool "Little endian"
@@ -19,5 +25,6 @@ config ADK_TARGET_BIG_ENDIAN
depends on !ADK_TARGET_SYSTEM_RASPBERRY_PI2
depends on !ADK_TARGET_SYSTEM_SOLIDRUN_IMX6
depends on !ADK_TARGET_SYSTEM_QEMU_ARM
+ depends on !ADK_TARGET_SYSTEM_QEMU_XTENSA
endchoice