aboutsummaryrefslogtreecommitdiff
path: root/sys/modules
diff options
context:
space:
mode:
authorNick Hibma <n_hibma@FreeBSD.org>2000-05-01 22:48:23 +0000
committerNick Hibma <n_hibma@FreeBSD.org>2000-05-01 22:48:23 +0000
commitb5ea1f0c771529691ffc94efdcc08031ac5c082a (patch)
treecbc1185fb2491820e4e251b5ae0721b1b2137bc8 /sys/modules
parent5aa6a276ed93f0b499fc481e2682bdb9215c80fe (diff)
Notes
Diffstat (limited to 'sys/modules')
-rw-r--r--sys/modules/Makefile2
-rw-r--r--sys/modules/udbp/Makefile14
2 files changed, 15 insertions, 1 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile
index 5ce53c2f8eec..2957ce508fe8 100644
--- a/sys/modules/Makefile
+++ b/sys/modules/Makefile
@@ -6,7 +6,7 @@ SUBDIR= aha amr an aue ccd cd9660 coda cue dc fdesc fxp if_disc if_ef if_ppp \
if_sl if_tun ipfilter ipfw joy kernfs kue \
md mfs mii mlx msdos ncp netgraph nfs ntfs nullfs \
nwfs portal procfs rl sf sis sk ste ti tl tx \
- ugen uhid ukbd ulpt umapfs umass umodem ums union urio usb \
+ udbp ugen uhid ukbd ulpt umapfs umass umodem ums union urio usb \
vinum vn vpo vr wb xl
# XXX some of these can move to the general case when de-i386'ed
diff --git a/sys/modules/udbp/Makefile b/sys/modules/udbp/Makefile
new file mode 100644
index 000000000000..3b41de2f0158
--- /dev/null
+++ b/sys/modules/udbp/Makefile
@@ -0,0 +1,14 @@
+# $FreeBSD$
+
+MAINTAINER = n_hibma@freebsd.org
+
+.PATH: ${.CURDIR}/../../dev/usb
+KMOD = udbp
+SRCS = bus_if.h device_if.h \
+ opt_usb.h \
+ udbp.c
+NOMAN =
+
+CFLAGS += -DUDBP_DEBUG
+
+.include <bsd.kmod.mk>