aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2016-02-22 07:32:58 -0500
committerRussell King <rmk+kernel@arm.linux.org.uk>2016-02-22 11:56:31 -0500
commitf57deb0be5c25fcf2d30dce113f0a6a985c227bb (patch)
tree1d7a8b6a97a3a43428fb283ab7c50298df0c99ca
parent53f67545c21c756d7959fb86af30899c4b43141c (diff)
ARM: 8543/1: decompressor: rename suffix_y to compress-y
The "$(suffix_y)" no longer appears in the file names, but it just specifies the method of the file compression. The "compress-y" sounds more suitable. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
-rw-r--r--arch/arm/boot/compressed/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/arm/boot/compressed/Makefile b/arch/arm/boot/compressed/Makefile
index c67cd889a233..9541277b7952 100644
--- a/arch/arm/boot/compressed/Makefile
+++ b/arch/arm/boot/compressed/Makefile
@@ -66,11 +66,11 @@ endif
66 66
67CPPFLAGS_vmlinux.lds := -DTEXT_START="$(ZTEXTADDR)" -DBSS_START="$(ZBSSADDR)" 67CPPFLAGS_vmlinux.lds := -DTEXT_START="$(ZTEXTADDR)" -DBSS_START="$(ZBSSADDR)"
68 68
69suffix_$(CONFIG_KERNEL_GZIP) = gzip 69compress-$(CONFIG_KERNEL_GZIP) = gzip
70suffix_$(CONFIG_KERNEL_LZO) = lzo 70compress-$(CONFIG_KERNEL_LZO) = lzo
71suffix_$(CONFIG_KERNEL_LZMA) = lzma 71compress-$(CONFIG_KERNEL_LZMA) = lzma
72suffix_$(CONFIG_KERNEL_XZ) = xzkern 72compress-$(CONFIG_KERNEL_XZ) = xzkern
73suffix_$(CONFIG_KERNEL_LZ4) = lz4 73compress-$(CONFIG_KERNEL_LZ4) = lz4
74 74
75# Borrowed libfdt files for the ATAG compatibility mode 75# Borrowed libfdt files for the ATAG compatibility mode
76 76
@@ -174,7 +174,7 @@ $(obj)/vmlinux: $(obj)/vmlinux.lds $(obj)/$(HEAD) $(obj)/piggy.o \
174 @$(check_for_bad_syms) 174 @$(check_for_bad_syms)
175 175
176$(obj)/piggy_data: $(obj)/../Image FORCE 176$(obj)/piggy_data: $(obj)/../Image FORCE
177 $(call if_changed,$(suffix_y)) 177 $(call if_changed,$(compress-y))
178 178
179$(obj)/piggy.o: $(obj)/piggy_data 179$(obj)/piggy.o: $(obj)/piggy_data
180 180