From: Steve L. <slo...@us...> - 2002-04-29 23:05:14
|
Update of /cvsroot/linux-mips/linux/arch/mips In directory usw-pr-cvs1:/tmp/cvs-serv16874/arch/mips Modified Files: Makefile config.in Log Message: Initial IDT 79EB355 support. Index: Makefile =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/Makefile,v retrieving revision 1.45 retrieving revision 1.46 diff -u -d -r1.45 -r1.46 --- Makefile 12 Apr 2002 20:45:06 -0000 1.45 +++ Makefile 29 Apr 2002 23:05:11 -0000 1.46 @@ -16,9 +16,11 @@ # Select the object file format to substitute into the linker script. # ifdef CONFIG_CPU_LITTLE_ENDIAN -tool-prefix = mipsel-linux- +#tool-prefix = mipsel-linux- +tool-prefix = mips_fp_le- else -tool-prefix = mips-linux- +#tool-prefix = mips-linux- +tool-prefix = mips_fp_be- endif ifdef CONFIG_CROSSCOMPILE @@ -400,7 +402,7 @@ # IDT 79EB355 evaluation board. # ifdef CONFIG_IDT_79EB355 -LIBS += arch/mips/rc32300/79EB355/idt-79EB355.o +LIBS += arch/mips/rc32300/79EB355/idt-79EB355.o \ arch/mips/rc32300/common/rc32300.o SUBDIRS += arch/mips/rc32300/79EB355 arch/mips/rc32300/common LOADADDR += 0x80200000 Index: config.in =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/config.in,v retrieving revision 1.95 retrieving revision 1.96 diff -u -d -r1.95 -r1.96 --- config.in 23 Apr 2002 13:14:28 -0000 1.95 +++ config.in 29 Apr 2002 23:05:11 -0000 1.96 @@ -401,7 +401,7 @@ define_bool CONFIG_PC_KEYB y fi if [ "$CONFIG_IDT_79S334" = "y" ]; then - define_bool CONFIG_CPU_RC32334 y + define_bool CONFIG_MIPS_RC32334 y define_bool CONFIG_NEW_IRQ y define_bool CONFIG_NEW_TIME_C y define_bool CONFIG_PCI y @@ -414,17 +414,12 @@ fi fi if [ "$CONFIG_IDT_79EB355" = "y" ]; then - define_bool CONFIG_CPU_RC32355 y + define_bool CONFIG_MIPS_RC32355 y define_bool CONFIG_NEW_IRQ y define_bool CONFIG_NEW_TIME_C y - define_bool CONFIG_PCI y - define_bool CONFIG_NEW_PCI y - define_bool CONFIG_PCI_AUTO y + define_bool CONFIG_PCI n define_bool CONFIG_NONCOHERENT_IO y - define_bool CONFIG_SWAP_IO_SPACE y - if [ "$CONFIG_VT" = "y" ]; then - define_bool CONFIG_PC_KEYB y - fi + define_bool CONFIG_SWAP_IO_SPACE n fi if [ "$CONFIG_VADEM_CLIO_1000" = "y" ]; then define_bool CONFIG_CPU_VR41XX y |