I clearly didn't test the modules... add sha256c.c to the various

modules that included sha2.c...
This commit is contained in:
John-Mark Gurney 2014-03-16 01:55:30 +00:00
parent 8083f14fc2
commit f225bcd157
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=263219
4 changed files with 4 additions and 4 deletions

View File

@ -16,7 +16,7 @@ SRCS += cast.c cryptodeflate.c rmd160.c rijndael-alg-fst.c rijndael-api.c
SRCS += skipjack.c bf_enc.c bf_ecb.c bf_skey.c
SRCS += camellia.c camellia-api.c
SRCS += des_ecb.c des_enc.c des_setkey.c
SRCS += sha1.c sha2.c
SRCS += sha1.c sha2.c sha256c.c
SRCS += siphash.c
SRCS += opt_param.h cryptodev_if.h bus_if.h device_if.h
SRCS += opt_ddb.h

View File

@ -6,6 +6,6 @@
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
SRCS+= rijndael-alg-fst.c rijndael-api-fst.c sha2.c sha256c.c
.include <bsd.kmod.mk>

View File

@ -12,7 +12,7 @@ SRCS+= ivy.c
.endif
SRCS+= randomdev_soft.c yarrow.c hash.c
SRCS+= random_harvestq.c live_entropy_sources.c rwfile.c
SRCS+= rijndael-alg-fst.c rijndael-api-fst.c sha2.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}/../..

View File

@ -65,7 +65,7 @@ SRCS+= zmod_subr.c
SRCS+= zutil.c
.PATH: ${.CURDIR}/../../crypto/sha2
SRCS+= sha2.c
SRCS+= sha2.c sha256c.c
.PATH: ${SUNW}/common/zfs
.include "${SUNW}/uts/common/Makefile.files"