From: James S. <jsi...@us...> - 2001-09-26 17:09:49
|
Update of /cvsroot/linux-mips/linux/arch/mips/ddb5xxx/common In directory usw-pr-cvs1:/tmp/cvs-serv989 Modified Files: Makefile prom.c Removed Files: pci.c pci_auto.c Log Message: Bye bye. Index: Makefile =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/ddb5xxx/common/Makefile,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Makefile 2001/08/23 04:20:15 1.2 +++ Makefile 2001/09/26 17:09:46 1.3 @@ -13,6 +13,6 @@ O_TARGET:= ddb5xxx.o -obj-y += irq.o irq_cpu.o nile4.o prom.o pci.o pci_auto.o rtc_ds1386.o +obj-y += irq.o irq_cpu.o nile4.o prom.o rtc_ds1386.o include $(TOPDIR)/Rules.make Index: prom.c =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/ddb5xxx/common/prom.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- prom.c 2001/06/22 02:29:31 1.1.1.1 +++ prom.c 2001/09/26 17:09:46 1.2 @@ -40,6 +40,9 @@ strcat(arcs_cmdline, " "); } + /* by default all these boards use dhcp/nfs root fs */ + strcat(arcs_cmdline, "ip=bootp"); + mips_machgroup = MACH_GROUP_NEC_DDB; #if defined(CONFIG_DDB5074) --- pci.c DELETED --- --- pci_auto.c DELETED --- |