1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-11-30 08:19:09 +00:00

Hook up jme(4) to the build.

This commit is contained in:
Pyun YongHyeon 2008-05-27 01:54:45 +00:00
parent a5ebadc632
commit 75a1bf5f47
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=179338
4 changed files with 11 additions and 0 deletions

View File

@ -1763,6 +1763,7 @@ device miibus
# (hint of prefer_iomap can be done to prefer I/O instead of Mem mapping)
# gem: Apple GMAC/Sun ERI/Sun GEM
# hme: Sun HME (Happy Meal Ethernet)
# jme: JMicron JMC260 Fast Ethernet/JMC250 Gigabit Ethernet based adapters.
# le: AMD Am7900 LANCE and Am79C9xx PCnet
# lge: Support for PCI gigabit ethernet adapters based on the Level 1
# LXT1001 NetCellerator chipset. This includes the D-Link DGE-500SX,

View File

@ -844,6 +844,7 @@ dev/ixgbe/ixgbe_common.c optional ixgbe \
compile-with "${NORMAL_C} -I$S/dev/ixgbe"
dev/ixgbe/ixgbe_82598.c optional ixgbe \
compile-with "${NORMAL_C} -I$S/dev/ixgbe"
dev/jme/if_jme.c optional jme pci
dev/joy/joy.c optional joy
dev/joy/joy_isa.c optional joy isa
dev/joy/joy_pccard.c optional joy pccard

View File

@ -140,6 +140,7 @@ SUBDIR= ${_3dfx} \
${_iwn} \
${_iwnfw} \
${_ixgb} \
jme \
joy \
${_k8temp} \
kbdmux \

8
sys/modules/jme/Makefile Normal file
View File

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