diff options
author | jhay <jhay@FreeBSD.org> | 2001-01-30 10:20:43 +0000 |
---|---|---|
committer | jhay <jhay@FreeBSD.org> | 2001-01-30 10:20:43 +0000 |
commit | d2d8355cd9b65f11f74a20927f62b58cc0d019f3 (patch) | |
tree | 9275c1d0d223d6fa03edc8b2017a0a1c67dd90d3 /sys/modules/ar | |
parent | 8a594fc12fb5af6f5b5a098a493027be150ae5b5 (diff) | |
download | FreeBSD-src-d2d8355cd9b65f11f74a20927f62b58cc0d019f3.zip FreeBSD-src-d2d8355cd9b65f11f74a20927f62b58cc0d019f3.tar.gz |
Make klds for the ar and sr devices and hook them up.
The normal versions are called if_ar.ko and if_sr.ko and the netgraph
versions ng_sync_ar.ko and ng_sync_sr.ko.
Diffstat (limited to 'sys/modules/ar')
-rw-r--r-- | sys/modules/ar/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sys/modules/ar/Makefile b/sys/modules/ar/Makefile new file mode 100644 index 0000000..1fa18a9 --- /dev/null +++ b/sys/modules/ar/Makefile @@ -0,0 +1,11 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../dev/ar +KMOD = if_ar +SRCS = if_ar.c if_ar_pci.c +SRCS += device_if.h bus_if.h pci_if.h isa_if.h opt_netgraph.h + +opt_netgraph.h: + touch opt_netgraph.h + +.include <bsd.kmod.mk> |