From: James S. <jsi...@us...> - 2001-11-10 03:52:51
|
Update of /cvsroot/linux-mips/linux/arch/mips In directory usw-pr-cvs1:/tmp/cvs-serv20843/arch/mips Modified Files: Makefile config.in Log Message: Imported support for JMR-TX3927 by Alice Hennessy. Thank you. Index: Makefile =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/Makefile,v retrieving revision 1.27 retrieving revision 1.28 diff -u -d -r1.27 -r1.28 --- Makefile 2001/11/08 17:42:07 1.27 +++ Makefile 2001/11/10 03:52:48 1.28 @@ -369,6 +369,12 @@ LOADADDR += 0x80001000 endif +ifdef CONFIG_TOSHIBA_JMR3927 +CORE_FILES += arch/mips/jmr3927/rbhma3100/jmr3927.o arch/mips/jmr3927/common/tx3927.o +SUBDIRS += arch/mips/jmr3927/rbhma3100 arch/mips/jmr3927/common +LOADADDR += 0x80050000 +endif + # # Choosing incompatible machines durings configuration will result in # error messages during linking. Select a default linkscript if Index: config.in =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/config.in,v retrieving revision 1.48 retrieving revision 1.49 diff -u -d -r1.48 -r1.49 --- config.in 2001/11/08 17:42:07 1.48 +++ config.in 2001/11/10 03:52:48 1.49 @@ -95,6 +95,7 @@ if [ "$CONFIG_MIPS_PB1000" = "y" ]; then bool ' Support for PCI AUTO Config' CONFIG_PCI_AUTO fi +bool 'Support for Toshiba JMR-TX3927 board' CONFIG_TOSHIBA_JMR3927 define_bool CONFIG_RWSEM_GENERIC_SPINLOCK y @@ -328,6 +329,17 @@ define_bool CONFIG_PCI y fi +if [ "$CONFIG_TOSHIBA_JMR3927" = "y" ]; then + define_bool CONFIG_TOSHIBA_BOARDS y + define_bool CONFIG_PCI y + define_bool CONFIG_NEW_PCI y + define_bool CONFIG_PCI_AUTO y + define_bool CONFIG_NEW_IRQ y + define_bool CONFIG_NEW_TIME_C y + define_bool CONFIG_SWAP_IO_SPACE y + define_bool CONFIG_PC_KEYB y +fi + if [ "$CONFIG_ISA" != "y" ]; then define_bool CONFIG_ISA n define_bool CONFIG_EISA n @@ -385,7 +397,9 @@ bool ' lld/scd Instructions available' CONFIG_CPU_HAS_LLDSCD bool ' Writeback Buffer available' CONFIG_CPU_HAS_WB else - if [ "$CONFIG_CPU_R3000" = "y" -o "$CONFIG_CPU_VR41XX" = "y" ]; then + if [ "$CONFIG_CPU_R3000" = "y" -o \ + "$CONFIG_CPU_VR41XX" = "y" -o \ + "$CONFIG_CPU_TX39XX" = "y" ]; then if [ "$CONFIG_DECSTATION" = "y" ]; then define_bool CONFIG_CPU_HAS_LLSC n define_bool CONFIG_CPU_HAS_LLDSCD n @@ -420,6 +434,10 @@ else bool 'Generate little endian code' CONFIG_CPU_LITTLE_ENDIAN fi + +if [ "$CONFIG_TOSHIBA_JMR3927" = "y" ]; then + bool 'DS1742 BRAM/RTC support' CONFIG_RTC_DS1742 +fi if [ "$CONFIG_PROC_FS" = "y" ]; then define_bool CONFIG_KCORE_ELF y |