2000-06-25 10:12:33 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
2001-01-06 14:00:42 +00:00
|
|
|
.PATH: ${.CURDIR}/../../dev/random
|
|
|
|
.PATH: ${.CURDIR}/../../crypto/blowfish
|
|
|
|
|
|
|
|
KMOD= random
|
|
|
|
SRCS= bus_if.h device_if.h randomdev.c yarrow.c hash.c
|
|
|
|
SRCS+= bf_cbc.c bf_skey.c bf_enc.c
|
|
|
|
SRCS+= vnode_if.h opt_noblockrandom.h
|
|
|
|
NOMAN= yes
|
|
|
|
|
|
|
|
CFLAGS+= -I${.CURDIR}/../..
|
2000-06-25 10:12:33 +00:00
|
|
|
|
2000-12-02 18:29:18 +00:00
|
|
|
# Uncomment the below macro to make a /dev/random that will not block at
|
|
|
|
# boot time. Useful for personal workstations and the like where reboot
|
|
|
|
# speed is paramount.
|
|
|
|
#NOBLOCKRANDOM= yes
|
2000-10-27 06:06:04 +00:00
|
|
|
.if defined(NOBLOCKRANDOM)
|
|
|
|
RANDOM_OPTS= "\#define NOBLOCKRANDOM"
|
|
|
|
.endif
|
|
|
|
|
|
|
|
opt_noblockrandom.h:
|
|
|
|
touch opt_noblockrandom.h
|
|
|
|
echo $(RANDOM_OPTS) >> opt_noblockrandom.h
|
|
|
|
|
2000-06-25 10:12:33 +00:00
|
|
|
.include <bsd.kmod.mk>
|