48e279eaa7
- Remove duplicated sources between standard part of the kernel and module. In particular, it caused duplicated lock initialization and sysctl registration, both having bad consequences. - Add missed source files to module. - Static part of the kernel provides randomdev module, not random_adaptors. Correct dependencies. - Use cdev modules declaration macros. Approved by: secteam (delphij) Reviewed by: markm
16 lines
371 B
Makefile
16 lines
371 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../dev/random
|
|
.PATH: ${.CURDIR}/../../crypto/rijndael
|
|
.PATH: ${.CURDIR}/../../crypto/sha2
|
|
|
|
KMOD= random
|
|
SRCS= randomdev_soft.c
|
|
SRCS+= yarrow.c fortuna.c hash.c
|
|
SRCS+= rijndael-alg-fst.c rijndael-api-fst.c sha2.c sha256c.c
|
|
SRCS+= bus_if.h device_if.h vnode_if.h opt_cpu.h opt_random.h
|
|
|
|
CFLAGS+= -I${.CURDIR}/../..
|
|
|
|
.include <bsd.kmod.mk>
|