|
From: Andy P. <at...@us...> - 2002-04-10 18:31:10
|
Update of /cvsroot/linux-vax/kernel-2.4/arch/mips/boot
In directory usw-pr-cvs1:/tmp/cvs-serv16972/mips/boot
Modified Files:
Makefile elf2ecoff.c
Removed Files:
mkboot.c
Log Message:
synch 2.4.15
Index: Makefile
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.4/arch/mips/boot/Makefile,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -r1.1.1.1 -r1.2
--- Makefile 14 Jan 2001 19:27:01 -0000 1.1.1.1
+++ Makefile 10 Apr 2002 14:38:04 -0000 1.2
@@ -1,10 +1,9 @@
-# $Id$
#
# This file is subject to the terms and conditions of the GNU General Public
# License. See the file "COPYING" in the main directory of this archive
# for more details.
#
-# Copyright (C) 1995, 1998 by Ralf Baechle
+# Copyright (C) 1995, 1998, 2001 by Ralf Baechle
#
.S.s:
@@ -46,25 +45,12 @@
clean:
rm -f vmlinux.ecoff
- rm -f zImage zImage.tmp mkboot
+ rm -f zImage zImage.tmp
mrproper:
rm -f vmlinux.ecoff
rm -f addinitrd
rm -f elf2ecoff
-
-zImage: $(CONFIGURE) mkboot $(TOPDIR)/vmlinux
- $(OBJCOPY) $(strip-flags) $(TOPDIR)/vmlinux zImage.tmp
- ./mkboot zImage.tmp zImage
- rm -f zImage.tmp
-
-mkboot: mkboot.c
- $(HOSTCC) -o $@ $^
-
-zdisk: zImage
- cp $(TOPDIR)/vmlinux $(TOPDIR)/vm
- $(STRIP) $(TOPDIR)/vm
- gzip -9f $(TOPDIR)/vm
dummy:
Index: elf2ecoff.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.4/arch/mips/boot/elf2ecoff.c,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -r1.1.1.1 -r1.2
--- elf2ecoff.c 14 Jan 2001 19:27:06 -0000 1.1.1.1
+++ elf2ecoff.c 10 Apr 2002 14:38:04 -0000 1.2
@@ -435,7 +435,7 @@
char ibuf [4096];
int remaining, cur, count;
- /* Go the the start of the ELF symbol table... */
+ /* Go to the start of the ELF symbol table... */
if (lseek (in, offset, SEEK_SET) < 0)
{
perror ("copy: lseek");
--- mkboot.c DELETED ---
|