From: Jun S. <ju...@us...> - 2001-09-27 23:59:17
|
Update of /cvsroot/linux-mips/linux/arch/mips/vr4181/osprey In directory usw-pr-cvs1:/tmp/cvs-serv12527/arch/mips/vr4181/osprey Modified Files: Makefile prom.c Removed Files: int_handler.S Log Message: Re-write low-level irq dispatching code for vr4181/osprey. Pave the way for the complete IRQ re-write. Index: Makefile =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/vr4181/osprey/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Makefile 2001/09/22 04:27:15 1.1 +++ Makefile 2001/09/27 23:59:15 1.2 @@ -13,6 +13,6 @@ O_TARGET:= osprey.o -obj-y := setup.o prom.o reset.o int_handler.o dbg_io.o +obj-y := setup.o prom.o reset.o dbg_io.o include $(TOPDIR)/Rules.make Index: prom.c =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/vr4181/osprey/prom.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- prom.c 2001/09/22 16:35:15 1.2 +++ prom.c 2001/09/27 23:59:15 1.3 @@ -32,7 +32,7 @@ void __init prom_init() { strcpy(arcs_cmdline, "ip=bootp "); - strcat(arcs_cmdline, "ether=0,0x03fe0300,eth0 "); + strcat(arcs_cmdline, "ether=46,0x03fe0300,eth0 "); // strcpy(arcs_cmdline, "ether=0,0x0300,eth0 " // strcat(arcs_cmdline, "video=vr4181fb:xres:240,yres:320,bpp:8 "); --- int_handler.S DELETED --- |