diff options
author | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2010-04-17 18:30:42 +0000 |
---|---|---|
committer | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2010-04-17 18:30:42 +0000 |
commit | ea4aefb8ce8ab95d109fee5427682a8176a8a58e (patch) | |
tree | 297b94902f9bb23a525481ed4da0562b38093994 /sys | |
parent | b4bb6f6b78b37725869a199107f5c222eb6d9e7e (diff) |
- correctly set cpu_model: instead of a vendor + model, set the cpu type
ok miod@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/landisk/landisk/machdep.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/arch/landisk/landisk/machdep.c b/sys/arch/landisk/landisk/machdep.c index 7a7d5ccf3c1..8ca9505208a 100644 --- a/sys/arch/landisk/landisk/machdep.c +++ b/sys/arch/landisk/landisk/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.17 2008/06/26 05:42:11 ray Exp $ */ +/* $OpenBSD: machdep.c,v 1.18 2010/04/17 18:30:41 jasper Exp $ */ /* $NetBSD: machdep.c,v 1.1 2006/09/01 21:26:18 uwe Exp $ */ /*- @@ -119,8 +119,7 @@ cpu_startup(void) { extern char cpu_model[120]; - /* XXX: show model (LANDISK/USL-5P) */ - strlcpy(cpu_model, "I-O DATA USL-5P", sizeof cpu_model); + strlcpy(cpu_model, "SH4 SH7751R", sizeof cpu_model); sh_startup(); } |