linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: [PATCH] Fix CPU Names in Kconfig
  2003-04-21 20:55 [PATCH] Fix CPU Names in Kconfig Andi Kleen
@ 2003-04-21 20:08 ` Alan Cox
  2003-04-21 22:07   ` Andi Kleen
  2003-04-21 21:05 ` Linus Torvalds
  1 sibling, 1 reply; 5+ messages in thread
From: Alan Cox @ 2003-04-21 20:08 UTC (permalink / raw)
  To: Andi Kleen; +Cc: Linus Torvalds, Linux Kernel Mailing List

On Llu, 2003-04-21 at 21:55, Andi Kleen wrote:
> OldXeon for the P3 based Xeons is a bit confusing, but we cannot 
> fix the Intel marchitecture here.

"Pentium II/III Xeon" v "Pentium IV Xeon"

At least thats what ebay user seem to use to distinguish 8)


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH] Fix CPU Names in Kconfig
@ 2003-04-21 20:55 Andi Kleen
  2003-04-21 20:08 ` Alan Cox
  2003-04-21 21:05 ` Linus Torvalds
  0 siblings, 2 replies; 5+ messages in thread
From: Andi Kleen @ 2003-04-21 20:55 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel


Add Xeon Names to Kconfig.

OldXeon for the P3 based Xeons is a bit confusing, but we cannot 
fix the Intel marchitecture here.

-Andi

diff -u linux-2.5.68-gencpu/arch/i386/Kconfig-o linux-2.5.68-gencpu/arch/i386/Kconfig
--- linux-2.5.68-gencpu/arch/i386/Kconfig-o	2003-04-20 21:24:16.000000000 +0200
+++ linux-2.5.68-gencpu/arch/i386/Kconfig	2003-04-20 21:24:22.000000000 +0200
@@ -183,7 +183,7 @@
 	  optimizations.
 
 config MPENTIUMIII
-	bool "Pentium-III/Celeron(Coppermine)"
+	bool "Pentium-III/Celeron(Coppermine)/OldXeon"
 	help
 	  Select this for Intel chips based on the Pentium-III and
 	  Celeron-Coppermine core.  This option enables use of some
@@ -191,7 +191,7 @@
 	  extensions.
 
 config MPENTIUM4
-	bool "Pentium-4/Celeron(P4-based)"
+	bool "Pentium-4/Celeron(P4-based)/Xeon(P4-based)"
 	help
 	  Select this for Intel Pentium 4 chips.  This includes both
 	  the Pentium 4 and P4-based Celeron chips.  This option

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] Fix CPU Names in Kconfig
  2003-04-21 20:55 [PATCH] Fix CPU Names in Kconfig Andi Kleen
  2003-04-21 20:08 ` Alan Cox
@ 2003-04-21 21:05 ` Linus Torvalds
  1 sibling, 0 replies; 5+ messages in thread
From: Linus Torvalds @ 2003-04-21 21:05 UTC (permalink / raw)
  To: Andi Kleen; +Cc: linux-kernel


On Mon, 21 Apr 2003, Andi Kleen wrote:
> 
> OldXeon for the P3 based Xeons is a bit confusing, but we cannot 
> fix the Intel marchitecture here.

That's wrong. The P4-based Xeons are just "Xeon". The PIII-based Xeons are 
"Pentium III Xeon".

		Linus


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] Fix CPU Names in Kconfig
  2003-04-21 20:08 ` Alan Cox
@ 2003-04-21 22:07   ` Andi Kleen
  2003-04-22 11:33     ` mikpe
  0 siblings, 1 reply; 5+ messages in thread
From: Andi Kleen @ 2003-04-21 22:07 UTC (permalink / raw)
  To: Alan Cox; +Cc: Andi Kleen, Linus Torvalds, Linux Kernel Mailing List

On Mon, Apr 21, 2003 at 10:08:07PM +0200, Alan Cox wrote:
> On Llu, 2003-04-21 at 21:55, Andi Kleen wrote:
> > OldXeon for the P3 based Xeons is a bit confusing, but we cannot 
> > fix the Intel marchitecture here.
> 
> "Pentium II/III Xeon" v "Pentium IV Xeon"
> 
> At least thats what ebay user seem to use to distinguish 8)

The reason I didn't do it is that it cannot be easily typed
in make oldconfig / make config

(but it probably should offer an numeric menu for these cases I guess...) 

Fixed version for Linus.

diff -u linux-2.5.68-gencpu/arch/i386/Kconfig-o linux-2.5.68-gencpu/arch/i386/Kconfig
--- linux-2.5.68-gencpu/arch/i386/Kconfig-o	2003-04-20 21:24:16.000000000 +0200
+++ linux-2.5.68-gencpu/arch/i386/Kconfig	2003-04-22 00:06:44.000000000 +0200
@@ -183,7 +183,7 @@
 	  optimizations.
 
 config MPENTIUMIII
-	bool "Pentium-III/Celeron(Coppermine)"
+	bool "Pentium-III/Celeron(Coppermine)/Pentium III Xeon"
 	help
 	  Select this for Intel chips based on the Pentium-III and
 	  Celeron-Coppermine core.  This option enables use of some
@@ -191,7 +191,7 @@
 	  extensions.
 
 config MPENTIUM4
-	bool "Pentium-4/Celeron(P4-based)"
+	bool "Pentium-4/Celeron(P4-based)/Pentium IV Xeon"
 	help
 	  Select this for Intel Pentium 4 chips.  This includes both
 	  the Pentium 4 and P4-based Celeron chips.  This option




^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] Fix CPU Names in Kconfig
  2003-04-21 22:07   ` Andi Kleen
@ 2003-04-22 11:33     ` mikpe
  0 siblings, 0 replies; 5+ messages in thread
From: mikpe @ 2003-04-22 11:33 UTC (permalink / raw)
  To: Andi Kleen; +Cc: Linux Kernel Mailing List

Andi Kleen writes:
 > On Mon, Apr 21, 2003 at 10:08:07PM +0200, Alan Cox wrote:
 > > On Llu, 2003-04-21 at 21:55, Andi Kleen wrote:
 > > > OldXeon for the P3 based Xeons is a bit confusing, but we cannot 
 > > > fix the Intel marchitecture here.
 > > 
 > > "Pentium II/III Xeon" v "Pentium IV Xeon"
 > > 
 > > At least thats what ebay user seem to use to distinguish 8)
 > 
 > The reason I didn't do it is that it cannot be easily typed
 > in make oldconfig / make config
 > 
 > (but it probably should offer an numeric menu for these cases I guess...) 
 > 
 > Fixed version for Linus.
 > ...

There were also Pentium II Xeons.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2003-04-22 11:21 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-04-21 20:55 [PATCH] Fix CPU Names in Kconfig Andi Kleen
2003-04-21 20:08 ` Alan Cox
2003-04-21 22:07   ` Andi Kleen
2003-04-22 11:33     ` mikpe
2003-04-21 21:05 ` Linus Torvalds

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).