08a157de6e
Discussed on tech-kern: https://mail-index.NetBSD.org/tech-kern/2020/01/13/msg025938.html This was never (intentionally) enabled by default, and the design has some shortcomings. You can get mostly the same results with ktrace, as in usr.bin/make/filemon/filemon_ktrace.c which is now used instead of filemon for make's meta mode. If applications require higher performance than ktrace, or nesting that ktrace doesn't support, we might consider adding something back into the vfs system calls themselves, without hijacking the syscall table. (Might want a more reliable output format too, e.g. one that can handle newlines in file names.)
25 lines
586 B
Makefile
25 lines
586 B
Makefile
# $NetBSD: Makefile,v 1.44 2020/01/19 20:41:18 riastradh Exp $
|
|
|
|
SUBDIR= apm ata bluetooth dec dm dmover dtv hdaudio hdmicec hid hpc \
|
|
i2c i2o ic ieee1394 ir isa \
|
|
microcode ofw pci pckbport pcmcia pud putter raidframe sbus scsipi \
|
|
spi sun tc usb vme wscons
|
|
|
|
.if ${MACHINE_ARCH} == "x86_64"
|
|
SUBDIR+= nvmm
|
|
.endif
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
.if ${MKISCSI} != "no"
|
|
SUBDIR+= iscsi
|
|
.endif
|
|
|
|
INCSDIR= /usr/include/dev
|
|
|
|
# Only install includes which are used by userland
|
|
INCS= biovar.h ccdvar.h cgdvar.h fssvar.h keylock.h kttcpio.h lockstat.h \
|
|
md.h vndvar.h spkrio.h
|
|
|
|
.include <bsd.kinc.mk>
|