diff options
author | kaloz <kaloz@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-04-14 10:23:54 +0000 |
---|---|---|
committer | kaloz <kaloz@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-04-14 10:23:54 +0000 |
commit | b14d40272eb178a72870b90d65b953532eccf05d (patch) | |
tree | 7edfadeab9f6a1bb05b76aee93d1638515f4b284 /openwrt/Config.in | |
parent | c13db991020468cf635db9febf5581d68934d658 (diff) |
add preliminary support for the XScale port, generic endianness indication
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@3648 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/Config.in')
-rw-r--r-- | openwrt/Config.in | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/openwrt/Config.in b/openwrt/Config.in index 99f9c9c34e..bdc8703e68 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 |