head	1.2;
access;
symbols;
locks; strict;
comment	@# @;


1.2
date	2007.04.17.00.35.10;	author thompsa;	state dead;
branches;
next	1.1;

1.1
date	2007.04.10.00.41.31;	author thompsa;	state Exp;
branches;
next	;


desc
@@


1.2
log
@Rename the trunk(4) driver to lagg(4) as it is too similar to vlan trunking.

The name trunk is misused as the networking term trunk means carrying multiple
VLANs over a single connection. The IEEE standard for link aggregation (802.3
section 3) does not talk about 'trunk' at all while it is used throughout IEEE
802.1Q in describing vlans.

The lagg(4) driver provides link aggregation, failover and fault tolerance.

Discussed on:	current@@
@
text
@# $FreeBSD: src/sys/modules/if_trunk/Makefile,v 1.1 2007/04/10 00:41:31 thompsa Exp $

.include <bsd.own.mk>

.PATH:	${.CURDIR}/../../net
KMOD=	if_trunk
SRCS=	if_trunk.c ieee8023ad_lacp.c opt_inet.h opt_inet6.h

.if !defined(KERNBUILDDIR)
opt_inet.h:
	echo "#define INET 1" > ${.TARGET}

.if ${MK_INET6_SUPPORT} != "no"
opt_inet6.h:
	echo "#define INET6 1" > ${.TARGET}
.endif
.endif

.include <bsd.kmod.mk>
@


1.1
log
@Add trunk(4) module.
@
text
@d1 1
a1 1
# $FreeBSD$
@

