diff options
author | wpaul <wpaul@FreeBSD.org> | 1999-08-10 17:15:20 +0000 |
---|---|---|
committer | wpaul <wpaul@FreeBSD.org> | 1999-08-10 17:15:20 +0000 |
commit | 77daf56af9591a9c07c989b51b7511c07d8f3e47 (patch) | |
tree | 74c38b6d7a531b029089c457f5bcf3955ea31a5f /sys/modules/sf | |
parent | 6b0342e396ad0a1933d3d62ee656723ffb36fb18 (diff) | |
download | FreeBSD-src-77daf56af9591a9c07c989b51b7511c07d8f3e47.zip FreeBSD-src-77daf56af9591a9c07c989b51b7511c07d8f3e47.tar.gz |
Convert the VIA Rhine driver to newbus and set it up to be compiled as
a module. Also modified the code to work on FreeBSD/alpha and added
device vr0 to the alpha GENERIC config.
While I was in the neighborhood, I noticed that I was still using
#define NFPX 1 in all of the Makefiles that I'd copied from the fxp
module. I don't really use #define Nfoo X so it didn't matter, but
I decided to customize this correctly anyway.
Diffstat (limited to 'sys/modules/sf')
-rw-r--r-- | sys/modules/sf/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/modules/sf/Makefile b/sys/modules/sf/Makefile index aa3df4c..d2de96e 100644 --- a/sys/modules/sf/Makefile +++ b/sys/modules/sf/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1999/07/23 05:48:01 wpaul Exp $ +# $Id: Makefile,v 1.1 1999/07/25 04:32:38 wpaul Exp $ S = ${.CURDIR}/../.. .PATH: $S/pci @@ -8,7 +8,7 @@ CLEANFILES += sf.h bpf.h opt_bdg.h device_if.h bus_if.h pci_if.h CFLAGS += ${DEBUG_FLAGS} sf.h: - echo "#define NFXP 1" > sf.h + echo "#define NSF 1" > sf.h bpf.h: echo "#define NBPF 1" > bpf.h |