Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/alpha/alpha Turn on dec_6600_init, "DEC_6600".
details: https://anonhg.NetBSD.org/src/rev/08db77bfeb20
branches: trunk
changeset: 474134:08db77bfeb20
user: ross <ross%NetBSD.org@localhost>
date: Tue Jun 29 06:50:41 1999 +0000
description:
Turn on dec_6600_init, "DEC_6600".
diffstat:
sys/arch/alpha/alpha/cpuconf.c | 11 +++++++++--
1 files changed, 9 insertions(+), 2 deletions(-)
diffs (32 lines):
diff -r 9d55335a3a29 -r 08db77bfeb20 sys/arch/alpha/alpha/cpuconf.c
--- a/sys/arch/alpha/alpha/cpuconf.c Tue Jun 29 06:49:36 1999 +0000
+++ b/sys/arch/alpha/alpha/cpuconf.c Tue Jun 29 06:50:41 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: cpuconf.c,v 1.21 1999/04/10 01:21:37 cgd Exp $ */
+/* $NetBSD: cpuconf.c,v 1.22 1999/06/29 06:50:41 ross 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