Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758063Ab1D1JC2 (ORCPT ); Thu, 28 Apr 2011 05:02:28 -0400 Received: from vpn.id2.novell.com ([195.33.99.129]:41120 "EHLO vpn.id2.novell.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757486Ab1D1JC0 convert rfc822-to-8bit (ORCPT ); Thu, 28 Apr 2011 05:02:26 -0400 Message-Id: <4DB9498B020000780003E9A0@vpn.id2.novell.com> X-Mailer: Novell GroupWise Internet Agent 8.0.1 Date: Thu, 28 Apr 2011 10:03:39 +0100 From: "Jan Beulich" To: , , Cc: Subject: [PATCH, v2] i386: tighten dependencies of CPU_SUP_*_32 Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 8BIT Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1320 Lines: 40 Building in support for either of these CPUs is pointless when e.g. M686 was selected (as such a kernel would use cmov instructions, which aren't available on these older CPUs). v2: Drop (inapprorpiate) change to CPU_SUP_TRANSMETA_32. Signed-off-by: Jan Beulich --- arch/x86/Kconfig.cpu | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- 2.6.39-rc5/arch/x86/Kconfig.cpu +++ 2.6.39-rc5-i386-cpu-sup-dependencies/arch/x86/Kconfig.cpu @@ -440,7 +440,7 @@ config CPU_SUP_INTEL config CPU_SUP_CYRIX_32 default y bool "Support Cyrix processors" if PROCESSOR_SELECT - depends on !64BIT + depends on M386 || M486 || M586 || M586TSC || M586MMX || (EXPERT && !64BIT) ---help--- This enables detection, tunings and quirks for Cyrix processors @@ -494,7 +494,7 @@ config CPU_SUP_TRANSMETA_32 config CPU_SUP_UMC_32 default y bool "Support UMC processors" if PROCESSOR_SELECT - depends on !64BIT + depends on M386 || M486 || (EXPERT && !64BIT) ---help--- This enables detection, tunings and quirks for UMC processors -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/