From: Jun S. <ju...@us...> - 2001-08-23 19:14:00
|
Update of /cvsroot/linux-mips/linux/arch/mips In directory usw-pr-cvs1:/tmp/cvs-serv27423/arch/mips Modified Files: config.in Makefile Log Message: Support NEC Korva board (vr4120a based). Index: config.in =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/config.in,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** config.in 2001/08/20 16:09:51 1.15 --- config.in 2001/08/23 19:13:56 1.16 *************** *** 27,30 **** --- 27,31 ---- int ' Memory size' CONFIG_NEC_EAGLE_MEM_SIZE 32 fi + bool 'Support for NEC Korva board (EXPERIMENTAL)' CONFIG_NEC_KORVA bool 'Support for Galileo EV96100 Evaluation board' CONFIG_MIPS_EV96100 bool 'Support for Galileo EV64120 Evaluation board' CONFIG_MIPS_EV64120 *************** *** 207,210 **** --- 208,218 ---- define_bool CONFIG_PCI y fi + if [ "$CONFIG_NEC_KORVA" = "y" ]; then + define_bool CONFIG_CPU_VR41XX y + define_bool CONFIG_SERIAL y + define_bool CONFIG_NEW_IRQ y + define_bool CONFIG_NEW_TIME_C y + define_bool CONFIG_SCSI n + fi if [ "$CONFIG_MIPS_ITE8172" = "y" ]; then define_bool CONFIG_PCI y *************** *** 270,274 **** "R3000 CONFIG_CPU_R3000 \ R6000 CONFIG_CPU_R6000 \ ! R41xx CONFIG_CPU_VR41XX \ R4300 CONFIG_CPU_R4300 \ R4x00 CONFIG_CPU_R4X00 \ --- 278,282 ---- "R3000 CONFIG_CPU_R3000 \ R6000 CONFIG_CPU_R6000 \ ! VR41xx CONFIG_CPU_VR41XX \ R4300 CONFIG_CPU_R4300 \ R4x00 CONFIG_CPU_R4X00 \ *************** *** 289,293 **** bool ' Writeback Buffer available' CONFIG_CPU_HAS_WB else ! if [ "$CONFIG_CPU_R3000" = "y" -o "$CONFIG_CPU_VR41XX" = "y" ]; then if [ "$CONFIG_DECSTATION" = "y" ]; then --- 297,301 ---- bool ' Writeback Buffer available' CONFIG_CPU_HAS_WB else ! if [ "$CONFIG_CPU_R3000" = "y" -o \ "$CONFIG_CPU_VR41XX" = "y" ]; then if [ "$CONFIG_DECSTATION" = "y" ]; then *************** *** 320,324 **** "$CONFIG_DDB5476" = "y" -o \ "$CONFIG_NINO" = "y" -o \ ! "$CONFIG_NEC_OSPREY" = "y" ]; then define_bool CONFIG_CPU_LITTLE_ENDIAN y else --- 328,333 ---- "$CONFIG_DDB5476" = "y" -o \ "$CONFIG_NINO" = "y" -o \ ! "$CONFIG_NEC_OSPREY" = "y" -o \ ! "$CONFIG_NEC_KORVA" = "y" ]; then define_bool CONFIG_CPU_LITTLE_ENDIAN y else Index: Makefile =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/Makefile,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** Makefile 2001/08/16 16:56:30 1.12 --- Makefile 2001/08/23 19:13:56 1.13 *************** *** 223,226 **** --- 223,235 ---- # + # NEC Korva (vr4120a) board + # + ifdef CONFIG_NEC_KORVA + SUBDIRS += arch/mips/korva + LIBS += arch/mips/korva/korva.a + LOADADDR += 0x80014000 + endif + + # # Galileo EV64120 Board # |