summaryrefslogtreecommitdiff
path: root/arch/cris/arch-v32/boot/compressed/Makefile
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2009-05-11 12:43:41 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2009-05-11 12:43:41 -0700
commit1d80cac0fe44fb87b2a3d35fddd7f534ea81cd90 (patch)
tree53b3e76a70e4ca6f77e29bcd47124d8b6a0b208e /arch/cris/arch-v32/boot/compressed/Makefile
parent7b5ca22643beba8fdd5b7055e0594a514b3710d7 (diff)
parent999fb23ef868719b8bd55ee3f6b1f7a8fd8016af (diff)
downloadlwn-1d80cac0fe44fb87b2a3d35fddd7f534ea81cd90.tar.gz
lwn-1d80cac0fe44fb87b2a3d35fddd7f534ea81cd90.zip
Merge branch 'for-linus' of git://repo.or.cz/cris-mirror
* 'for-linus' of git://repo.or.cz/cris-mirror: CRISv32: Fix typo compile error in ARTPEC-3 gpio driver. CRIS: Wire up syscalls signalfd4 to writev. CRISv32: Remove obsolete vcs_hook.o from Makefile CRIS: Merge machine dependent boot/compressed and boot/rescue
Diffstat (limited to 'arch/cris/arch-v32/boot/compressed/Makefile')
-rw-r--r--arch/cris/arch-v32/boot/compressed/Makefile26
1 files changed, 0 insertions, 26 deletions
diff --git a/arch/cris/arch-v32/boot/compressed/Makefile b/arch/cris/arch-v32/boot/compressed/Makefile
deleted file mode 100644
index e176b8b69d92..000000000000
--- a/arch/cris/arch-v32/boot/compressed/Makefile
+++ /dev/null
@@ -1,26 +0,0 @@
-#
-# arch/cris/arch-v32/boot/compressed/Makefile
-#
-
-asflags-y += -I$(srctree)/include/asm/mach/ -I$(srctree)/include/asm/arch
-ccflags-y += -O2 -I$(srctree)/include/asm/mach/ -I$(srctree)/include/asm/arch
-ldflags-y += -T$(srctree)/$(src)/decompress.lds
-OBJECTS = $(obj)/head.o $(obj)/misc.o
-OBJCOPYFLAGS = -O binary --remove-section=.bss
-
-quiet_cmd_image = BUILD $@
-cmd_image = cat $(obj)/decompress.bin $(obj)/piggy.gz > $@
-
-targets := vmlinux piggy.gz decompress.o decompress.bin
-
-$(obj)/decompress.o: $(OBJECTS) FORCE
- $(call if_changed,ld)
-
-$(obj)/decompress.bin: $(obj)/decompress.o FORCE
- $(call if_changed,objcopy)
-
-$(obj)/vmlinux: $(obj)/piggy.gz $(obj)/decompress.bin FORCE
- $(call if_changed,image)
-
-$(obj)/piggy.gz: $(obj)/../Image FORCE
- $(call if_changed,gzip)