Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
d52a86be
Commit
d52a86be
authored
Aug 01, 2002
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge penguin:v2.5/linux
into home.transmeta.com:/home/torvalds/v2.5/linux
parents
346f2990
4dcd2e25
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
4 deletions
+28
-4
arch/i386/kernel/cpu/intel.c
arch/i386/kernel/cpu/intel.c
+28
-4
No files found.
arch/i386/kernel/cpu/intel.c
View file @
d52a86be
...
...
@@ -232,15 +232,19 @@ static void __init init_intel(struct cpuinfo_x86 *c)
if
(
c
->
x86
==
6
)
{
switch
(
c
->
x86_model
)
{
case
5
:
if
(
l2
==
0
)
p
=
"Celeron (Covington)"
;
if
(
l2
==
256
)
p
=
"Mobile Pentium II (Dixon)"
;
if
(
c
->
x86_mask
==
0
)
{
if
(
l2
==
0
)
p
=
"Celeron (Covington)"
;
else
if
(
l2
==
256
)
p
=
"Mobile Pentium II (Dixon)"
;
}
break
;
case
6
:
if
(
l2
==
128
)
p
=
"Celeron (Mendocino)"
;
else
if
(
c
->
x86_mask
==
0
||
c
->
x86_mask
==
5
)
p
=
"Celeron-A"
;
break
;
case
8
:
...
...
@@ -350,6 +354,26 @@ static struct cpu_dev intel_cpu_dev __initdata = {
[
8
]
"Mobile Pentium MMX"
}
},
{
X86_VENDOR_INTEL
,
6
,
{
[
0
]
"Pentium Pro A-step"
,
[
1
]
"Pentium Pro"
,
[
3
]
"Pentium II (Klamath)"
,
[
4
]
"Pentium II (Deschutes)"
,
[
5
]
"Pentium II (Deschutes)"
,
[
6
]
"Mobile Pentium II"
,
[
7
]
"Pentium III (Katmai)"
,
[
8
]
"Pentium III (Coppermine)"
,
[
10
]
"Pentium III (Cascades)"
,
[
11
]
"Pentium III (Tualatin)"
,
}
},
{
X86_VENDOR_INTEL
,
15
,
{
[
1
]
"Pentium 4 (Unknown)"
,
[
5
]
"Pentium 4 (Foster)"
,
}
},
},
c_init:
init_intel
,
c_identify:
generic_identify
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment