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 | 8f9b08fbd82f5108202115a3458259b185814ac4 (patch) | |
tree | 3aa3cfaf18d25d3cdc72727ba385e56cce65a85c /target | |
parent | 04d15df54924623b6974e248240b15413a3250f8 (diff) | |
download | upstream-8f9b08fbd82f5108202115a3458259b185814ac4.tar.gz upstream-8f9b08fbd82f5108202115a3458259b185814ac4.tar.bz2 upstream-8f9b08fbd82f5108202115a3458259b185814ac4.zip |
fix default ARCH setting
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4942 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r-- | target/Config.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/target/Config.in b/target/Config.in index 1fe52fd07c..881c6fbc7a 100644 --- a/target/Config.in +++ b/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 |