Module Name:    src
Committed By:   pgoyette
Date:           Wed Jan 23 02:15:02 UTC 2019

Modified Files:
        src/sys/modules/compat_50 [pgoyette-compat]: Makefile
        src/sys/modules/compat_80 [pgoyette-compat]: Makefile

Log Message:
Ensure that all the compat code gets into the appropriate modules, even
compat code that doesn't live in sys/compat


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.13 -r1.1.2.14 src/sys/modules/compat_50/Makefile
cvs rdiff -u -r1.1.2.4 -r1.1.2.5 src/sys/modules/compat_80/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/modules/compat_50/Makefile
diff -u src/sys/modules/compat_50/Makefile:1.1.2.13 src/sys/modules/compat_50/Makefile:1.1.2.14
--- src/sys/modules/compat_50/Makefile:1.1.2.13	Tue Jan 15 01:12:30 2019
+++ src/sys/modules/compat_50/Makefile	Wed Jan 23 02:15:02 2019
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.1.2.13 2019/01/15 01:12:30 pgoyette Exp $
+#	$NetBSD: Makefile,v 1.1.2.14 2019/01/23 02:15:02 pgoyette Exp $
 
 .include "../Makefile.inc"
 
@@ -31,4 +31,12 @@ SRCS+=  wsevent_50.c
 
 SRCS+=	vnd_50.c
 
+.PATH:	${S}/dev/raidframe
+
+SRCS+=	rf_compat_50.c
+
+.PATH:	${S}/opencrypto
+
+SRCS+=	ocryptodev.c
+
 .include <bsd.kmodule.mk>

Index: src/sys/modules/compat_80/Makefile
diff -u src/sys/modules/compat_80/Makefile:1.1.2.4 src/sys/modules/compat_80/Makefile:1.1.2.5
--- src/sys/modules/compat_80/Makefile:1.1.2.4	Wed Oct  3 22:50:50 2018
+++ src/sys/modules/compat_80/Makefile	Wed Jan 23 02:15:02 2019
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.1.2.4 2018/10/03 22:50:50 pgoyette Exp $
+#	$NetBSD: Makefile,v 1.1.2.5 2019/01/23 02:15:02 pgoyette Exp $
 
 .include "../Makefile.inc"
 
@@ -11,4 +11,8 @@ CPPFLAGS+=	-DCOMPAT_80
 SRCS+=	compat_80_mod.c
 SRCS+=	kern_mod_80.c
 
+.PATH:	${S}/dev/raidframe
+
+SRCS+=	rf_compat_80.c
+
 .include <bsd.kmodule.mk>

Reply via email to