diff options
author | kato <kato@FreeBSD.org> | 1999-02-04 16:48:26 +0000 |
---|---|---|
committer | kato <kato@FreeBSD.org> | 1999-02-04 16:48:26 +0000 |
commit | bd9aa5413c70bb486ca9d5acdb8099108f152e5d (patch) | |
tree | 9b19fae005f218ed08abc8bb54d86726b2ca9e30 /sys/amd64/include | |
parent | 20126c009abe081fc875661cbd41dad77a6f62fa (diff) | |
download | FreeBSD-src-bd9aa5413c70bb486ca9d5acdb8099108f152e5d.zip FreeBSD-src-bd9aa5413c70bb486ca9d5acdb8099108f152e5d.tar.gz |
Recognize Pentium II Xeon, Celeron and Pentium III cpus. Because CPU
names are printed on their packages and shown by BIOS, kernel does not
need to show details.
PR: 8751, 9320 and 9463
Diffstat (limited to 'sys/amd64/include')
-rw-r--r-- | sys/amd64/include/cputypes.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/amd64/include/cputypes.h b/sys/amd64/include/cputypes.h index c7bc3fe..ece2509 100644 --- a/sys/amd64/include/cputypes.h +++ b/sys/amd64/include/cputypes.h @@ -24,7 +24,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: cputypes.h,v 1.10 1997/10/28 11:43:50 bde Exp $ + * $Id: cputypes.h,v 1.11 1998/05/22 00:03:23 des Exp $ */ #ifndef _MACHINE_CPUTYPES_H_ @@ -57,6 +57,7 @@ #define CPU_NX586 12 /* NexGen (now AMD) 586 */ #define CPU_CY486DX 13 /* Cyrix 486S/DX/DX2/DX4 */ #define CPU_PII 14 /* Intel Pentium II */ +#define CPU_PIII 15 /* Intel Pentium III */ #ifndef LOCORE struct cpu_nameclass { |