Fixed bitrot in fpu LKMs.

This commit is contained in:
bde 1997-07-20 08:46:30 +00:00
parent 2ba31be0ca
commit 6a4e742a66
6 changed files with 19 additions and 20 deletions

View File

@ -1,7 +1,7 @@
# $Id$
# $Id: Makefile,v 1.3 1997/02/22 12:47:51 peter Exp $
.PATH: ${.CURDIR}/../../sys/i386/i386
KMOD= fpu
KMOD= fpu_mod
SRCS= math_emulate.c
NOMAN=
PSEUDO_LKM=

View File

@ -1,7 +1,7 @@
# $Id$
# $Id: Makefile,v 1.3 1997/02/22 12:47:52 peter Exp $
.PATH: ${.CURDIR}/../../sys/gnu/i386/fpemul
KMOD= gnufpu
KMOD= gnufpu_mod
SRCS= div_small.s errors.c fpu_arith.c fpu_aux.c fpu_entry.c fpu_etc.c \
fpu_trig.c get_address.c load_store.c poly_2xm1.c poly_atan.c \
poly_div.s poly_l2.c poly_mul64.s poly_sin.c poly_tan.c \
@ -12,6 +12,7 @@ PSEUDO_LKM=
CFLAGS+= -DLKM -I${.CURDIR}/../../sys/sys
.s.o:
cpp -DLOCORE ${COPTS} $< | ${AS} ${ASFLAGS} -o $*.o
${CC} -x assembler-with-cpp -DLOCORE ${CFLAGS} -c \
${.IMPSRC} -o ${.TARGET}
.include <bsd.kmod.mk>

View File

@ -55,7 +55,7 @@
*
* W. Metzenthen June 1994.
*
* $Id: fpu_entry.c,v 1.11 1997/02/22 09:29:06 peter Exp $
* $Id: fpu_entry.c,v 1.12 1997/06/14 15:11:03 bde Exp $
*
*/
@ -76,10 +76,6 @@
#include <sys/proc.h>
#include <sys/kernel.h>
#ifdef LKM
#include <sys/lkm.h>
#endif
#include <machine/cpu.h>
#include <machine/pcb.h>
@ -512,9 +508,10 @@ gnufpu_unload(struct lkm_table *lkmtp, int cmd)
}
int
gnufpu(struct lkm_table *lkmtp, int cmd, int ver)
gnufpu_mod(struct lkm_table *lkmtp, int cmd, int ver)
{
DISPATCH(lkmtp, cmd, ver, gnufpu_load, gnufpu_unload, lkm_nullcmd);
MOD_DISPATCH(gnufpu, lkmtp, cmd, ver, gnufpu_load, gnufpu_unload,
lkm_nullcmd);
}
#else /* !LKM */

View File

@ -6,7 +6,7 @@
* [expediant "port" of linux 8087 emulator to 386BSD, with apologies -wfj]
*
* from: 386BSD 0.1
* $Id: math_emulate.c,v 1.23 1997/05/09 09:46:50 peter Exp $
* $Id: math_emulate.c,v 1.24 1997/07/20 08:37:20 bde Exp $
*/
/*
@ -1563,9 +1563,9 @@ fpu_unload(struct lkm_table *lkmtp, int cmd)
}
int
fpu(struct lkm_table *lkmtp, int cmd, int ver)
fpu_mod(struct lkm_table *lkmtp, int cmd, int ver)
{
DISPATCH(lkmtp, cmd, ver, fpu_load, fpu_unload, lkm_nullcmd);
MOD_DISPATCH(fpu, lkmtp, cmd, ver, fpu_load, fpu_unload, lkm_nullcmd);
}
#else /* !LKM */

View File

@ -1,7 +1,7 @@
# $Id$
# $Id: Makefile,v 1.3 1997/02/22 12:47:51 peter Exp $
.PATH: ${.CURDIR}/../../sys/i386/i386
KMOD= fpu
KMOD= fpu_mod
SRCS= math_emulate.c
NOMAN=
PSEUDO_LKM=

View File

@ -1,7 +1,7 @@
# $Id$
# $Id: Makefile,v 1.3 1997/02/22 12:47:52 peter Exp $
.PATH: ${.CURDIR}/../../sys/gnu/i386/fpemul
KMOD= gnufpu
KMOD= gnufpu_mod
SRCS= div_small.s errors.c fpu_arith.c fpu_aux.c fpu_entry.c fpu_etc.c \
fpu_trig.c get_address.c load_store.c poly_2xm1.c poly_atan.c \
poly_div.s poly_l2.c poly_mul64.s poly_sin.c poly_tan.c \
@ -12,6 +12,7 @@ PSEUDO_LKM=
CFLAGS+= -DLKM -I${.CURDIR}/../../sys/sys
.s.o:
cpp -DLOCORE ${COPTS} $< | ${AS} ${ASFLAGS} -o $*.o
${CC} -x assembler-with-cpp -DLOCORE ${CFLAGS} -c \
${.IMPSRC} -o ${.TARGET}
.include <bsd.kmod.mk>