aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Sabogal <dsabogalcc@gmail.com>2018-01-15 22:29:54 -0500
committerJames Hogan <jhogan@kernel.org>2018-01-18 16:52:04 -0500
commit809769a8f0676e3b70f6a7f4b74070bbd8002a2a (patch)
tree8674bdcf083d47bcec1aaa937ae481318154244a
parent7d8c6d6a180ae776070d26dc58f3ecb5560f9a48 (diff)
MIPS: Fix vmlinuz build when ZBOOT is selected
vmlinuz is not built by default for platforms using COMPRESSION_FNAME (e.g. Malta) due to an erroneous check on ZBOOT Signed-off-by: Daniel Sabogal <dsabogalcc@gmail.com> Reviewed-by: James Hogan <jhogan@kernel.org> Cc: Ralf Baechle <ralf@linux-mips.org> Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/18466/ Signed-off-by: James Hogan <jhogan@kernel.org>
-rw-r--r--arch/mips/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/Makefile b/arch/mips/Makefile
index 9f6a26d72f9f..0f20f84de53b 100644
--- a/arch/mips/Makefile
+++ b/arch/mips/Makefile
@@ -228,7 +228,7 @@ libs-y += arch/mips/fw/lib/
228# 228#
229# Kernel compression 229# Kernel compression
230# 230#
231ifdef SYS_SUPPORTS_ZBOOT 231ifdef CONFIG_SYS_SUPPORTS_ZBOOT
232COMPRESSION_FNAME = vmlinuz 232COMPRESSION_FNAME = vmlinuz
233else 233else
234COMPRESSION_FNAME = vmlinux 234COMPRESSION_FNAME = vmlinux