Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-1-4]: src/sys/arch/alpha/alpha pullup 1.21->1.22 (ross)
details: https://anonhg.NetBSD.org/src/rev/fa02e421a2f1
branches: netbsd-1-4
changeset: 469168:fa02e421a2f1
user: perry <perry%NetBSD.org@localhost>
date: Fri Jul 02 17:34:50 1999 +0000
description:
pullup 1.21->1.22 (ross)
diffstat:
sys/arch/alpha/alpha/cpuconf.c | 11 +++++++++--
1 files changed, 9 insertions(+), 2 deletions(-)
diffs (32 lines):
diff -r 57abe696f1ce -r fa02e421a2f1 sys/arch/alpha/alpha/cpuconf.c
--- a/sys/arch/alpha/alpha/cpuconf.c Fri Jul 02 17:33:45 1999 +0000
+++ b/sys/arch/alpha/alpha/cpuconf.c Fri Jul 02 17:34:50 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: cpuconf.c,v 1.20 1999/03/17 19:00:01 drochner Exp $ */
+/* $NetBSD: cpuconf.c,v 1.20.2.1 1999/07/02 17:34:50 perry Exp $ */
/*
* Copyright (c) 1996 Christopher G. Demetriou. All rights reserved.
@@ -135,6 +135,13 @@
#define dec_eb66_init platform_not_configured
#endif
+#include "opt_dec_6600.h"
+#ifdef DEC_6600
+extern void dec_6600_init __P((void));
+#else
+#define dec_6600_init platform_not_configured
+#endif
+
struct cpuinit cpuinit[] = {
cpu_notsupp("???"), /* 0: ??? */
cpu_notsupp("ST_ADU"), /* 1: ST_ADU */
@@ -170,7 +177,7 @@
cpu_notsupp("???"), /* 31: ??? */
cpu_notsupp("ST_DEC_EV56_PBP"), /* 32: ST_DEC_EV56_PBP */
cpu_notsupp("ST_DEC_ALPHAVME_320"), /* 33: ST_DEC_ALPHAVME_320 */
- cpu_notsupp("ST_DEC_6600"), /* 34: ST_DEC_6600 */
+ cpu_init(dec_6600_init,"DEC_6600"), /* 34: ST_6600 */
};
int ncpuinit = (sizeof(cpuinit) / sizeof(cpuinit[0]));
Home |
Main Index |
Thread Index |
Old Index