mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
For drmkpi (D23085) we don't want the Linux struct file as we don't emulate everything. Also the prototypes should be in shmem_fs.h to have 100% compatibility with Linux. Reviewed by: hselasky MFC after: Maybe Differential Revision: https://reviews.freebsd.org/D23764
35 lines
612 B
Makefile
35 lines
612 B
Makefile
# $FreeBSD$
|
|
.PATH: ${SRCTOP}/sys/compat/linuxkpi/common/src
|
|
|
|
KMOD= linuxkpi
|
|
SRCS= linux_compat.c \
|
|
linux_current.c \
|
|
linux_hrtimer.c \
|
|
linux_idr.c \
|
|
linux_kmod.c \
|
|
linux_kthread.c \
|
|
linux_lock.c \
|
|
linux_page.c \
|
|
linux_pci.c \
|
|
linux_radix.c \
|
|
linux_rcu.c \
|
|
linux_seq_file.c \
|
|
linux_schedule.c \
|
|
linux_shmemfs.c \
|
|
linux_slab.c \
|
|
linux_tasklet.c \
|
|
linux_usb.c \
|
|
linux_work.c
|
|
|
|
SRCS+= bus_if.h \
|
|
device_if.h \
|
|
pci_if.h \
|
|
vnode_if.h \
|
|
usb_if.h \
|
|
opt_usb.h \
|
|
opt_stack.h
|
|
|
|
CFLAGS+= -I${SRCTOP}/sys/compat/linuxkpi/common/include
|
|
CFLAGS+= -I${SRCTOP}/sys/contrib/ck/include
|
|
|
|
.include <bsd.kmod.mk>
|