1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

Allow building the NgATM SAAL layer directly into the kernel.

This commit is contained in:
Hartmut Brandt 2003-10-27 11:19:08 +00:00
parent 210ad6eb0a
commit 027ebd2f39
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=121613
4 changed files with 17 additions and 2 deletions

View File

@ -452,7 +452,10 @@ options NETGRAPH_VJC
options NETGRAPH_ATM_ATMPIF
# NgATM - Netgraph ATM
options NGATM_ATM
options NGATM_ATM
options NGATM_ATMBASE
options NGATM_SSCOP
options NGATM_SSCFU
device mn # Munich32x/Falc54 Nx64kbit/sec cards.
device lmc # tulip based LanMedia WAN cards

View File

@ -1370,7 +1370,13 @@ netatm/uni/unisig_util.c optional atm_uni atm_core
netatm/uni/unisig_vc_state.c optional atm_uni atm_core
netgraph/atm/atmpif/ng_atmpif.c optional netgraph_atm_atmpif
netgraph/atm/atmpif/ng_atmpif_harp.c optional netgraph_atm_atmpif
netgraph/atm/ng_atm.c optional ngatm_atm
netgraph/atm/ngatmbase.c optional ngatm_atmbase
contrib/ngatm/netnatm/misc/unimsg_common.c optional ngatm_atmbase
netgraph/atm/ng_atm.c optional ngatm_atm
netgraph/atm/sscfu/ng_sscfu.c optional ngatm_sscfu
contrib/ngatm/netnatm/saal/saal_sscfu.c optional ngatm_sscfu
netgraph/atm/sscop/ng_sscop.c optional ngatm_sscop
contrib/ngatm/netnatm/saal/saal_sscop.c optional ngatm_sscop
netgraph/ng_UI.c optional netgraph_UI
netgraph/ng_async.c optional netgraph_async
netgraph/ng_base.c optional netgraph

View File

@ -35,6 +35,9 @@ INCLUDES+= -I$S/contrib/ipfilter
# ... and the same for Atheros HAL
INCLUDES+= -I$S/contrib/dev/ath -I$S/contrib/dev/ath/freebsd
# ... and the same for the NgATM stuff
INCLUDES+= -I$S/contrib/ngatm
COPTS= ${INCLUDES} -D_KERNEL -include opt_global.h
CFLAGS= ${COPTFLAGS} ${CWARNFLAGS} ${DEBUG} ${COPTS} -fno-common

View File

@ -404,6 +404,9 @@ NETGRAPH_ATM_ATMPIF opt_netgraph.h
# NgATM options
NGATM_ATM opt_netgraph.h
NGATM_ATMBASE opt_netgraph.h
NGATM_SSCOP opt_netgraph.h
NGATM_SSCFU opt_netgraph.h
# DRM options
DRM_DEBUG opt_drm.h