aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/sr
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/sr
parent48b8568826e0dcf64bb71a1ebaf7fb829a9efe04 (diff)
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/sr')
-rw-r--r--sys/modules/sr/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/sys/modules/sr/Makefile b/sys/modules/sr/Makefile
new file mode 100644
index 000000000000..243ff9d1abfe
--- /dev/null
+++ b/sys/modules/sr/Makefile
@@ -0,0 +1,11 @@
+# $FreeBSD$
+
+.PATH: ${.CURDIR}/../../dev/sr
+KMOD = if_sr
+SRCS = if_sr.c if_sr_isa.c if_sr_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>