Update of /cvsroot/linux-mips/linux/arch/mips
In directory usw-pr-cvs1:/tmp/cvs-serv13922/arch/mips
Modified Files:
Makefile config.in
Log Message:
Pb1100 support.
Index: Makefile
===================================================================
RCS file: /cvsroot/linux-mips/linux/arch/mips/Makefile,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -d -r1.43 -r1.44
--- Makefile 22 Mar 2002 10:22:43 -0000 1.43
+++ Makefile 2 Apr 2002 22:59:38 -0000 1.44
@@ -379,6 +379,13 @@
LOADADDR += 0x80100000
endif
+ifdef CONFIG_MIPS_PB1100
+LIBS += arch/mips/au1000/pb1100/pb1100.o \
+ arch/mips/au1000/common/au1000.o
+SUBDIRS += arch/mips/au1000/pb1100 arch/mips/au1000/common
+LOADADDR += 0x80100000
+endif
+
#
# IDT 79S334 evaluation board.
#
Index: config.in
===================================================================
RCS file: /cvsroot/linux-mips/linux/arch/mips/config.in,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -d -r1.91 -r1.92
--- config.in 22 Mar 2002 10:22:43 -0000 1.91
+++ config.in 2 Apr 2002 22:59:38 -0000 1.92
@@ -97,6 +97,7 @@
bool ' Support for PCI AUTO Config' CONFIG_PCI_AUTO
fi
bool 'Support for Alchemy Semi PB1500 board' CONFIG_MIPS_PB1500
+bool 'Support for Alchemy Semi PB1100 board' CONFIG_MIPS_PB1100
bool 'Support for Toshiba JMR-TX3927 board' CONFIG_TOSHIBA_JMR3927
bool 'Support for Hewlett Packard LaserJet board' CONFIG_HP_LASERJET
@@ -381,6 +382,15 @@
define_bool CONFIG_NONCOHERENT_IO y
define_bool CONFIG_PC_KEYB y
define_int MAX_HWIFS 1
+fi
+if [ "$CONFIG_MIPS_PB1100" = "y" ]; then
+ define_bool CONFIG_MIPS_AU1000 y
+ define_bool CONFIG_NEW_IRQ y
+ define_bool CONFIG_PCI y
+ define_bool CONFIG_PCI_AUTO n
+ define_bool CONFIG_NEW_PCI y
+ define_bool CONFIG_NONCOHERENT_IO y
+ define_bool CONFIG_PC_KEYB y
fi
if [ "$CONFIG_IDT_79S334" = "y" ]; then
define_bool CONFIG_CPU_RC32334 y
|