From 809769a8f0676e3b70f6a7f4b74070bbd8002a2a Mon Sep 17 00:00:00 2001 From: Daniel Sabogal Date: Mon, 15 Jan 2018 22:29:54 -0500 Subject: 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 Reviewed-by: James Hogan Cc: Ralf Baechle Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/18466/ Signed-off-by: James Hogan --- arch/mips/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'arch/mips/Makefile') 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/ # # Kernel compression # -ifdef SYS_SUPPORTS_ZBOOT +ifdef CONFIG_SYS_SUPPORTS_ZBOOT COMPRESSION_FNAME = vmlinuz else COMPRESSION_FNAME = vmlinux -- cgit