diff options
author | pjd <pjd@FreeBSD.org> | 2006-06-09 17:36:50 +0000 |
---|---|---|
committer | pjd <pjd@FreeBSD.org> | 2006-06-09 17:36:50 +0000 |
commit | 19b40fe9aee31bea62945662f6adb8c92b5208ad (patch) | |
tree | 7efa7f012e177d15b16b3472235ec62fcf739cd2 /sys/modules/geom | |
parent | 50f099ffb391dabf019135aba5a351f7f0c1dc40 (diff) | |
download | FreeBSD-src-19b40fe9aee31bea62945662f6adb8c92b5208ad.zip FreeBSD-src-19b40fe9aee31bea62945662f6adb8c92b5208ad.tar.gz |
Don't expect that 'device random' will compile in those files into the
kernel for us. If random is compiled as kernel module, geom_bde.ko cannot
be loaded.
Reported by: Michal Suszko <michal@dry.pl>
Diffstat (limited to 'sys/modules/geom')
-rw-r--r-- | sys/modules/geom/geom_bde/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/modules/geom/geom_bde/Makefile b/sys/modules/geom/geom_bde/Makefile index 2da5bf4..089126e 100644 --- a/sys/modules/geom/geom_bde/Makefile +++ b/sys/modules/geom/geom_bde/Makefile @@ -1,8 +1,11 @@ # $FreeBSD$ .PATH: ${.CURDIR}/../../../geom/bde +.PATH: ${.CURDIR}/../../../crypto/rijndael +.PATH: ${.CURDIR}/../../../crypto/sha2 KMOD= geom_bde SRCS= g_bde.c g_bde_crypt.c g_bde_lock.c g_bde_work.c +SRCS+= rijndael-alg-fst.c rijndael-api-fst.c sha2.c .include <bsd.kmod.mk> |