Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/modules Start modularizing the opencrypto framework.
details: https://anonhg.NetBSD.org/src/rev/24c76678e809
branches: trunk
changeset: 325570:24c76678e809
user: pgoyette <pgoyette%NetBSD.org@localhost>
date: Sun Dec 29 18:20:42 2013 +0000
description:
Start modularizing the opencrypto framework.
diffstat:
sys/modules/crypto/Makefile | 12 ++++++++++++
sys/modules/opencrypto/Makefile | 10 ++++++++++
sys/modules/swcrypto/Makefile | 10 ++++++++++
3 files changed, 32 insertions(+), 0 deletions(-)
diffs (44 lines):
diff -r 1aaa4bdef07a -r 24c76678e809 sys/modules/crypto/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/modules/crypto/Makefile Sun Dec 29 18:20:42 2013 +0000
@@ -0,0 +1,12 @@
+# $NetBSD: Makefile,v 1.1 2013/12/29 18:20:42 pgoyette Exp $
+
+.include "../Makefile.inc"
+
+CPPFLAGS+= -DCOMPAT_50
+
+.PATH: ${S}/opencrypto
+
+KMOD= crypto
+SRCS= cryptodev.c ocryptodev.c
+
+.include <bsd.kmodule.mk>
diff -r 1aaa4bdef07a -r 24c76678e809 sys/modules/opencrypto/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/modules/opencrypto/Makefile Sun Dec 29 18:20:42 2013 +0000
@@ -0,0 +1,10 @@
+# $NetBSD: Makefile,v 1.1 2013/12/29 18:20:42 pgoyette Exp $
+
+.include "../Makefile.inc"
+
+.PATH: ${S}/opencrypto
+
+KMOD= opencrypto
+SRCS= criov.c crypto.c xform.c
+
+.include <bsd.kmodule.mk>
diff -r 1aaa4bdef07a -r 24c76678e809 sys/modules/swcrypto/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/modules/swcrypto/Makefile Sun Dec 29 18:20:42 2013 +0000
@@ -0,0 +1,10 @@
+# $NetBSD: Makefile,v 1.1 2013/12/29 18:20:42 pgoyette Exp $
+
+.include "../Makefile.inc"
+
+.PATH: ${S}/opencrypto
+
+KMOD= swcrypto
+SRCS= aesxcbcmac.c cryptosoft.c deflate.c gmac.c
+
+.include <bsd.kmodule.mk>
Home |
Main Index |
Thread Index |
Old Index