aboutsummaryrefslogtreecommitdiff
path: root/sys/modules
diff options
context:
space:
mode:
authorSheldon Hearn <sheldonh@FreeBSD.org>2000-02-29 10:57:42 +0000
committerSheldon Hearn <sheldonh@FreeBSD.org>2000-02-29 10:57:42 +0000
commitcb166ce422ac2bc81f42c2a2e2cd68625c11478d (patch)
treef3f3056ea45b984374bd1944669219ba85710848 /sys/modules
parentb73c482a1cfc4b6b2f98f449a6a55c9087dead23 (diff)
downloadsrc-cb166ce422ac2bc81f42c2a2e2cd68625c11478d.tar.gz
src-cb166ce422ac2bc81f42c2a2e2cd68625c11478d.zip
Enable pcfclock as a kernel loadable module.
PR: 16804 Submitted by: sascha@schumann.cx Approved by: jkh (release engineer)
Notes
Notes: svn path=/head/; revision=57620
Diffstat (limited to 'sys/modules')
-rw-r--r--sys/modules/Makefile2
-rw-r--r--sys/modules/pcfclock/Makefile8
2 files changed, 9 insertions, 1 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile
index f4ec8183a27d..1c3b7df83616 100644
--- a/sys/modules/Makefile
+++ b/sys/modules/Makefile
@@ -5,7 +5,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 \
+ nwfs pcfclock portal procfs rl sf sis sk ste ti tl \
ugen uhid ukbd ulpt umapfs umass umodem ums union usb vn vpo vr wb xl
# XXX some of these can move to the general case when de-i386'ed
diff --git a/sys/modules/pcfclock/Makefile b/sys/modules/pcfclock/Makefile
new file mode 100644
index 000000000000..6d37afe47f46
--- /dev/null
+++ b/sys/modules/pcfclock/Makefile
@@ -0,0 +1,8 @@
+# $FreeBSD$
+
+.PATH: ${.CURDIR}/../../dev/ppbus
+KMOD= pcfclock
+SRCS= pcfclock.c opt_pcfclock.h
+SRCS+= bus_if.h device_if.h ppbus_if.h
+
+.include <bsd.kmod.mk>