From 0ce5563488d319ecdaaf93ad9ef1c9c587231d92 Mon Sep 17 00:00:00 2001 From: ross Date: Fri, 26 Jun 1998 21:49:25 +0000 Subject: [PATCH] Turn on ST_DEC_1000, but reuse the 1000a init and console routines. --- sys/arch/alpha/alpha/cpuconf.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/sys/arch/alpha/alpha/cpuconf.c b/sys/arch/alpha/alpha/cpuconf.c index ec0c71f71c44..fb3f0e09f104 100644 --- a/sys/arch/alpha/alpha/cpuconf.c +++ b/sys/arch/alpha/alpha/cpuconf.c @@ -1,4 +1,4 @@ -/* $NetBSD: cpuconf.c,v 1.16 1998/06/26 05:42:34 thorpej Exp $ */ +/* $NetBSD: cpuconf.c,v 1.17 1998/06/26 21:49:25 ross Exp $ */ /* * Copyright (c) 1996 Christopher G. Demetriou. All rights reserved. @@ -113,8 +113,9 @@ extern void dec_550_init __P((void)); #define dec_550_init platform_not_configured #endif +#include "opt_dec_1000.h" #include "opt_dec_1000a.h" -#ifdef DEC_1000A +#if defined(DEC_1000) || defined(DEC_1000A) extern void dec_1000a_init __P((void)); #else #define dec_1000a_init platform_not_configured @@ -145,7 +146,7 @@ struct cpuinit cpuinit[] = { cpu_notsupp("ST_DEC_MUSTANG"), /* 14: ST_DEC_MUSTANG */ cpu_init(dec_kn20aa_init,"DEC_KN20AA"), /* 15: ST_DEC_KN20AA */ cpu_notsupp("???"), /* 16: ??? */ - cpu_notsupp("ST_DEC_1000"), /* 17: ST_DEC_1000 */ + cpu_init(dec_1000a_init,"ST_DEC_1000"), /* 17: ST_DEC_1000 */ cpu_notsupp("???"), /* 18: ??? */ cpu_notsupp("ST_EB66"), /* 19: ST_EB66 */ cpu_init(dec_eb64plus_init,"DEC_EB64PLUS"), /* 20: ST_EB64P */