From: Jun S. <ju...@us...> - 2001-08-23 19:13:59
|
Update of /cvsroot/linux-mips/linux/arch/mips/kernel In directory usw-pr-cvs1:/tmp/cvs-serv27423/arch/mips/kernel Modified Files: setup.c proc.c Log Message: Support NEC Korva board (vr4120a based). Index: setup.c =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/kernel/setup.c,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** setup.c 2001/08/23 18:32:33 1.8 --- setup.c 2001/08/23 19:13:56 1.9 *************** *** 527,530 **** --- 527,531 ---- void nec_osprey_setup(void); void nec_eagle_setup(void); + void nec_korva_setup(void); unsigned long bootmap_size; *************** *** 619,622 **** --- 620,628 ---- nec_eagle_setup(); break; + #endif + #ifdef CONFIG_NEC_KORVA + case MACH_GROUP_NEC_VR41XX: + nec_korva_setup(); + break; #endif #ifdef CONFIG_MIPS_EV96100 Index: proc.c =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/kernel/proc.c,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** proc.c 2001/07/16 18:20:36 1.4 --- proc.c 2001/08/23 19:13:56 1.5 *************** *** 51,54 **** --- 51,55 ---- const char *mach_toshiba_names[] = GROUP_TOSHIBA_NAMES; const char *mach_alchemy_names[] = GROUP_ALCHEMY_NAMES; + const char *mach_nec_vr41xx_names[] = GROUP_NEC_VR41XX_NAMES; const char **mach_group_to_name[] = { mach_unknown_names, mach_jazz_names, mach_dec_names, mach_arc_names, *************** *** 57,61 **** mach_cosine_names, mach_galileo_names, mach_momenco_names, mach_ite_names, mach_philips_names, mach_globespan_names, ! mach_sibyte_names, mach_toshiba_names, mach_alchemy_names}; unsigned int version = read_32bit_cp0_register(CP0_PRID); int len; --- 58,63 ---- mach_cosine_names, mach_galileo_names, mach_momenco_names, mach_ite_names, mach_philips_names, mach_globespan_names, ! mach_sibyte_names, mach_toshiba_names, mach_alchemy_names, ! mach_nec_vr41xx_names}; unsigned int version = read_32bit_cp0_register(CP0_PRID); int len; |