1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-15 15:06:42 +00:00

Hook up msk(4) to the build.

This commit is contained in:
Pyun YongHyeon 2006-12-13 02:37:48 +00:00
parent e029227c4c
commit c9d21ce905
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=165140
5 changed files with 16 additions and 0 deletions

View File

@ -165,6 +165,7 @@ MAN= aac.4 \
mn.4 \
mouse.4 \
mpt.4 \
msk.4 \
mtio.4 \
multicast.4 \
mxge.4 \

View File

@ -1773,6 +1773,10 @@ device miibus
# lge: Support for PCI gigabit ethernet adapters based on the Level 1
# LXT1001 NetCellerator chipset. This includes the D-Link DGE-500SX,
# SMC TigerCard 1000 (SMC9462SX), and some Addtron cards.
# msk: Support for gigabit ethernet adapters based on the Marvell/SysKonnect
# Yukon II Gigabit controllers, including 88E8021, 88E8022, 88E8061,
# 88E8062, 88E8035, 88E8036, 88E8038, 88E8050, 88E8052, 88E8053,
# 88E8055, 88E8056 and D-Link 560T/550SX.
# lmc: Support for the LMC/SBE wide-area network interface cards.
# my: Myson Fast Ethernet (MTD80X, MTD89X)
# nge: Support for PCI gigabit ethernet adapters based on the National

View File

@ -761,6 +761,7 @@ dev/mpt/mpt_cam.c optional mpt
dev/mpt/mpt_debug.c optional mpt
dev/mpt/mpt_pci.c optional mpt pci
dev/mpt/mpt_raid.c optional mpt
dev/msk/if_msk.c optional msk
dev/my/if_my.c optional my
dev/ncv/ncr53c500.c optional ncv
dev/ncv/ncr53c500_pccard.c optional ncv pccard

View File

@ -163,6 +163,7 @@ SUBDIR= ${_3dfx} \
msdosfs \
msdosfs_iconv \
${_mse} \
msk \
${_mxge} \
my \
${_ncp} \

9
sys/modules/msk/Makefile Normal file
View File

@ -0,0 +1,9 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../dev/msk
KMOD= if_msk
SRCS= if_msk.c device_if.h bus_if.h pci_if.h
SRCS+= miibus_if.h
.include <bsd.kmod.mk>