Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/arm/include PR 13581



details:   https://anonhg.NetBSD.org/src/rev/0681517b6e5f
branches:  trunk
changeset: 513357:0681517b6e5f
user:      chris <chris%NetBSD.org@localhost>
date:      Sun Jul 29 09:50:07 2001 +0000

description:
PR 13581
Add empty pmap.h and vmparam.h to make userland happier.

diffstat:

 sys/arch/arm/include/Makefile  |  8 ++++----
 sys/arch/arm/include/pmap.h    |  8 ++++++++
 sys/arch/arm/include/vmparam.h |  8 ++++++++
 3 files changed, 20 insertions(+), 4 deletions(-)

diffs (48 lines):

diff -r 378b7f6bfdbc -r 0681517b6e5f sys/arch/arm/include/Makefile
--- a/sys/arch/arm/include/Makefile     Sun Jul 29 08:37:56 2001 +0000
+++ b/sys/arch/arm/include/Makefile     Sun Jul 29 09:50:07 2001 +0000
@@ -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 @@
        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>
diff -r 378b7f6bfdbc -r 0681517b6e5f sys/arch/arm/include/pmap.h
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/arch/arm/include/pmap.h       Sun Jul 29 09:50:07 2001 +0000
@@ -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 -r 378b7f6bfdbc -r 0681517b6e5f sys/arch/arm/include/vmparam.h
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/arch/arm/include/vmparam.h    Sun Jul 29 09:50:07 2001 +0000
@@ -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



Home | Main Index | Thread Index | Old Index