03f1cf9f32
The source file was moved to base earlier and also improved upon, but never compiled in. This patch will: - Make a module in sys/modules - Make lindebugfs depend on linuxkpi (for seq_file) - Check if read/write functions are set before calling, DRM drivers don't always set both of them. Reviewed by: hps Approved by: imp (mentor), hps MFC after: 1 week
13 lines
218 B
Makefile
13 lines
218 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/compat/lindebugfs
|
|
|
|
KMOD= lindebugfs
|
|
SRCS= vnode_if.h \
|
|
device_if.h bus_if.h pci_if.h \
|
|
lindebugfs.c
|
|
|
|
CFLAGS+= -I${SRCTOP}/sys/compat/linuxkpi/common/include
|
|
|
|
.include <bsd.kmod.mk>
|