freebsd-dev/sys/modules/netgraph/Makefile
Lutz Donnerhacke cfd6422a52 netgraph/ng_vlan_rotate: IEEE 802.1ad VLAN manipulation netgraph type
This node is part of an A10-NSP (L2-BSA) development.

Carrier networks tend to stack three or more tags for internal
purposes and therefore hiding the service tags deep inside of the
stack. When decomposing such an access network frame, the processing
order is typically reversed: First distinguish by service, than by
other means.

This new netgragh node allows to bring the relevant VLAN in front (to
the out-most position). This way other netgraph nodes (like ng_vlan)
can operate on this specific type.

Reviewed by:	manpages (gbe), brueffer (manpages), kp
Approved by:	kp (mentor)
MFC after:	1 month
Relnotes:	yes
Sponsored by:	IKS Service GmbH
Differential Revision: https://reviews.freebsd.org/D22076
2021-01-26 16:53:24 +01:00

69 lines
828 B
Makefile

# $Whistle: Makefile,v 1.5 1999/01/24 06:48:37 archie Exp $
# $FreeBSD$
SYSDIR?=${SRCTOP}/sys
.include "${SYSDIR}/conf/kern.opts.mk"
SUBDIR= async \
atm \
atmllc \
${_bluetooth} \
bpf \
bridge \
car \
checksum \
cisco \
deflate \
device \
echo \
eiface \
etf \
ether \
ether_echo \
frame_relay \
gif \
gif_demux \
hole \
hub \
iface \
ip_input \
ipfw \
ksocket \
l2tp \
lmi \
macfilter \
${_mppc} \
nat \
netflow \
netgraph \
one2many \
patch \
pipe \
ppp \
pppoe \
pptpgre \
pred1 \
rfc1490 \
socket \
source \
split \
sppp \
tag \
tcpmss \
tee \
tty \
UI \
vjc \
vlan \
vlan_rotate
.if ${MK_BLUETOOTH} != "no" || defined(ALL_MODULES)
_bluetooth= bluetooth
.endif
.if ${MK_CRYPT} != "no" && exists(${SYSDIR}/crypto/rc4/rc4.c)
_mppc= mppc
.endif
.include <bsd.subdir.mk>