diff options
author | John Hay <jhay@FreeBSD.org> | 2001-01-30 10:20:43 +0000 |
---|---|---|
committer | John Hay <jhay@FreeBSD.org> | 2001-01-30 10:20:43 +0000 |
commit | 01b96fdf9e5da8b490d9b266563ba3f957de66aa (patch) | |
tree | 06c6bf51b17482e10a2887506982e8a295ba12c0 /sys/modules/sr | |
parent | 48b8568826e0dcf64bb71a1ebaf7fb829a9efe04 (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/Makefile | 11 |
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> |