PR 13581
Add empty pmap.h and vmparam.h to make userland happier.
This commit is contained in:
parent
af16732a3a
commit
89415a32e2
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.19 2001/07/14 00:23:09 matt Exp $
|
||||
# $NetBSD: Makefile,v 1.20 2001/07/29 09:50:07 chris Exp $
|
||||
|
||||
KDIR= /sys/arch/arm/include
|
||||
INCSDIR= /usr/include/arm
|
||||
|
@ -15,11 +15,11 @@ INCS= ansi.h aout_machdep.h armreg.h asm.h \
|
|||
limits.h lock.h \
|
||||
math.h \
|
||||
ofisa_machdep.h ofw.h \
|
||||
param.h pci_machdep.h pio.h proc.h profile.h profileio.h pte.h \
|
||||
ptrace.h \
|
||||
param.h pci_machdep.h pio.h pmap.h proc.h profile.h profileio.h \
|
||||
pte.h ptrace.h \
|
||||
reg.h \
|
||||
setjmp.h signal.h stdarg.h sysarch.h \
|
||||
trap.h types.h \
|
||||
varargs.h
|
||||
varargs.h vmparam.h
|
||||
|
||||
.include <bsd.kinc.mk>
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
/* $NetBSD: pmap.h,v 1.1 2001/07/29 09:50:07 chris Exp $ */
|
||||
|
||||
/*
|
||||
* Dummy pmap.h file to keep userland happy
|
||||
*/
|
||||
#ifdef _KERNEL
|
||||
#error "userland pmap.h included by the kernel!"
|
||||
#endif
|
|
@ -0,0 +1,8 @@
|
|||
/* $NetBSD: vmparam.h,v 1.1 2001/07/29 09:50:07 chris Exp $ */
|
||||
|
||||
/*
|
||||
* Dummy vmparam.h file to keep userland happy
|
||||
*/
|
||||
#ifdef _KERNEL
|
||||
#error "userland vmparam.h included by the kernel!"
|
||||
#endif
|
Loading…
Reference in New Issue