summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorDale S. Rahn <rahnds@cvs.openbsd.org>2000-06-15 03:14:00 +0000
committerDale S. Rahn <rahnds@cvs.openbsd.org>2000-06-15 03:14:00 +0000
commit2f59be9495791cfab9e184fd5399cad750302ab3 (patch)
tree07a124fd0d083729ec834232f98e4062e462ffbc /sys
parent047e6b2e6de64229b26d6c37b6079c79a1e3622d (diff)
Recognize PowerPC G4 processor (called it's Motorola name "7400").
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/powerpc/powerpc/cpu.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/powerpc/powerpc/cpu.c b/sys/arch/powerpc/powerpc/cpu.c
index 3ddf225942f..d53d15da666 100644
--- a/sys/arch/powerpc/powerpc/cpu.c
+++ b/sys/arch/powerpc/powerpc/cpu.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cpu.c,v 1.2 1999/07/05 20:21:10 rahnds Exp $ */
+/* $OpenBSD: cpu.c,v 1.3 2000/06/15 03:13:59 rahnds Exp $ */
/*
* Copyright (c) 1997 Per Fogelstrom
@@ -109,6 +109,9 @@ cpuattach(parent, dev, aux)
case 9:
sprintf(cpu_model, "604ev");
break;
+ case 12:
+ sprintf(cpu_model, "7400");
+ break;
case 20:
sprintf(cpu_model, "620");
break;