mirror of
https://github.com/opnsense/src.git
synced 2026-03-03 05:41:01 -05:00
For most users it's not needed to boot and they are also available in the FreeBSD-rescue package in case an update break and FreeBSD-geom package isn't updated correctly. Differential Revision: https://reviews.freebsd.org/D36224
18 lines
297 B
Makefile
18 lines
297 B
Makefile
# $FreeBSD$
|
|
|
|
PACKAGE=geom
|
|
.PATH: ${.CURDIR:H:H}/misc ${SRCTOP}/sys/geom/eli ${SRCTOP}/sys/crypto/sha2
|
|
|
|
GEOM_CLASS= eli
|
|
SRCS= g_eli_crypto.c
|
|
SRCS+= g_eli_hmac.c
|
|
SRCS+= g_eli_key.c
|
|
SRCS+= pkcs5v2.c
|
|
SRCS+= sha256c.c
|
|
SRCS+= sha512c.c
|
|
|
|
LIBADD= md crypto
|
|
|
|
CFLAGS+=-I${SRCTOP}/sys
|
|
|
|
.include <bsd.lib.mk>
|