Add an isp(4) module. sbus support is only compiled in on sparc64.

pci support is always compiled in.
This commit is contained in:
John Baldwin 2002-10-31 19:50:18 +00:00
parent 35f6695bb2
commit 97af632bcb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=106260
2 changed files with 15 additions and 0 deletions

View File

@ -55,6 +55,7 @@ SUBDIR= 3dfx \
ip6fw \
ip_mroute_mod \
ipfw \
isp \
ispfw \
joy \
kue \

14
sys/modules/isp/Makefile Normal file
View File

@ -0,0 +1,14 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../dev/isp
KMOD= isp
SRCS= bus_if.h device_if.h pci_if.h \
opt_cam.h opt_ddb.h opt_isp.h \
isp.c isp_target.c isp_freebsd.c isp_pci.c
.if ${MACHINE_ARCH} == sparc64
SRCS+= isp_sbus.c
.endif
.include <bsd.kmod.mk>