CVSROOT: /home/cvs
Module name: linux
Changes by: ralf@ftp.linux-mips.org 05/05/19 15:45:12
Modified files:
arch/mips : Makefile
Log message:
When building for Atlas, Malta or SEAD convert the kernel to srecs by
default.
diff -urN linux/arch/mips/Makefile linux/arch/mips/Makefile
--- linux/arch/mips/Makefile 2005/03/03 11:53:56 1.193
+++ linux/arch/mips/Makefile 2005/05/19 14:45:12 1.194
@@ -737,6 +737,18 @@
all: $(vmlinux-64)
endif
+ifdef CONFIG_MIPS_ATLAS
+all: vmlinux.srec
+endif
+
+ifdef CONFIG_MIPS_MALTA
+all: vmlinux.srec
+endif
+
+ifdef CONFIG_MIPS_SEAD
+all: vmlinux.srec
+endif
+
ifdef CONFIG_SNI_RM200_PCI
all: vmlinux.ecoff
endif
|