Update of /cvsroot/linux-mips/linux/arch/mips
In directory usw-pr-cvs1:/tmp/cvs-serv28848/arch/mips
Modified Files:
Makefile config.in
Log Message:
Improved support for Toshiba TX39/TX49 series.
Index: Makefile
===================================================================
RCS file: /cvsroot/linux-mips/linux/arch/mips/Makefile,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- Makefile 2001/10/10 17:46:56 1.22
+++ Makefile 2001/10/24 23:32:54 1.23
@@ -52,6 +52,9 @@
ifdef CONFIG_CPU_R3000
GCCFLAGS += -mcpu=r3000 -mips1
endif
+ifdef CONFIG_CPU_TX39XX
+GCCFLAGS += -mcpu=r3000 -mips1
+endif
ifdef CONFIG_CPU_R6000
GCCFLAGS += -mcpu=r6000 -mips2 -Wa,--trap
endif
@@ -62,6 +65,9 @@
GCCFLAGS += -mcpu=r4600 -mips2 -Wa,--trap
endif
ifdef CONFIG_CPU_R4X00
+GCCFLAGS += -mcpu=r4600 -mips2 -Wa,--trap
+endif
+ifdef CONFIG_CPU_TX49XX
GCCFLAGS += -mcpu=r4600 -mips2 -Wa,--trap
endif
ifdef CONFIG_CPU_MIPS32
Index: config.in
===================================================================
RCS file: /cvsroot/linux-mips/linux/arch/mips/config.in,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -d -r1.34 -r1.35
--- config.in 2001/10/17 06:33:14 1.34
+++ config.in 2001/10/24 23:32:54 1.35
@@ -299,10 +299,12 @@
choice 'CPU type' \
"R3000 CONFIG_CPU_R3000 \
+ R39XX CONFIG_CPU_TX39XX \
R6000 CONFIG_CPU_R6000 \
R41xx CONFIG_CPU_VR41XX \
R4300 CONFIG_CPU_R4300 \
R4x00 CONFIG_CPU_R4X00 \
+ R49XX CONFIG_CPU_TX49XX \
R5000 CONFIG_CPU_R5000 \
R5432 CONFIG_CPU_R5432 \
R5900 CONFIG_CPU_R5900 \
|