Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3d6f7871ada50e607fe1dae64d2d726a6764451a
Commit:     3d6f7871ada50e607fe1dae64d2d726a6764451a
Parent:     1e4cc2c8c7cb54ce0e5a7002c68aca9e89607117
Author:     Jesper Nilsson <[EMAIL PROTECTED]>
AuthorDate: Fri Nov 30 16:24:07 2007 +0100
Committer:  Jesper Nilsson <[EMAIL PROTECTED]>
CommitDate: Fri Feb 8 11:06:26 2008 +0100

    CRIS v32: Update boot Kbuild makefile.
    
    - Remove old specific targets, use more generic ones instead.
    - Use if_changed to avoid creating new images when no change.
---
 arch/cris/arch-v32/boot/Makefile |   35 +++++++++++++++++++++--------------
 1 files changed, 21 insertions(+), 14 deletions(-)

diff --git a/arch/cris/arch-v32/boot/Makefile b/arch/cris/arch-v32/boot/Makefile
dissimilarity index 86%
index 26f293a..3f91349 100644
--- a/arch/cris/arch-v32/boot/Makefile
+++ b/arch/cris/arch-v32/boot/Makefile
@@ -1,14 +1,21 @@
-#
-# arch/cris/arch-v32/boot/Makefile
-#
-target = $(target_boot_dir)
-src    = $(src_boot_dir)
-
-zImage: compressed/vmlinuz
-
-compressed/vmlinuz: $(objtree)/vmlinux
-       @$(MAKE) -f $(src)/compressed/Makefile $(objtree)/vmlinuz
-
-clean:
-       rm -f zImage tools/build compressed/vmlinux.out
-       @$(MAKE) -f $(src)/compressed/Makefile clean
+#
+# arch/cris/arch-v32/boot/Makefile
+#
+
+OBJCOPY = objcopy-cris
+OBJCOPYFLAGS = -O binary -R .note -R .comment
+
+subdir- := compressed rescue
+targets := Image
+
+$(obj)/Image: vmlinux FORCE
+       $(call if_changed,objcopy)
+       @echo '  Kernel: $@ is ready'
+
+$(obj)/compressed/vmlinux: $(obj)/Image FORCE
+       $(Q)$(MAKE) $(build)=$(obj)/compressed $@
+       $(Q)$(MAKE) $(build)=$(obj)/rescue $(obj)/rescue/rescue.bin
+
+$(obj)/zImage:  $(obj)/compressed/vmlinux
+       @cp $< $@
+       @echo '  Kernel: $@ is ready'
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to