diff options
author | Nicolas Thill <nico@openwrt.org> | 2006-10-07 10:11:54 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2006-10-07 10:11:54 +0000 |
commit | f0fa4c289a579b962af0bec84bad324356288673 (patch) | |
tree | d3b1eb69ecfa56c577a114ad815ef29c809ffbfb | |
parent | e9dd9d22e76b2a8e593ef069870abf6ac13bb137 (diff) |
fix default ARCH setting
SVN-Revision: 4942
-rw-r--r-- | openwrt/target/Config.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/openwrt/target/Config.in b/openwrt/target/Config.in index 1fe52fd07c..881c6fbc7a 100644 --- a/openwrt/target/Config.in +++ b/openwrt/target/Config.in @@ -271,11 +271,12 @@ config ARCH default "i386" if i386 default "m68k" if m68k default "mips" if mips - default "mipsel" if mipsel || !DEVEL + default "mipsel" if mipsel default "powerpc" if powerpc default "sh3" if sh3 default "sh3eb" if sh3eb default "sh4" if sh4 default "sh4eb" if sh4eb default "sparc" if sparc + default "mipsel" if !DEVEL |