6cdcc15976
IP fast forwarding, SIOCGIFADDR, setting hardware address (not currently enabled in cm driver), multicasts (experimental) - add ARC_MAX_DATA, use IF_HANDOFF, remove arc_sprintf() and some unused variables - if_simloop logic is made more similar to ethernet - drop not ours packets early (if we are not in promiscous mode) Submitted by: mark tinguely (partially)
26 lines
404 B
Makefile
26 lines
404 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../net
|
|
|
|
KMOD= arcnet
|
|
SRCS= if_arcsubr.c
|
|
SRCS+= opt_inet.h opt_inet6.h opt_ipx.h
|
|
|
|
EXPORT_SYMS= arc_frag_init \
|
|
arc_frag_next \
|
|
arc_ifattach \
|
|
arc_ifdetach \
|
|
arc_input \
|
|
arc_ioctl \
|
|
arc_isphds \
|
|
arc_output \
|
|
arc_storelladdr
|
|
|
|
opt_inet.h opt_inet6.h:
|
|
echo "#define INET 1" > ${.TARGET}
|
|
|
|
opt_ipx.h:
|
|
echo "#define IPX 1" > ${.TARGET}
|
|
|
|
.include <bsd.kmod.mk>
|