summaryrefslogtreecommitdiff
path: root/openwrt/Config.in
diff options
context:
space:
mode:
authorImre Kaloz <kaloz@openwrt.org>2006-04-14 10:23:54 +0000
committerImre Kaloz <kaloz@openwrt.org>2006-04-14 10:23:54 +0000
commit25bba9554f1383e9c76a1a63eec4659c32b947cf (patch)
treec6dea87c99b5cdc72da3811f3f95227c64f5fb3c /openwrt/Config.in
parent9b93a39c2c52142e7200f9aee8735d5a2b7793d5 (diff)
downloadmtk-20170518-25bba9554f1383e9c76a1a63eec4659c32b947cf.zip
mtk-20170518-25bba9554f1383e9c76a1a63eec4659c32b947cf.tar.gz
mtk-20170518-25bba9554f1383e9c76a1a63eec4659c32b947cf.tar.bz2
add preliminary support for the XScale port, generic endianness indication
SVN-Revision: 3648
Diffstat (limited to 'openwrt/Config.in')
-rw-r--r--openwrt/Config.in16
1 files changed, 13 insertions, 3 deletions
diff --git a/openwrt/Config.in b/openwrt/Config.in
index 99f9c9c..bdc8703 100644
--- a/openwrt/Config.in
+++ b/openwrt/Config.in
@@ -10,6 +10,9 @@ config BR2_HAVE_DOT_CONFIG
bool
default y
+config BR2_BIG_ENDIAN
+ tristate
+
# Supported architectures
config BR2_i386
@@ -17,10 +20,15 @@ config BR2_i386
config BR2_mips
tristate
+ select BR2_BIG_ENDIAN
config BR2_mipsel
tristate
+config BR2_armeb
+ tristate
+ select BR2_BIG_ENDIAN
+
# Unsupported architectures
if CONFIG_DEVEL
@@ -28,32 +36,34 @@ if CONFIG_DEVEL
config BR2_arm
tristate
-config BR2_armeb
- tristate
-
config BR2_cris
tristate
config BR2_m68k
tristate
+ select BR2_BIG_ENDIAN
config BR2_powerpc
tristate
+ select BR2_BIG_ENDIAN
config BR2_sh3
tristate
config BR2_sh3eb
tristate
+ select BR2_BIG_ENDIAN
config BR2_sh4
tristate
config BR2_sh4eb
tristate
+ select BR2_BIG_ENDIAN
config BR2_sparc
tristate
+ select BR2_BIG_ENDIAN
endif