Make kernel compile & run again after latest config changes.
This commit is contained in:
parent
afb1a37379
commit
01eb1bb746
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: kdb.c,v 1.9 1998/01/12 20:52:30 thorpej Exp $ */
|
/* $NetBSD: kdb.c,v 1.10 1998/01/18 22:09:16 ragge Exp $ */
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1996 Ludd, University of Lule}, Sweden.
|
* Copyright (c) 1996 Ludd, University of Lule}, Sweden.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
|
@ -44,6 +44,7 @@
|
||||||
#include <sys/buf.h>
|
#include <sys/buf.h>
|
||||||
#include <sys/device.h>
|
#include <sys/device.h>
|
||||||
#include <sys/proc.h>
|
#include <sys/proc.h>
|
||||||
|
#include <sys/user.h>
|
||||||
#include <sys/malloc.h>
|
#include <sys/malloc.h>
|
||||||
|
|
||||||
#include <vm/vm.h>
|
#include <vm/vm.h>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: mba.c,v 1.11 1998/01/12 20:52:39 thorpej Exp $ */
|
/* $NetBSD: mba.c,v 1.12 1998/01/18 22:09:15 ragge Exp $ */
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1994, 1996 Ludd, University of Lule}, Sweden.
|
* Copyright (c) 1994, 1996 Ludd, University of Lule}, Sweden.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
|
@ -85,7 +85,7 @@ struct cfattach mba_sbi_ca = {
|
||||||
sizeof(struct mba_softc), mbamatch, mbaattach
|
sizeof(struct mba_softc), mbamatch, mbaattach
|
||||||
};
|
};
|
||||||
|
|
||||||
extern cfdriver mba_cd;
|
extern struct cfdriver mba_cd;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Look if this is a massbuss adapter.
|
* Look if this is a massbuss adapter.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: uba.c,v 1.30 1998/01/12 20:52:50 thorpej Exp $ */
|
/* $NetBSD: uba.c,v 1.31 1998/01/18 22:09:14 ragge Exp $ */
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1996 Jonathan Stone.
|
* Copyright (c) 1996 Jonathan Stone.
|
||||||
* Copyright (c) 1994, 1996 Ludd, University of Lule}, Sweden.
|
* Copyright (c) 1994, 1996 Ludd, University of Lule}, Sweden.
|
||||||
|
@ -832,6 +832,7 @@ uba_attach(sc, iopagephys)
|
||||||
vm_offset_t mini, maxi;
|
vm_offset_t mini, maxi;
|
||||||
extern struct ivec_dsp idsptch;
|
extern struct ivec_dsp idsptch;
|
||||||
|
|
||||||
|
uba_cd.cd_indirect = 1; /* XXX */
|
||||||
/*
|
/*
|
||||||
* Set last free interrupt vector for devices with
|
* Set last free interrupt vector for devices with
|
||||||
* programmable interrupt vectors. Use is to decrement
|
* programmable interrupt vectors. Use is to decrement
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: disksubr.c,v 1.14 1998/01/03 00:24:42 thorpej Exp $ */
|
/* $NetBSD: disksubr.c,v 1.15 1998/01/18 22:09:13 ragge Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1982, 1986, 1988 Regents of the University of California.
|
* Copyright (c) 1982, 1986, 1988 Regents of the University of California.
|
||||||
|
@ -42,6 +42,7 @@
|
||||||
#include <sys/disklabel.h>
|
#include <sys/disklabel.h>
|
||||||
#include <sys/syslog.h>
|
#include <sys/syslog.h>
|
||||||
#include <sys/proc.h>
|
#include <sys/proc.h>
|
||||||
|
#include <sys/user.h>
|
||||||
|
|
||||||
#include <vm/vm.h>
|
#include <vm/vm.h>
|
||||||
#include <vm/vm_kern.h>
|
#include <vm/vm_kern.h>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: uba.c,v 1.30 1998/01/12 20:52:50 thorpej Exp $ */
|
/* $NetBSD: uba.c,v 1.31 1998/01/18 22:09:14 ragge Exp $ */
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1996 Jonathan Stone.
|
* Copyright (c) 1996 Jonathan Stone.
|
||||||
* Copyright (c) 1994, 1996 Ludd, University of Lule}, Sweden.
|
* Copyright (c) 1994, 1996 Ludd, University of Lule}, Sweden.
|
||||||
|
@ -832,6 +832,7 @@ uba_attach(sc, iopagephys)
|
||||||
vm_offset_t mini, maxi;
|
vm_offset_t mini, maxi;
|
||||||
extern struct ivec_dsp idsptch;
|
extern struct ivec_dsp idsptch;
|
||||||
|
|
||||||
|
uba_cd.cd_indirect = 1; /* XXX */
|
||||||
/*
|
/*
|
||||||
* Set last free interrupt vector for devices with
|
* Set last free interrupt vector for devices with
|
||||||
* programmable interrupt vectors. Use is to decrement
|
* programmable interrupt vectors. Use is to decrement
|
||||||
|
|
Loading…
Reference in New Issue