diff options
author | tanimura <tanimura@FreeBSD.org> | 2000-01-15 06:29:03 +0000 |
---|---|---|
committer | tanimura <tanimura@FreeBSD.org> | 2000-01-15 06:29:03 +0000 |
commit | 54059f8cc3c052570a22c7a83652b4534e9c834b (patch) | |
tree | 6ae92a03496ec33abfa7029d066d6c5599ef6a91 | |
parent | 1d9b257b40a77f1b9e03b7e51d004d7c619b8c8c (diff) | |
download | FreeBSD-src-54059f8cc3c052570a22c7a83652b4534e9c834b.zip FreeBSD-src-54059f8cc3c052570a22c7a83652b4534e9c834b.tar.gz |
A processor with the CPUID of 0x?8? is Pentium III.
(aka Coppermine)
Noticed by: Satoshi Sawada <k-sawata@gnoc2.comminet.or.jp>
Reviewd by: Takuma Yamada <fuzzy2@st.rim.or.jp>
-rw-r--r-- | sys/amd64/amd64/identcpu.c | 4 | ||||
-rw-r--r-- | sys/i386/i386/identcpu.c | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/sys/amd64/amd64/identcpu.c b/sys/amd64/amd64/identcpu.c index 9a130f4..5945729 100644 --- a/sys/amd64/amd64/identcpu.c +++ b/sys/amd64/amd64/identcpu.c @@ -214,6 +214,10 @@ printcpuinfo(void) strcat(cpu_model, "Pentium III/Xeon"); cpu = CPU_PIII; break; + case 0x80: + strcat(cpu_model, "Pentium III"); + cpu = CPU_PIII; + break; default: strcat(cpu_model, "Unknown 80686"); break; diff --git a/sys/i386/i386/identcpu.c b/sys/i386/i386/identcpu.c index 9a130f4..5945729 100644 --- a/sys/i386/i386/identcpu.c +++ b/sys/i386/i386/identcpu.c @@ -214,6 +214,10 @@ printcpuinfo(void) strcat(cpu_model, "Pentium III/Xeon"); cpu = CPU_PIII; break; + case 0x80: + strcat(cpu_model, "Pentium III"); + cpu = CPU_PIII; + break; default: strcat(cpu_model, "Unknown 80686"); break; |