summaryrefslogtreecommitdiff
path: root/sys/dev/Makefile
diff options
context:
space:
mode:
authorhannken <hannken@NetBSD.org>2003-12-10 11:40:11 +0000
committerhannken <hannken@NetBSD.org>2003-12-10 11:40:11 +0000
commitfbae381aaa42360e3c45875f461e67347695bf0c (patch)
tree439c3e235211813e723a33d5ce4c2bb334d19aa5 /sys/dev/Makefile
parent4949a9ae53dc245b0d8240bd4851bbd22d085019 (diff)
The file system snapshot pseudo driver.
Uses a hook in spec_strategy() to save data written from a mounted file system to its block device and a hook in dounmount(). Not enabled by default in any kernel config. Approved by: Frank van der Linden <fvdl@netbsd.org>
Diffstat (limited to 'sys/dev/Makefile')
-rw-r--r--sys/dev/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/Makefile b/sys/dev/Makefile
index f3f5b0541e3..592a2a9d26e 100644
--- a/sys/dev/Makefile
+++ b/sys/dev/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.17 2003/10/10 06:14:02 grog Exp $
+# $NetBSD: Makefile,v 1.18 2003/12/10 11:40:11 hannken Exp $
SUBDIR= apm ata dec dmover hpc i2o ic ieee1394 ir isa ofw \
pci pckbc pcmcia raidframe sbus scsipi sun tc usb vme wscons vinum
@@ -6,6 +6,6 @@ SUBDIR= apm ata dec dmover hpc i2o ic ieee1394 ir isa ofw \
INCSDIR= /usr/include/dev
# Only install includes which are used by userland
-INCS= ccdvar.h cgdvar.h kttcpio.h md.h vndvar.h
+INCS= ccdvar.h cgdvar.h fssvar.h kttcpio.h md.h vndvar.h
.include <bsd.kinc.mk>