diff options
author | 2000-06-15 03:13:59 +0000 | |
---|---|---|
committer | 2000-06-15 03:13:59 +0000 | |
commit | 9c29d07b4dd0cc7772dc9bddbf1428c5daa84fa0 (patch) | |
tree | 911792ef0cd9bb600649f098e3e1673187e00b4b | |
parent | #if 0 support for WSCONS, not currently used and wscons has changed since (diff) | |
download | wireguard-openbsd-9c29d07b4dd0cc7772dc9bddbf1428c5daa84fa0.tar.xz wireguard-openbsd-9c29d07b4dd0cc7772dc9bddbf1428c5daa84fa0.zip |
Recognize PowerPC G4 processor (called it's Motorola name "7400").
-rw-r--r-- | sys/arch/powerpc/powerpc/cpu.c | 5 |
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; |