mirror of
https://github.com/opnsense/src.git
synced 2026-03-28 13:43:12 -04:00
This change adds Hyper-V socket feature in FreeBSD. New socket address family AF_HYPERV and its kernel support are added. Submitted by: Wei Hu <weh@microsoft.com> Reviewed by: Dexuan Cui <decui@microsoft.com> Relnotes: yes Sponsored by: Microsoft Differential Revision: https://reviews.freebsd.org/D24061
13 lines
245 B
Makefile
13 lines
245 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/dev/hyperv/hvsock
|
|
|
|
KMOD= hv_sock
|
|
SRCS= hv_sock.c
|
|
SRCS+= hv_sock.h
|
|
|
|
CFLAGS+= -I${SRCTOP}/sys/dev/hyperv/include \
|
|
-I${SRCTOP}/sys/dev/hyperv/vmbus \
|
|
-I${SRCTOP}/sys/dev/hyperv/hvsock
|
|
|
|
.include <bsd.kmod.mk>
|