summaryrefslogtreecommitdiff
path: root/sys/modules
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2000-11-01 19:35:31 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2000-11-01 19:35:31 +0000
commitfb09abd252b06db6ee63eaed94daa1ba7506c3dc (patch)
tree561220d361823dc103c448299f39b62e615761d1 /sys/modules
parent9a5ebe6a25a6be386331db7f14aa196b07640bfd (diff)
downloadsrc-test2-fb09abd252b06db6ee63eaed94daa1ba7506c3dc.tar.gz
src-test2-fb09abd252b06db6ee63eaed94daa1ba7506c3dc.zip
Notes
Diffstat (limited to 'sys/modules')
-rw-r--r--sys/modules/linux/Makefile21
1 files changed, 17 insertions, 4 deletions
diff --git a/sys/modules/linux/Makefile b/sys/modules/linux/Makefile
index b675a8e7cd48..07c218ae4e57 100644
--- a/sys/modules/linux/Makefile
+++ b/sys/modules/linux/Makefile
@@ -1,13 +1,13 @@
# $FreeBSD$
-.PATH: ${.CURDIR}/../../${MACHINE_ARCH}/linux
+.PATH: ${.CURDIR}/../../compat/linux ${.CURDIR}/../../${MACHINE_ARCH}/linux
MAINTAINER= marcel@FreeBSD.org
KMOD= linux
-SRCS= linux_file.c linux_ioctl.c linux_misc.c linux_signal.c \
- linux_socket.c linux_stats.c linux_mib.c \
- linux_dummy.c linux_sysent.c linux_sysvec.c linux_util.c \
+SRCS= linux_file.c linux_ioctl.c linux_machdep.c linux_misc.c \
+ linux_signal.c linux_socket.c linux_stats.c linux_mib.c \
+ linux_dummy.c linux_sysvec.c linux_util.c \
opt_compat.h opt_linux.h opt_vmpage.h vnode_if.h
OBJS= linux_locore.o
MAN8= linux.8
@@ -36,6 +36,19 @@ linux_genassym.o: linux_genassym.c linux.h @ machine
opt_compat.h:
echo "#define COMPAT_43 1" > opt_compat.h
+GENSYSCALL= linux_sysent.c linux_syscall.h linux_proto.h
+SRCS+= ${GENSYSCALL}
+CLEANFILES+= ${GENSYSCALL}
+
+${GENSYSCALL}: @/kern/makesyscalls.sh \
+ @/${MACHINE_ARCH}/linux/syscalls.master \
+ @/${MACHINE_ARCH}/linux/syscalls.conf
+ sh @/kern/makesyscalls.sh @/${MACHINE_ARCH}/linux/syscalls.master \
+ @/${MACHINE_ARCH}/linux/syscalls.conf
+ sed -e 's|${MACHINE_ARCH}/linux/linux_proto\.h|linux_proto.h|g' \
+ linux_sysent.c > linux_sysent.c.fixup
+ mv -f linux_sysent.c.fixup linux_sysent.c
+
afterinstall:
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/linux.sh ${DESTDIR}/usr/sbin/linux