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 Add init glue for the DEC 2000/300 (Jen...



details:   https://anonhg.NetBSD.org/src/rev/5b23bbabfe1d
branches:  trunk
changeset: 487703:5b23bbabfe1d
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Sun Jun 11 21:19:23 2000 +0000

description:
Add init glue for the DEC 2000/300 (Jensen).

diffstat:

 sys/arch/alpha/alpha/cpuconf.c |  11 +++++++++--
 1 files changed, 9 insertions(+), 2 deletions(-)

diffs (30 lines):

diff -r b0ee14882a67 -r 5b23bbabfe1d sys/arch/alpha/alpha/cpuconf.c
--- a/sys/arch/alpha/alpha/cpuconf.c    Sun Jun 11 18:09:34 2000 +0000
+++ b/sys/arch/alpha/alpha/cpuconf.c    Sun Jun 11 21:19:23 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: cpuconf.c,v 1.24 2000/06/01 03:41:23 thorpej Exp $ */
+/* $NetBSD: cpuconf.c,v 1.25 2000/06/11 21:19:23 thorpej Exp $ */
 
 /*-
  * Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -192,12 +192,19 @@
 #define        api_up1000_init         platform_not_configured
 #endif
 
+#include "opt_dec_2000_300.h"
+#ifdef DEC_2000_300
+extern void dec_2000_300_init __P((void));
+#else
+#define        dec_2000_300_init       platform_not_configured
+#endif
+
 static const struct cpuinit cpuinit[] = {
        cpu_notsupp(ST_ADU, "Alpha Demo Unit"),
        cpu_notsupp(ST_DEC_4000, "DEC 4000 (``Cobra'')"),
        cpu_notsupp(ST_DEC_7000, "DEC 7000 (``Ruby'')"),
        cpu_init(ST_DEC_3000_500, dec_3000_500_init, "DEC_3000_500"),
-       cpu_notsupp(ST_DEC_2000_300, "DEC 2000/300 (``Jensen'')"),
+       cpu_init(ST_DEC_2000_300, dec_2000_300_init, "DEC_2000_300"),
        cpu_init(ST_DEC_3000_300, dec_3000_300_init, "DEC_3000_300"),
        cpu_init(ST_AVALON_A12, avalon_a12_init, "AVALON_A12"),
        cpu_init(ST_DEC_2100_A500, dec_2100_a500_init, "DEC_2100_A500"),



Home | Main Index | Thread Index | Old Index