it may be plugged into a kernel that supports VLANs. If the kernel is not VLAN aware, things will still work as before. Modules don't really have option support, so this is somewhat of a hack.
13 lines
218 B
Makefile
13 lines
218 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../dev/fxp
|
|
|
|
KMOD= if_fxp
|
|
SRCS= if_fxp.c opt_bdg.h vlan.h device_if.h bus_if.h pci_if.h miibus_if.h
|
|
|
|
CLEANFILES= vlan.h
|
|
vlan.h:
|
|
echo '#define NVLAN 1' > vlan.h
|
|
|
|
.include <bsd.kmod.mk>
|