diff options
| author | Mark Murray <markm@FreeBSD.org> | 2001-01-15 19:35:00 +0000 |
|---|---|---|
| committer | Mark Murray <markm@FreeBSD.org> | 2001-01-15 19:35:00 +0000 |
| commit | c202cd74f8da7a4d07046577410322914f91a2d6 (patch) | |
| tree | 6c1e9838a67e6098e33422a42554538670f4e6e4 | |
| parent | 7afb656f3fa440fdfbf86ab02f7fe06e8d622004 (diff) | |
Notes
| -rw-r--r-- | sys/modules/random/Makefile | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/sys/modules/random/Makefile b/sys/modules/random/Makefile index 8c4676474297..8c6191d203e9 100644 --- a/sys/modules/random/Makefile +++ b/sys/modules/random/Makefile @@ -4,23 +4,11 @@ .PATH: ${.CURDIR}/../../crypto/blowfish KMOD= random -SRCS= bus_if.h device_if.h randomdev.c yarrow.c hash.c +SRCS= randomdev.c yarrow.c hash.c SRCS+= bf_cbc.c bf_skey.c bf_enc.c -SRCS+= vnode_if.h opt_noblockrandom.h +SRCS+= bus_if.h device_if.h vnode_if.h NOMAN= yes CFLAGS+= -I${.CURDIR}/../.. -# 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 -.if defined(NOBLOCKRANDOM) -RANDOM_OPTS= "\#define NOBLOCKRANDOM" -.endif - -opt_noblockrandom.h: - touch opt_noblockrandom.h - echo $(RANDOM_OPTS) >> opt_noblockrandom.h - .include <bsd.kmod.mk> |
