]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
sh: Fix compression method when making uImage.
authorNobuhiro Iwamatsu <iwamatsu@nigauri.org>
Mon, 5 Nov 2007 21:45:58 +0000 (06:45 +0900)
committerPaul Mundt <lethal@linux-sh.org>
Wed, 7 Nov 2007 02:13:54 +0000 (11:13 +0900)
When uImage is made by using 'make uImage', zImage is used.
If zImage is used, the compression method need not be set.
However, it is set for "gzip" for a compression method.
I corrected to set "none".

Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
arch/sh/boot/Makefile

index 4c5ffdcd55b675aead50a32aaffe86c095ce8456..1b0f5be01d10af623d497bf9a19d0063302a74e9 100644 (file)
@@ -39,7 +39,7 @@ KERNEL_LOAD   := $(shell /bin/bash -c 'printf "0x%8x" \
 
 quiet_cmd_uimage = UIMAGE  $@
       cmd_uimage = $(CONFIG_SHELL) $(MKIMAGE) -A sh -O linux -T kernel \
-                  -C gzip -a $(KERNEL_LOAD) -e $(KERNEL_LOAD) \
+                  -C none -a $(KERNEL_LOAD) -e $(KERNEL_LOAD) \
                   -n 'Linux-$(KERNELRELEASE)' -d $< $@
 
 $(obj)/uImage: $(obj)/zImage FORCE