aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/ar
diff options
context:
space:
mode:
authorJohn Hay <jhay@FreeBSD.org>2001-01-30 10:20:43 +0000
committerJohn Hay <jhay@FreeBSD.org>2001-01-30 10:20:43 +0000
commit01b96fdf9e5da8b490d9b266563ba3f957de66aa (patch)
tree06c6bf51b17482e10a2887506982e8a295ba12c0 /sys/modules/ar
parent48b8568826e0dcf64bb71a1ebaf7fb829a9efe04 (diff)
downloadsrc-01b96fdf9e5da8b490d9b266563ba3f957de66aa.tar.gz
src-01b96fdf9e5da8b490d9b266563ba3f957de66aa.zip
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.
Notes
Notes: svn path=/head/; revision=71832
Diffstat (limited to 'sys/modules/ar')
-rw-r--r--sys/modules/ar/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/sys/modules/ar/Makefile b/sys/modules/ar/Makefile
new file mode 100644
index 000000000000..1fa18a941431
--- /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>