diff options
author | wollman <wollman@FreeBSD.org> | 1994-08-10 03:53:33 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1994-08-10 03:53:33 +0000 |
commit | 4131cde3349b22c13a0ed8b8568f3630b0102a4e (patch) | |
tree | ef33d14ec7414bf47066a47b42e7c71d2a6e2715 /sys/amd64 | |
parent | dfdb8b7e14e0cb03339148e47d0f7b772f65f324 (diff) | |
download | FreeBSD-src-4131cde3349b22c13a0ed8b8568f3630b0102a4e.zip FreeBSD-src-4131cde3349b22c13a0ed8b8568f3630b0102a4e.tar.gz |
Some programs (like GNU configure programs) depend on the output of
`uname -s' to be something reasonable (traditionally, `i386') rather
than `PC-Class'. Make it so.
Diffstat (limited to 'sys/amd64')
-rw-r--r-- | sys/amd64/amd64/machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/amd64/amd64/machdep.c b/sys/amd64/amd64/machdep.c index c3fdabcb..c865071 100644 --- a/sys/amd64/amd64/machdep.c +++ b/sys/amd64/amd64/machdep.c @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * from: @(#)machdep.c 7.4 (Berkeley) 6/3/91 - * $Id: machdep.c,v 1.47 1994/08/06 09:15:14 davidg Exp $ + * $Id: machdep.c,v 1.48 1994/08/10 03:51:07 wollman Exp $ */ #include "npx.h" @@ -96,7 +96,7 @@ static void initcpu(void); static int test_page(int *, int); extern int grow(struct proc *,u_int); -char machine[] = "PC-Class"; +char machine[] = "i386"; char cpu_model[sizeof("Pentium") + 1]; #ifndef PANIC_REBOOT_WAIT_TIME |