Fixes the arch specific help for mips. This moves the help
def's to arch/mips/Makefile, where they will be found by
'make help'.
Signed-off-by: Geoff Levand <geoffrey.levand@am.sony.com>
--
Fixes this warning:
Architecture specific targets (mips):
No architecture specific help defined for mips
Index: 2.6.16/arch/mips/Makefile
===================================================================
--- 2.6.16.orig/arch/mips/Makefile 2006-07-14 11:30:10.000000000 -0700
+++ 2.6.16/arch/mips/Makefile 2006-07-14 11:37:33.000000000 -0700
@@ -845,6 +845,11 @@
vmlinux.rm200.tmp \
vmlinux.rm200
+define archhelp
+ @echo '* vmlinux.ecoff - ECOFF boot image'
+ @echo '* vmlinux.srec - SREC boot image'
+endef
+
archclean:
@$(MAKE) $(clean)=arch/mips/boot
@$(MAKE) $(clean)=arch/mips/lasat
Index: 2.6.16/arch/mips/boot/Makefile
===================================================================
--- 2.6.16.orig/arch/mips/boot/Makefile 2006-07-14 11:30:10.000000000 -0700
+++ 2.6.16/arch/mips/boot/Makefile 2006-07-14 11:37:33.000000000 -0700
@@ -42,10 +42,6 @@
$(obj)/addinitrd: $(obj)/addinitrd.c
$(HOSTCC) -o $@ $^
-archhelp:
- @echo '* vmlinux.ecoff - ECOFF boot image'
- @echo '* vmlinux.srec - SREC boot image'
-
clean-files += addinitrd \
elf2ecoff \
vmlinux.bin \
|