4d87a031c0
from many folk. o The reseed process is now a kthread. With SMPng, kthreads are pre-emptive, so the annoying jerkiness of the mouse is gone. o The data structures are protected by mutexes now, not splfoo()/splx(). o The cryptographic routines are broken out into their own subroutines. this facilitates review, and possible replacement if that is ever found necessary. Thanks to: kris, green, peter, jasone, grog, jhb Forgotten to thank: You know who you are; no offense intended.
12 lines
262 B
Makefile
12 lines
262 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../dev/randomdev
|
|
.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
|
|
CFLAGS += -I${.CURDIR}/../..
|
|
NOMAN = yes
|
|
|
|
.include <bsd.kmod.mk>
|