From patchwork Wed Nov 20 11:39:58 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vicente Olivert Riera X-Patchwork-Id: 292742 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 035FF2C00BA for ; Wed, 20 Nov 2013 22:41:32 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 9B6FA32D1E; Wed, 20 Nov 2013 11:41:30 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id dUPIvkMZUwra; Wed, 20 Nov 2013 11:41:28 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 4636B32B00; Wed, 20 Nov 2013 11:41:28 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id CCC8E1BF9C2 for ; Wed, 20 Nov 2013 11:41:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id C712E8DE73 for ; Wed, 20 Nov 2013 11:41:26 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id gr4EeRy2WNmR for ; Wed, 20 Nov 2013 11:41:26 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from multi.imgtec.com (multi.imgtec.com [194.200.65.239]) by whitealder.osuosl.org (Postfix) with ESMTPS id CB8498DE06 for ; Wed, 20 Nov 2013 11:41:25 +0000 (UTC) From: Vicente Olivert Riera To: Date: Wed, 20 Nov 2013 11:39:58 +0000 Message-ID: <1384947598-16486-1-git-send-email-Vincent.Riera@imgtec.com> X-Mailer: git-send-email 1.7.1 MIME-Version: 1.0 X-Originating-IP: [192.168.154.104] X-SEF-Processed: 7_3_0_01192__2013_11_20_11_41_24 Subject: [Buildroot] [PATCH v2] Mark MIPS I, II, III and IV as deprecated X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Deprecate old MIPS ISAs since they are rarely used anymore and they cause multiple build problems for new packages Signed-off-by: Vicente Olivert Riera --- arch/Config.in.mips | 9 +++++---- 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/arch/Config.in.mips b/arch/Config.in.mips index d70fd63..4121200 100644 --- a/arch/Config.in.mips +++ b/arch/Config.in.mips @@ -1,8 +1,7 @@ choice prompt "Target Architecture Variant" depends on BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el - default BR2_mips_3 if BR2_mips - default BR2_mips_1 if BR2_mipsel + default BR2_mips_32 if BR2_mips || BR2_mipsel default BR2_mips_64 if BR2_mips64 || BR2_mips64el help Specific CPU variant to use @@ -12,14 +11,16 @@ choice config BR2_mips_1 bool "mips I (generic)" - depends on !BR2_ARCH_IS_64 + depends on !BR2_ARCH_IS_64 && BR2_DEPRECATED config BR2_mips_2 bool "mips II" - depends on !BR2_ARCH_IS_64 + depends on !BR2_ARCH_IS_64 && BR2_DEPRECATED config BR2_mips_3 bool "mips III" + depends on BR2_DEPRECATED config BR2_mips_4 bool "mips IV" + depends on BR2_DEPRECATED config BR2_mips_32 bool "mips 32" depends on !BR2_ARCH_IS_64