The vortex driver can be compiled as a KLD now. The EISA attachment

is only built on the i386 platform for now, since it depends on symbols
which I'm pretty sure won't be present in the alpha build.
This commit is contained in:
Bill Paul 2000-11-07 01:03:23 +00:00
parent f425f328cd
commit 7d1fae05bb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=68419
2 changed files with 12 additions and 1 deletions

View File

@ -14,7 +14,7 @@ SUBDIR= 3dfx accf_data accf_http agp aha amr an aue \
rl rp sf sis sk sn sound ste syscons ti tl twe tx \
udbp ugen uhid ukbd ulpt umapfs umass umodem ums union urio usb \
uscanner \
vinum vn vpo vr wb wx xl
vinum vn vpo vr vx wb wx xl
# XXX some of these can move to the general case when de-i386'ed
.if ${MACHINE_ARCH} == "i386"

11
sys/modules/vx/Makefile Normal file
View File

@ -0,0 +1,11 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../dev/vx
KMOD = if_vx
SRCS = if_vx.c if_vx_pci.c
.if ${MACHINE_ARCH} == "i386"
SRCS += if_vx_eisa.c
.endif
SRCS += opt_bdg.h device_if.h bus_if.h pci_if.h
.include <bsd.kmod.mk>