Recognise VAX 6000/400.
This commit is contained in:
parent
5c50116697
commit
6bf625c8c0
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: gencons.c,v 1.24 2000/06/04 02:19:26 matt Exp $ */
|
||||
/* $NetBSD: gencons.c,v 1.25 2000/07/06 17:36:22 ragge Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1994 Gordon W. Ross
|
||||
|
@ -271,6 +271,7 @@ gencnprobe(cndev)
|
|||
struct consdev *cndev;
|
||||
{
|
||||
if ((vax_cputype < VAX_TYP_UV1) || /* All older has MTPR console */
|
||||
(vax_boardtype == VAX_BTYP_9RR) ||
|
||||
(vax_boardtype == VAX_BTYP_630) ||
|
||||
(vax_boardtype == VAX_BTYP_660) ||
|
||||
(vax_boardtype == VAX_BTYP_670) ||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: locore.c,v 1.48 2000/06/29 07:14:28 mrg Exp $ */
|
||||
/* $NetBSD: locore.c,v 1.49 2000/07/06 17:36:23 ragge Exp $ */
|
||||
/*
|
||||
* Copyright (c) 1994, 1998 Ludd, University of Lule}, Sweden.
|
||||
* All rights reserved.
|
||||
|
@ -68,6 +68,7 @@ extern struct cpu_dep ka780_calls;
|
|||
extern struct cpu_dep ka750_calls;
|
||||
extern struct cpu_dep ka860_calls;
|
||||
extern struct cpu_dep ka820_calls;
|
||||
extern struct cpu_dep ka6400_calls;
|
||||
extern struct cpu_dep ka88_calls;
|
||||
extern struct cpu_dep ka43_calls;
|
||||
extern struct cpu_dep ka46_calls;
|
||||
|
@ -230,6 +231,12 @@ start(struct rpb *prpb)
|
|||
strcpy(cpu_model, "VAX 8800");
|
||||
dep_call = &ka88_calls;
|
||||
break;
|
||||
#endif
|
||||
#if VAX6400
|
||||
case VAX_BTYP_9RR:
|
||||
/* cpu_model set in steal_pages */
|
||||
dep_call = &ka6400_calls;
|
||||
break;
|
||||
#endif
|
||||
default:
|
||||
/* CPU not supported, just give up */
|
||||
|
|
Loading…
Reference in New Issue