diff --git a/sys/arch/arm/include/Makefile b/sys/arch/arm/include/Makefile index 860aeafae8b5..9c23a9f9ce6f 100644 --- a/sys/arch/arm/include/Makefile +++ b/sys/arch/arm/include/Makefile @@ -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 diff --git a/sys/arch/arm/include/pmap.h b/sys/arch/arm/include/pmap.h new file mode 100644 index 000000000000..056eda22450e --- /dev/null +++ b/sys/arch/arm/include/pmap.h @@ -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 diff --git a/sys/arch/arm/include/vmparam.h b/sys/arch/arm/include/vmparam.h new file mode 100644 index 000000000000..add450863482 --- /dev/null +++ b/sys/arch/arm/include/vmparam.h @@ -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