diff options
author | wpaul <wpaul@FreeBSD.org> | 2000-11-07 01:03:23 +0000 |
---|---|---|
committer | wpaul <wpaul@FreeBSD.org> | 2000-11-07 01:03:23 +0000 |
commit | 56ad93afb4cc8080f6d5c43ff87b146c8a060949 (patch) | |
tree | c53bb16c0d63a45068785e3c4d4606fea25169b7 /sys/modules/vx | |
parent | fc831555eb35cd265361d393540b7e4f3ef1defe (diff) | |
download | FreeBSD-src-56ad93afb4cc8080f6d5c43ff87b146c8a060949.zip FreeBSD-src-56ad93afb4cc8080f6d5c43ff87b146c8a060949.tar.gz |
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.
Diffstat (limited to 'sys/modules/vx')
-rw-r--r-- | sys/modules/vx/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sys/modules/vx/Makefile b/sys/modules/vx/Makefile new file mode 100644 index 0000000..c033c6c --- /dev/null +++ b/sys/modules/vx/Makefile @@ -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> |