diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-01-31 05:22:19 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-01-31 05:22:19 +0000 |
commit | f59a77bc7c7a0a09450ee01f47e13bbb15058207 (patch) | |
tree | cf40196d2626d2c8fdecbdaf194205cad4526580 | |
parent | 068bac7aa4dadb70e276276563330ff714b17593 (diff) |
from ragge; print cpu model
-rw-r--r-- | sys/arch/vax/vax/uvaxII.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/vax/vax/uvaxII.c b/sys/arch/vax/vax/uvaxII.c index 90dee5c0877..d209d56493e 100644 --- a/sys/arch/vax/vax/uvaxII.c +++ b/sys/arch/vax/vax/uvaxII.c @@ -1,4 +1,4 @@ -/* $NetBSD: uvaxII.c,v 1.4 1995/12/13 18:50:11 ragge Exp $ */ +/* $NetBSD: uvaxII.c,v 1.5 1996/01/28 11:45:07 ragge Exp $ */ /*- * Copyright (c) 1988 The Regents of the University of California. @@ -75,6 +75,7 @@ uvaxII_conf(parent, self, aux) break; }; strcpy(cpu_model, "MicroVAX 78032/78132"); + printf(": %s\n", cpu_model); } uvaxII_clock() |