From: James S. <jsi...@us...> - 2002-03-18 22:25:10
|
Update of /cvsroot/linux-mips/linux/arch/mips64 In directory usw-pr-cvs1:/tmp/cvs-serv25230/arch/mips64 Modified Files: Makefile config.in Log Message: Use the 32-bit fp emulator for the 32-bit kernel also. Index: Makefile =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips64/Makefile,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- Makefile 28 Jan 2002 20:31:57 -0000 1.8 +++ Makefile 18 Mar 2002 22:25:07 -0000 1.9 @@ -67,10 +67,11 @@ CFLAGS += -mcpu=r8000 -mips4 endif -ifdef CONFIG_MIPS_FPU_EMULATOR -CORE_FILES += arch/mips64/math-emu/fpu_emulator.o -SUBDIRS += arch/mips64/math-emu -endif +# +# We unconditionally build the math emulator +# +CORE_FILES += arch/mips/math-emu/fpu_emulator.o +SUBDIRS += arch/mips/math-emu # # Board-dependent options and extra files Index: config.in =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips64/config.in,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- config.in 14 Feb 2002 20:42:00 -0000 1.14 +++ config.in 18 Mar 2002 22:25:07 -0000 1.15 @@ -160,10 +160,6 @@ fi bool 'Generate little endian code' CONFIG_CPU_LITTLE_ENDIAN -if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then - bool 'Kernel floating-point emulation' CONFIG_MIPS_FPU_EMULATOR -fi - bool 'Networking support' CONFIG_NET source drivers/pci/Config.in |