1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-18 02:19:39 +00:00

modules: Add missing opt_*.h files for stand-alone compile

Standalone compile that we at least create these opt_*.h files.

Sponsored by:		Netflix
This commit is contained in:
Warner Losh 2024-10-12 14:40:41 -06:00
parent 4584c8f0ef
commit 1a37caeb07
2 changed files with 6 additions and 1 deletions

View File

@ -33,6 +33,7 @@ SRCS= linux${SFX}_dummy_machdep.c \
linux_uid16.c \ linux_uid16.c \
linux_vdso.c \ linux_vdso.c \
linux_xattr.c \ linux_xattr.c \
opt_compat.h \
opt_inet.h \ opt_inet.h \
opt_inet6.h \ opt_inet6.h \
opt_ktrace.h \ opt_ktrace.h \
@ -41,6 +42,7 @@ SRCS= linux${SFX}_dummy_machdep.c \
bus_if.h \ bus_if.h \
device_if.h \ device_if.h \
vnode_if.h vnode_if.h
.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64" .if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
SRCS+= linux_dummy_x86.c SRCS+= linux_dummy_x86.c
VDSODEPS=linux_vdso_gettc_x86.inc VDSODEPS=linux_vdso_gettc_x86.inc

View File

@ -28,14 +28,17 @@ SRCS= linux_dummy_machdep.c \
linux_vdso.c \ linux_vdso.c \
linux_timer.c \ linux_timer.c \
linux_xattr.c \ linux_xattr.c \
opt_ktrace.h \ opt_compat.h \
opt_inet6.h \ opt_inet6.h \
opt_ktrace.h \
opt_posix.h \ opt_posix.h \
opt_usb.h \
bus_if.h \ bus_if.h \
device_if.h \ device_if.h \
vnode_if.h \ vnode_if.h \
linux_support.S \ linux_support.S \
linux_vdso_inc.S linux_vdso_inc.S
.if ${MACHINE_CPUARCH} == "amd64" .if ${MACHINE_CPUARCH} == "amd64"
SRCS+= linux_dummy_x86.c SRCS+= linux_dummy_x86.c
.endif .endif