mirror of
https://github.com/opnsense/src.git
synced 2026-03-20 18:02:17 -04:00
This code was used by the first incarnation of wg(4) and is dead ever sincef187d6dfbfhas removed the latter again. Moreover, this code matched iflib(4) like a square peg fits in a round hole, was incomplete and despite some hacks still tailored to VPC and wg(4) but not generic. In effect, this reverts the following:09f6ff4f1a(w/ its "ancillary changes")9aeca213241f93e931d90f9544d03e0dd691b412Reviewed by: erj, kbowling Differential Revision: <https://reviews.freebsd.org/D41196>
15 lines
253 B
Makefile
15 lines
253 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/net
|
|
|
|
KMOD= iflib
|
|
SRCS= \
|
|
iflib.c \
|
|
mp_ring.c
|
|
SRCS+= ifdi_if.c
|
|
SRCS+= device_if.h bus_if.h pci_if.h pci_iov_if.h ifdi_if.h
|
|
SRCS+= opt_acpi.h opt_inet.h opt_inet6.h opt_sched.h
|
|
|
|
EXPORT_SYMS= YES
|
|
|
|
.include <bsd.kmod.mk>
|