Update of /cvsroot/linux-mips/linux/arch/mips
In directory usw-pr-cvs1:/tmp/cvs-serv26774/arch/mips
Modified Files:
Makefile
Log Message:
Alchemy PB1000 zImage support.
Most of this work is portable to other embedded mips boards. The board
specific code is in the pb1000 directory and it's just head.S and the
Makefile and linker script.
The common code was ported with very few modifications from the PPC
boot code.
Index: Makefile
===================================================================
RCS file: /cvsroot/linux-mips/linux/arch/mips/Makefile,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- Makefile 2001/10/08 18:06:07 1.21
+++ Makefile 2001/10/10 17:46:56 1.22
@@ -355,6 +355,11 @@
endif
MAKEBOOT = $(MAKE) -C arch/$(ARCH)/boot
+MAKEZBOOT = $(MAKE) -C arch/$(ARCH)/zboot
+
+BOOT_TARGETS = zImage
+$(BOOT_TARGETS): vmlinux
+ @$(MAKEZBOOT) $@
vmlinux.ecoff: vmlinux
@$(MAKEBOOT) $@
|