Allow if_ef driver to be compiled into kernel.

This commit is contained in:
bp 2000-01-23 03:35:11 +00:00
parent 835613f46a
commit 166b3be9e3
7 changed files with 39 additions and 18 deletions

View File

@ -446,6 +446,8 @@ device mn0 # Munich32x/Falc54 Nx64kbit/sec cards.
# IPv6 over IPv6 tunneling.
# The `faith' pseudo-device captures packets sent to it and diverts them
# to the IPv4/IPv6 translation daemon.
# The `ef' pseudo-device provides support for multiple ethernet frame types
# specified via ETHER_* options. See ef(4) for details.
#
# The PPP_BSDCOMP option enables support for compress(1) style entire
# packet compression, the PPP_DEFLATE is for zlib/gzip style compression.
@ -467,6 +469,12 @@ options PPP_BSDCOMP #PPP BSD-compress support
options PPP_DEFLATE #PPP zlib/deflate/gzip support
options PPP_FILTER #enable bpf filtering (needs bpf)
pseudo-device ef # Multiple ethernet frames support
options ETHER_II # enable Ethernet_II frame
options ETHER_8023 # enable Ethernet_802.3 (Novell) frame
options ETHER_8022 # enable Ethernet_802.2 frame
options ETHER_SNAP # enable Ethernet_802.2/SNAP frame
# for IPv6
pseudo-device gif 4 #IPv6 and IPv4 tunneling
pseudo-device faith 1 #for IPv6 and IPv4 translation

View File

@ -529,6 +529,7 @@ net/bsd_comp.c optional ppp_bsdcomp
net/if.c standard
net/if_atmsubr.c optional atm
net/if_disc.c optional disc
net/if_ef.c optional ef
net/if_ethersubr.c optional ether
net/if_iso88025subr.c optional token
net/if_faith.c optional faith

View File

@ -231,6 +231,10 @@ BOOTP_NFSROOT opt_bootp.h
BOOTP_NFSV3 opt_bootp.h
BOOTP_WIRED_TO opt_bootp.h
BRIDGE opt_bdg.h
ETHER_II opt_ef.h
ETHER_8023 opt_ef.h
ETHER_8022 opt_ef.h
ETHER_SNAP opt_ef.h
MROUTING opt_mrouting.h
INET opt_inet.h
INET6 opt_inet6.h

View File

@ -446,6 +446,8 @@ device mn0 # Munich32x/Falc54 Nx64kbit/sec cards.
# IPv6 over IPv6 tunneling.
# The `faith' pseudo-device captures packets sent to it and diverts them
# to the IPv4/IPv6 translation daemon.
# The `ef' pseudo-device provides support for multiple ethernet frame types
# specified via ETHER_* options. See ef(4) for details.
#
# The PPP_BSDCOMP option enables support for compress(1) style entire
# packet compression, the PPP_DEFLATE is for zlib/gzip style compression.
@ -467,6 +469,12 @@ options PPP_BSDCOMP #PPP BSD-compress support
options PPP_DEFLATE #PPP zlib/deflate/gzip support
options PPP_FILTER #enable bpf filtering (needs bpf)
pseudo-device ef # Multiple ethernet frames support
options ETHER_II # enable Ethernet_II frame
options ETHER_8023 # enable Ethernet_802.3 (Novell) frame
options ETHER_8022 # enable Ethernet_802.2 frame
options ETHER_SNAP # enable Ethernet_802.2/SNAP frame
# for IPv6
pseudo-device gif 4 #IPv6 and IPv4 tunneling
pseudo-device faith 1 #for IPv6 and IPv4 translation

View File

@ -446,6 +446,8 @@ device mn0 # Munich32x/Falc54 Nx64kbit/sec cards.
# IPv6 over IPv6 tunneling.
# The `faith' pseudo-device captures packets sent to it and diverts them
# to the IPv4/IPv6 translation daemon.
# The `ef' pseudo-device provides support for multiple ethernet frame types
# specified via ETHER_* options. See ef(4) for details.
#
# The PPP_BSDCOMP option enables support for compress(1) style entire
# packet compression, the PPP_DEFLATE is for zlib/gzip style compression.
@ -467,6 +469,12 @@ options PPP_BSDCOMP #PPP BSD-compress support
options PPP_DEFLATE #PPP zlib/deflate/gzip support
options PPP_FILTER #enable bpf filtering (needs bpf)
pseudo-device ef # Multiple ethernet frames support
options ETHER_II # enable Ethernet_II frame
options ETHER_8023 # enable Ethernet_802.3 (Novell) frame
options ETHER_8022 # enable Ethernet_802.2 frame
options ETHER_SNAP # enable Ethernet_802.2/SNAP frame
# for IPv6
pseudo-device gif 4 #IPv6 and IPv4 tunneling
pseudo-device faith 1 #for IPv6 and IPv4 translation

View File

@ -3,12 +3,12 @@
.PATH: ${.CURDIR}/../../net
KMOD= if_ef
SRCS= if_ef.c opt_ipx.h opt_inet.h
SRCS= if_ef.c opt_ipx.h opt_inet.h opt_ef.h
MAN4= ef.4
# If you need only limited number of frames comment out unneeded ones
# this will reduce number of visible devices
ETHER_II=
#ETHER_II=
ETHER_8023=
ETHER_8022=
ETHER_SNAP=
@ -17,22 +17,6 @@ NBPF?= 1
CFLAGS+= ${PROTOS}
.if defined(ETHER_II)
CFLAGS+= -DETHER_II
.endif
.if defined(ETHER_8023)
CFLAGS+= -DETHER_8023
.endif
.if defined(ETHER_8022)
CFLAGS+= -DETHER_8022
.endif
.if defined(ETHER_SNAP)
CFLAGS+= -DETHER_SNAP
.endif
.if defined(EFDEBUG)
CFLAGS+= -DEF_DEBUG
.endif
@ -43,6 +27,13 @@ opt_inet.h:
opt_ipx.h:
echo "#define IPX 1" > opt_ipx.h
opt_ef.h:
.for frame in ETHER_II ETHER_8023 ETHER_8022 ETHER_SNAP
.if defined(${frame})
echo "#define ${frame} 1" >> opt_ef.h
.endif
.endfor
load: all
/sbin/kldload ./${PROG}

View File

@ -28,6 +28,7 @@
#include "opt_inet.h"
#include "opt_ipx.h"
#include "opt_ef.h"
#include <sys/param.h>
#include <sys/systm.h>