summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwollman <wollman@FreeBSD.org>1994-08-10 03:53:33 +0000
committerwollman <wollman@FreeBSD.org>1994-08-10 03:53:33 +0000
commit4131cde3349b22c13a0ed8b8568f3630b0102a4e (patch)
treeef33d14ec7414bf47066a47b42e7c71d2a6e2715
parentdfdb8b7e14e0cb03339148e47d0f7b772f65f324 (diff)
downloadFreeBSD-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.
-rw-r--r--sys/amd64/amd64/machdep.c4
-rw-r--r--sys/i386/i386/machdep.c4
2 files changed, 4 insertions, 4 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
diff --git a/sys/i386/i386/machdep.c b/sys/i386/i386/machdep.c
index c3fdabcb..c865071 100644
--- a/sys/i386/i386/machdep.c
+++ b/sys/i386/i386/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
OpenPOWER on IntegriCloud