Catch up with an include file change I missed before.
This commit is contained in:
parent
8920da128d
commit
b56fc99724
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: autoconf.c,v 1.8 1995/08/04 07:55:35 thorpej Exp $ */
|
/* $NetBSD: autoconf.c,v 1.9 1995/08/05 16:47:34 thorpej Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1988 University of Utah.
|
* Copyright (c) 1988 University of Utah.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: conf.c,v 1.7 1995/08/04 07:55:37 thorpej Exp $ */
|
/* $NetBSD: conf.c,v 1.8 1995/08/05 16:47:36 thorpej Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1982, 1986, 1990, 1993
|
* Copyright (c) 1982, 1986, 1990, 1993
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: cons.c,v 1.7 1995/08/04 07:55:38 thorpej Exp $ */
|
/* $NetBSD: cons.c,v 1.8 1995/08/05 16:47:37 thorpej Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1988 University of Utah.
|
* Copyright (c) 1988 University of Utah.
|
||||||
|
@ -64,6 +64,7 @@ struct consdev constab[] = {
|
||||||
struct consdev *cn_tab;
|
struct consdev *cn_tab;
|
||||||
int noconsole;
|
int noconsole;
|
||||||
|
|
||||||
|
void
|
||||||
cninit()
|
cninit()
|
||||||
{
|
{
|
||||||
register struct consdev *cp;
|
register struct consdev *cp;
|
||||||
|
@ -82,6 +83,7 @@ cninit()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int
|
||||||
cngetc()
|
cngetc()
|
||||||
{
|
{
|
||||||
|
|
||||||
|
@ -91,6 +93,7 @@ cngetc()
|
||||||
return(0);
|
return(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int
|
||||||
cnputc(c)
|
cnputc(c)
|
||||||
int c;
|
int c;
|
||||||
{
|
{
|
||||||
|
@ -105,4 +108,6 @@ cnputc(c)
|
||||||
#endif
|
#endif
|
||||||
if (cn_tab)
|
if (cn_tab)
|
||||||
(*cn_tab->cn_putc)(0, c);
|
(*cn_tab->cn_putc)(0, c);
|
||||||
|
|
||||||
|
return (0);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: consdefs.h,v 1.1 1995/08/04 07:55:39 thorpej Exp $ */
|
/* $NetBSD: consdefs.h,v 1.2 1995/08/05 16:47:38 thorpej Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1982, 1990, 1993
|
* Copyright (c) 1982, 1990, 1993
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: dca.c,v 1.6 1995/08/04 07:55:40 thorpej Exp $ */
|
/* $NetBSD: dca.c,v 1.7 1995/08/05 16:47:39 thorpej Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1988 University of Utah.
|
* Copyright (c) 1988 University of Utah.
|
||||||
|
@ -42,11 +42,11 @@
|
||||||
|
|
||||||
#ifdef DCACONSOLE
|
#ifdef DCACONSOLE
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
#include <machine/cpu.h>
|
|
||||||
#include <dev/cons.h>
|
#include <dev/cons.h>
|
||||||
|
|
||||||
#include <hp300/dev/dcareg.h>
|
#include <hp300/dev/dcareg.h>
|
||||||
#include <hp300/stand/consdefs.h>
|
#include <hp300/stand/consdefs.h>
|
||||||
|
#include <hp300/stand/samachdep.h>
|
||||||
|
|
||||||
/* If not using 4.4 devs */
|
/* If not using 4.4 devs */
|
||||||
#ifndef dca_reset
|
#ifndef dca_reset
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: dcm.c,v 1.6 1995/08/04 07:55:41 thorpej Exp $ */
|
/* $NetBSD: dcm.c,v 1.7 1995/08/05 16:47:40 thorpej Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1988 University of Utah.
|
* Copyright (c) 1988 University of Utah.
|
||||||
|
@ -47,6 +47,7 @@
|
||||||
#include <hp300/dev/device.h>
|
#include <hp300/dev/device.h>
|
||||||
#include <hp300/dev/dcmreg.h>
|
#include <hp300/dev/dcmreg.h>
|
||||||
#include <hp300/stand/consdefs.h>
|
#include <hp300/stand/consdefs.h>
|
||||||
|
#include <hp300/stand/samachdep.h>
|
||||||
|
|
||||||
struct dcmdevice *dcmcnaddr = NULL;
|
struct dcmdevice *dcmcnaddr = NULL;
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: devopen.c,v 1.4 1995/08/04 07:55:42 thorpej Exp $ */
|
/* $NetBSD: devopen.c,v 1.5 1995/08/05 16:47:41 thorpej Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 1993 John Brezak
|
* Copyright (c) 1993 John Brezak
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: fhpib.c,v 1.4 1994/10/26 07:27:18 cgd Exp $ */
|
/* $NetBSD: fhpib.c,v 1.5 1995/08/05 16:47:42 thorpej Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1982, 1990, 1993
|
* Copyright (c) 1982, 1990, 1993
|
||||||
|
@ -41,7 +41,8 @@
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
#include <hp300/dev/fhpibreg.h>
|
#include <hp300/dev/fhpibreg.h>
|
||||||
#include "hpibvar.h"
|
#include <hp300/stand/hpibvar.h>
|
||||||
|
#include <hp300/stand/samachdep.h>
|
||||||
|
|
||||||
fhpibinit(unit)
|
fhpibinit(unit)
|
||||||
register int unit;
|
register int unit;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: if_le.c,v 1.4 1995/08/04 07:55:43 thorpej Exp $ */
|
/* $NetBSD: if_le.c,v 1.5 1995/08/05 16:47:43 thorpej Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1993 Adam Glass
|
* Copyright (c) 1993 Adam Glass
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: ite.c,v 1.8 1995/08/04 07:55:45 thorpej Exp $ */
|
/* $NetBSD: ite.c,v 1.9 1995/08/05 16:47:44 thorpej Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1988 University of Utah.
|
* Copyright (c) 1988 University of Utah.
|
||||||
|
|
|
@ -323,7 +323,7 @@ main()
|
||||||
bootdev = -1; /* network */
|
bootdev = -1; /* network */
|
||||||
|
|
||||||
printf("\n>> NetBSD NETWORK BOOT HP9000/%s CPU [%s]\n",
|
printf("\n>> NetBSD NETWORK BOOT HP9000/%s CPU [%s]\n",
|
||||||
getmachineid(), "$Revision: 1.4 $");
|
getmachineid(), "$Revision: 1.5 $");
|
||||||
|
|
||||||
s = netif_open(NULL); /* XXX machdep may be "le" */
|
s = netif_open(NULL); /* XXX machdep may be "le" */
|
||||||
if (s < 0)
|
if (s < 0)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: nhpib.c,v 1.4 1994/10/26 07:27:46 cgd Exp $ */
|
/* $NetBSD: nhpib.c,v 1.5 1995/08/05 16:47:46 thorpej Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1982, 1990, 1993
|
* Copyright (c) 1982, 1990, 1993
|
||||||
|
@ -42,6 +42,7 @@
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
#include <hp300/dev/nhpibreg.h>
|
#include <hp300/dev/nhpibreg.h>
|
||||||
#include <hp300/stand/hpibvar.h>
|
#include <hp300/stand/hpibvar.h>
|
||||||
|
#include <hp300/stand/samachdep.h>
|
||||||
|
|
||||||
nhpibinit(unit)
|
nhpibinit(unit)
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: pboot.c,v 1.6 1995/08/04 07:55:47 thorpej Exp $ */
|
/* $NetBSD: pboot.c,v 1.7 1995/08/05 16:47:47 thorpej Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 1982, 1986, 1990, 1993
|
* Copyright (c) 1982, 1986, 1990, 1993
|
||||||
|
@ -36,7 +36,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef lint
|
#ifndef lint
|
||||||
static char rcsid[] = "$NetBSD: pboot.c,v 1.6 1995/08/04 07:55:47 thorpej Exp $";
|
static char rcsid[] = "$NetBSD: pboot.c,v 1.7 1995/08/05 16:47:47 thorpej Exp $";
|
||||||
#endif /* not lint */
|
#endif /* not lint */
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
|
@ -70,7 +70,7 @@ main()
|
||||||
int currname = 0;
|
int currname = 0;
|
||||||
|
|
||||||
printf("\n>> NetBSD BOOT HP9000/%s CPU [%s]\n",
|
printf("\n>> NetBSD BOOT HP9000/%s CPU [%s]\n",
|
||||||
getmachineid(), "$Revision: 1.6 $");
|
getmachineid(), "$Revision: 1.7 $");
|
||||||
|
|
||||||
bdev = B_TYPE(bootdev);
|
bdev = B_TYPE(bootdev);
|
||||||
badapt = B_ADAPTOR(bootdev);
|
badapt = B_ADAPTOR(bootdev);
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: rd.c,v 1.8 1995/08/04 07:55:48 thorpej Exp $ */
|
/* $NetBSD: rd.c,v 1.9 1995/08/05 16:47:49 thorpej Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1988 University of Utah.
|
* Copyright (c) 1988 University of Utah.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: samachdep.h,v 1.4 1994/10/26 07:27:55 cgd Exp $ */
|
/* $NetBSD: samachdep.h,v 1.5 1995/08/05 16:47:50 thorpej Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1982, 1990, 1993
|
* Copyright (c) 1982, 1990, 1993
|
||||||
|
@ -71,6 +71,8 @@ extern int howto;
|
||||||
extern unsigned int bootdev;
|
extern unsigned int bootdev;
|
||||||
extern char *getmachineid();
|
extern char *getmachineid();
|
||||||
|
|
||||||
|
#define DELAY(n) { register int N = cpuspeed * (n); while (--N > 0); }
|
||||||
|
|
||||||
/* bogon grfinfo structure to keep grf_softc happy */
|
/* bogon grfinfo structure to keep grf_softc happy */
|
||||||
struct grfinfo {
|
struct grfinfo {
|
||||||
int grf_foo;
|
int grf_foo;
|
||||||
|
|
Loading…
Reference in New Issue