linux, linux64: fix module load

The previous commit added references to to the syscallnames arrays, but
failed to add the relevant source files to the module build. Thus, the
modules failed to load due to missing symbols.

Reported by:	cy
Fixes:	1da65dcb1c ("linux: populate sv_syscallnames in each sysentvec")
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Mitchell Horne 2022-10-29 12:30:32 -03:00
parent 3317848808
commit f396f9b6c9
2 changed files with 2 additions and 0 deletions

View File

@ -25,6 +25,7 @@ SRCS= linux${SFX}_dummy_machdep.c \
linux_signal.c \
linux_socket.c \
linux_stats.c \
linux${SFX}_syscalls.c \
linux_sysctl.c \
linux${SFX}_sysent.c \
linux${SFX}_sysvec.c \

View File

@ -22,6 +22,7 @@ SRCS= linux_dummy_machdep.c \
linux_signal.c \
linux_socket.c \
linux_stats.c \
linux_syscalls.c \
linux_sysctl.c \
linux_sysent.c \
linux_sysvec.c \